/* ============================================
   GenerujWWW — Subpages Dark Mode Styles
   ============================================ */

/* Breadcrumbs */
.gwww-breadcrumbs {
    margin-bottom: 1.5rem;
    text-align: center;
}
.gwww-breadcrumbs nav {
    font-size: 12px;
    color: var(--gwww-text-muted);
}
.gwww-breadcrumbs a {
    color: var(--gwww-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.gwww-breadcrumbs a:hover { color: var(--gwww-text-primary); }
.gwww-breadcrumbs .breadcrumb_last { color: var(--gwww-text-secondary); }

.gwww-subpage-hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
    position: relative;
    text-align: center;
}
.gwww-subpage-hero h1 {
    font-size: var(--gwww-font-size-hero);
    line-height: var(--gwww-leading-hero);
    background: linear-gradient(180deg, #EAEDF2 0%, #9CA3AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}
.gwww-subpage-hero .gwww-section__subtitle {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Connected variant — hero flows into content */
.gwww-subpage-hero--connected {
    padding-bottom: var(--gwww-section-py);
}
.gwww-subpage-hero--connected .gwww-section__subtitle {
    margin-bottom: 3rem;
}

/* ── Service Icons ── */
.gwww-service-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    color: var(--gwww-accent);
    border-radius: var(--gwww-radius);
    font-size: var(--gwww-font-size-xl);
    margin-bottom: 1rem;
}

/* ── Blog Cards ── */
.gwww-blog-card {
    overflow: hidden;
    padding: 0;
}

.gwww-blog-card__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.gwww-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--gwww-transition);
}

.gwww-blog-card:hover .gwww-blog-card__thumb img {
    transform: scale(1.05);
}

.gwww-blog-card__content {
    padding: 1.25rem;
}

.gwww-blog-card__title {
    font-size: var(--gwww-font-size-base);
    font-weight: 600;
}

.gwww-blog-card__title a {
    color: var(--gwww-text-primary);
    transition: color var(--gwww-transition);
}

.gwww-blog-card__title a:hover {
    color: var(--gwww-accent);
}

/* ── Single Post ── */
.gwww-single-post {
    padding-top: 8rem;
}

.gwww-single-post__thumb {
    border-radius: var(--gwww-radius-lg);
    overflow: hidden;
}

.gwww-single-post__thumb img {
    width: 100%;
    height: auto;
}

/* Prose styles for post content */
.gwww-prose {
    color: var(--gwww-text-secondary);
    line-height: var(--gwww-leading-relaxed);
}

.gwww-prose h2, .gwww-prose h3, .gwww-prose h4 {
    color: var(--gwww-text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.gwww-prose p {
    margin-bottom: 1rem;
}

.gwww-prose a {
    color: var(--gwww-accent);
    text-decoration: underline;
}

.gwww-prose ul, .gwww-prose ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.gwww-prose li {
    margin-bottom: 0.375rem;
}

.gwww-prose img {
    border-radius: var(--gwww-radius);
    margin: 1.5rem 0;
}

.gwww-prose blockquote {
    border-left: 3px solid var(--gwww-accent);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--gwww-text-muted);
    font-style: italic;
}

/* ── Pagination ── */
.gwww-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--gwww-radius-sm);
    font-size: var(--gwww-font-size-sm);
    color: var(--gwww-text-muted);
    transition: all var(--gwww-transition);
    text-decoration: none;
}

.gwww-pagination .page-numbers:hover,
.gwww-pagination .page-numbers.current {
    background: var(--gwww-accent);
    color: #fff;
}


/* ═══ GENERATORS PAGE ═══ */
.gwww-generators {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .gwww-generators { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .gwww-generators { grid-template-columns: repeat(3, 1fr); }
}

.gwww-gen-card {
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.gwww-gen-card:hover {
    border-color: rgba(140,145,160,0.22);
    transform: translateY(-2px);
}
.gwww-gen-card--soon {
    opacity: 0.55;
}
.gwww-gen-card--soon:hover {
    transform: none;
    border-color: rgba(140,145,160,0.10);
}

.gwww-gen-card__header {
    position: relative;
    margin-bottom: 16px;
}

.gwww-gen-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(140,145,160,0.06);
    border: 1px solid rgba(140,145,160,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gwww-text-muted);
    margin: 0 auto;
}

.gwww-gen-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    font-weight: 600;
    color: var(--gwww-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(140,145,160,0.12);
}

.gwww-gen-card__title {
    font-size: 17px;
    font-weight: 600;
    color: var(--gwww-text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.gwww-gen-card__desc {
    font-size: 13px;
    color: var(--gwww-text-muted);
    line-height: 165%;
    margin-bottom: 16px;
    flex: 1;
}

.gwww-gen-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.gwww-gen-card__tag {
    font-size: 10px;
    color: var(--gwww-text-muted);
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(140,145,160,0.08);
    background: rgba(140,145,160,0.02);
}

.gwww-gen-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--gwww-btn-gradient);
    color: #111;
}
.gwww-gen-card__btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    color: #111;
}
.gwww-gen-card__btn--disabled {
    background: rgba(140,145,160,0.06);
    color: var(--gwww-text-muted);
    cursor: default;
    border: 1px solid rgba(140,145,160,0.08);
}
.gwww-gen-card__btn--disabled:hover {
    filter: none;
    transform: none;
}

/* Generator card — price badge */
.gwww-gen-card__price {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 15px;
    font-weight: 800;
    color: var(--gwww-text-primary);
    background: rgba(22,163,74,.1);
    border: 1px solid rgba(22,163,74,.15);
    border-radius: 8px;
    padding: 4px 12px;
}

/* Generator card — features list */
.gwww-gen-card__features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
    padding: 0;
    list-style: none;
}
.gwww-gen-card__features li {
    font-size: 12px;
    color: var(--gwww-text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.gwww-gen-card__features li i {
    color: var(--gwww-cta);
    font-size: 10px;
    flex-shrink: 0;
}
.gwww-gen-card__features-more {
    color: var(--gwww-text-muted) !important;
    font-style: italic;
}

/* Generator card — price note */
.gwww-gen-card__price-note {
    font-size: 11px;
    color: var(--gwww-text-muted);
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
}


/* ═══ CENNIK PAGE ═══ */
.gwww-cennik-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .gwww-cennik-grid { grid-template-columns: repeat(2, 1fr); }
}

.gwww-cennik-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}
.gwww-cennik-card:hover {
    border-color: rgba(140,145,160,0.22);
}
.gwww-cennik-card--featured {
    border-color: rgba(140,145,160,0.20);
    background: rgba(140,145,160,0.03);
}

.gwww-cennik-card__badge {
    position: absolute;
    top: 0;
    right: 24px;
    background: var(--gwww-btn-gradient);
    color: #111;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gwww-cennik-card__top {
    margin-bottom: 24px;
}
.gwww-cennik-card__name {
    font-size: 17px;
    font-weight: 600;
    color: var(--gwww-text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}
.gwww-cennik-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.gwww-cennik-card__amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--gwww-text-primary);
    line-height: 1;
}
.gwww-cennik-card__period {
    font-size: 13px;
    color: var(--gwww-text-muted);
}

.gwww-cennik-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.gwww-cennik-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gwww-text-secondary);
    line-height: 155%;
}
.gwww-cennik-card__features i {
    color: var(--gwww-accent);
    font-size: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.gwww-cennik-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--gwww-btn-gradient);
    color: #111;
}
.gwww-cennik-card__btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    color: #111;
}

/* Info bar */
.gwww-cennik-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .gwww-cennik-info { grid-template-columns: repeat(3, 1fr); }
}
.gwww-cennik-info__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(140,145,160,0.08);
    background: rgba(140,145,160,0.02);
}
.gwww-cennik-info__item > i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(140,145,160,0.06);
    color: var(--gwww-text-muted);
    border-radius: 10px;
    font-size: 16px;
    flex-shrink: 0;
}
.gwww-cennik-info__item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gwww-text-primary);
    margin-bottom: 4px;
}
.gwww-cennik-info__item p {
    font-size: 12px;
    color: var(--gwww-text-muted);
    line-height: 160%;
}


/* ═══ REALIZACJE PAGE ═══ */
.gwww-realizacje-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) { .gwww-realizacje-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gwww-realizacje-grid { grid-template-columns: repeat(3, 1fr); } }

.gwww-realizacje-item {
    border-radius: 12px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.gwww-realizacje-item:hover { border-color: rgba(140,145,160,0.22); transform: translateY(-2px); }
.gwww-realizacje-item__img { height: 200px; overflow: hidden; }
.gwww-realizacje-item__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.4s ease; }
.gwww-realizacje-item:hover .gwww-realizacje-item__img img { transform: scale(1.03); }
.gwww-realizacje-item__info { padding: 18px; }
.gwww-realizacje-item__cat { font-size: 10px; color: var(--gwww-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.gwww-realizacje-item__title { font-size: 16px; font-weight: 600; color: var(--gwww-text-primary); margin-top: 4px; margin-bottom: 6px; }
.gwww-realizacje-item__desc { font-size: 13px; color: var(--gwww-text-muted); line-height: 160%; }

/* ═══ O NAS PAGE ═══ */

/* Stats bar — large numbers */
.gwww-onas-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 24px;
    border-radius: 14px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    flex-wrap: wrap;
    gap: 0;
}
.gwww-onas-stats__item { flex: 1; text-align: center; padding: 8px 24px; min-width: 140px; }
.gwww-onas-stats__num { font-size: 36px; font-weight: 700; color: var(--gwww-text-primary); margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.gwww-onas-stats__label { font-size: 11px; color: var(--gwww-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.gwww-onas-stats__divider { width: 1px; height: 48px; background: rgba(140,145,160,0.10); flex-shrink: 0; }
@media (max-width: 767px) { .gwww-onas-stats__divider { display: none; } .gwww-onas-stats__item { min-width: 45%; } }

/* Split — text left, visual right */
.gwww-onas-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) { .gwww-onas-split { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.gwww-onas-split__label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gwww-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    display: block;
}
.gwww-onas-split__text h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; line-height: 1.3; }
.gwww-onas-split__text p { font-size: 14px; color: var(--gwww-text-muted); line-height: 175%; margin-bottom: 1rem; }
.gwww-onas-split__text p:last-child { margin-bottom: 0; }

.gwww-onas-split__card {
    padding: 28px;
    border-radius: 14px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gwww-onas-split__card-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gwww-text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(140,145,160,0.06);
}
.gwww-onas-split__card-row:last-child { border-bottom: none; }
.gwww-onas-split__card-row i { color: rgba(34,197,94,0.6); font-size: 12px; flex-shrink: 0; }

/* Tech — 3 columns with big numbers */
.gwww-onas-tech {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .gwww-onas-tech { grid-template-columns: repeat(3, 1fr); } }

.gwww-onas-tech__item {
    padding: 32px 24px;
    border-radius: 14px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gwww-onas-tech__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(140,145,160,0.06);
    line-height: 1;
}
.gwww-onas-tech__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(140,145,160,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: var(--gwww-text-muted);
    position: relative;
    z-index: 1;
}
.gwww-onas-tech__item h3 { font-size: 17px; font-weight: 600; color: var(--gwww-text-primary); margin-bottom: 8px; position: relative; z-index: 1; }
.gwww-onas-tech__item p { font-size: 13px; color: var(--gwww-text-muted); line-height: 170%; position: relative; z-index: 1; }

.gwww-about-stats { display: flex; justify-content: center; gap: 0; padding: 28px 20px; border-radius: 12px; border: 1px solid rgba(140,145,160,0.10); background: #0E0F14; flex-wrap: wrap; }
.gwww-about-stat { flex: 1; text-align: center; padding: 8px 20px; min-width: 120px; }
.gwww-about-stat__num { font-size: 28px; font-weight: 700; color: var(--gwww-text-primary); margin-bottom: 4px; }
.gwww-about-stat__label { font-size: 11px; color: var(--gwww-text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* About CTA */
.gwww-about-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(140,145,160,0.10);
    background: rgba(140,145,160,0.02);
}
.gwww-about-cta h2 { margin-bottom: 0.5rem; }
.gwww-about-cta p { font-size: 14px; color: var(--gwww-text-muted); margin-bottom: 1.5rem; }

/* ═══ KONTAKT PAGE ═══ */
.gwww-kontakt { max-width: 800px; margin: 0 auto; }
.gwww-kontakt__cards { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .gwww-kontakt__cards { grid-template-columns: repeat(3, 1fr); } }

.gwww-kontakt__card { padding: 24px; border-radius: 12px; border: 1px solid rgba(140,145,160,0.10); background: #0E0F14; text-align: center; }
.gwww-kontakt__card-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(140,145,160,0.06); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--gwww-text-muted); font-size: 18px; }
.gwww-kontakt__card h3 { font-size: 14px; font-weight: 600; color: var(--gwww-text-primary); margin-bottom: 6px; }
.gwww-kontakt__card a, .gwww-kontakt__card span { font-size: 13px; color: var(--gwww-text-muted); text-decoration: none; }
.gwww-kontakt__card a:hover { color: var(--gwww-text-primary); }

.gwww-kontakt__form-wrap { padding: 32px; border-radius: 12px; border: 1px solid rgba(140,145,160,0.10); background: #0E0F14; }
.gwww-kontakt__form-title { font-size: 20px; font-weight: 600; color: var(--gwww-text-primary); margin-bottom: 1.5rem; text-align: center; }
.gwww-kontakt__form { display: flex; flex-direction: column; gap: 1rem; }
.gwww-kontakt__form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .gwww-kontakt__form-row { grid-template-columns: 1fr 1fr; } }
.gwww-kontakt__field label { display: block; font-size: 12px; font-weight: 500; color: var(--gwww-text-secondary); margin-bottom: 6px; }
.gwww-kontakt__field input, .gwww-kontakt__field textarea { width: 100%; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(140,145,160,0.12); background: rgba(140,145,160,0.04); color: var(--gwww-text-primary); font-size: 13px; font-family: inherit; transition: border-color 0.2s ease; }
.gwww-kontakt__field input:focus, .gwww-kontakt__field textarea:focus { outline: none; border-color: rgba(140,145,160,0.3); }
.gwww-kontakt__field textarea { resize: vertical; }
.gwww-kontakt__rodo { font-size: 12px; color: var(--gwww-text-muted); }
.gwww-kontakt__rodo label { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
.gwww-kontakt__rodo input { margin-top: 2px; accent-color: var(--gwww-accent); }
.gwww-kontakt__rodo a { color: var(--gwww-text-secondary); }
.gwww-kontakt__submit { width: 100%; padding: 14px; border-radius: 8px; border: none; background: var(--gwww-btn-gradient); color: #111; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.gwww-kontakt__submit:hover { filter: brightness(1.1); transform: translateY(-1px); }


/* Compare section */
.gwww-about-compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}
@media (min-width: 640px) { .gwww-about-compare { grid-template-columns: 1fr 1fr; } }

.gwww-about-compare__col {
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
}
.gwww-about-compare__col--other { opacity: 0.6; }

.gwww-about-compare__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gwww-text-muted);
    margin-bottom: 16px;
    text-align: center;
}
.gwww-about-compare__title--us { color: var(--gwww-text-primary); }

.gwww-about-compare__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gwww-about-compare__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gwww-text-secondary);
    line-height: 150%;
}
.gwww-about-compare__list i {
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}
.gwww-about-compare__col:not(.gwww-about-compare__col--other) .gwww-about-compare__list i { color: rgba(34,197,94,0.6); }
.gwww-about-compare__col--other .gwww-about-compare__list i { color: rgba(239,68,68,0.5); }

/* About CTA */
.gwww-about-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(140,145,160,0.10);
    background: rgba(140,145,160,0.02);
}
.gwww-about-cta h2 { margin-bottom: 0.5rem; }
.gwww-about-cta p { font-size: 14px; color: var(--gwww-text-muted); margin-bottom: 1.5rem; }
