/* ============================================
   GenerujWWW — Landing Page
   Section styles
   ============================================ */

/* ═══ HERO — text left + large image right ═══ */
.gwww-hero {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gwww-hero__container {
    padding: 0 var(--gwww-container-px);
    padding-bottom: 4rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .gwww-hero__container {
        flex-direction: row;
        align-items: center;
        min-height: 85vh;
        gap: 3rem;
    }
}

/* Left text column */
.gwww-hero__text {
    z-index: 30;
    padding-top: 7.5rem;
    text-align: center;
    flex: 1;
    min-width: 0;
}
@media (min-width: 768px) {
    .gwww-hero__text {
        padding-top: 0;
        text-align: left;
        flex: 0 0 45%;
    }
}

.gwww-hero__title {
    margin-top: 1.25rem;
    font-family: var(--gwww-font-display);
    font-weight: 500;
    padding-bottom: 0.5rem;
    font-size: 36px;
    line-height: 110%;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #EAEDF2 0%, #9CA3AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (min-width: 768px) {
    .gwww-hero__title { font-size: 48px; }
}
@media (min-width: 1024px) {
    .gwww-hero__title { font-size: 53px; }
}

.gwww-hero__subtitle {
    margin-top: 0.75rem;
    font-size: 16px;
    color: var(--gwww-text-secondary);
    line-height: 145%;
}
@media (min-width: 768px) {
    .gwww-hero__subtitle { font-size: 18px; }
}
@media (max-width: 767px) {
    .gwww-hero__subtitle { text-align: center; }
}

/* Hero form — email + CTA row */
.gwww-hero__form {
    margin-top: 1.75rem;
    width: 100%;
}
.gwww-hero__form-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}
@media (min-width: 640px) {
    .gwww-hero__form-row {
        flex-direction: row;
    }
}

.gwww-hero__input {
    appearance: none;
    padding: 0 1.25rem;
    border: 1px solid rgba(140, 145, 160, 0.20);
    border-radius: 8px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    color: #fff;
    height: 52px;
    width: 100%;
    max-width: 316px;
    background: rgba(140, 145, 160, 0.10);
    font-size: 14px;
    font-family: var(--gwww-font-body);
}
@media (min-width: 640px) {
    .gwww-hero__input {
        max-width: none;
        width: 324px;
    }
}
.gwww-hero__input::placeholder { color: var(--gwww-text-muted); }
.gwww-hero__input:focus {
    outline: none;
    border-color: var(--gwww-accent);
    box-shadow: 0 0 0 2px var(--gwww-accent-glow);
}

/* CTA button — gradient */
.gwww-hero__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    height: 50px;
    background: var(--gwww-btn-gradient);
    color: #111;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}
@media (max-width: 767px) {
    .gwww-hero__cta-btn { width: 100%; max-width: 316px; }
}
.gwww-hero__cta-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    color: #111;
}

.gwww-hero__form-note {
    margin-top: 1rem;
    font-size: 13px;
    color: var(--gwww-text-tertiary);
    line-height: 145%;
}
@media (max-width: 767px) {
    .gwww-hero__form-note { text-align: center; }
}
.gwww-hero__form-note strong { color: var(--gwww-text-secondary); }

/* Right visual — simulator */
.gwww-hero__visual {
    position: relative;
    margin-top: 2rem;
    flex: 1;
    min-width: 0;
}
@media (min-width: 768px) {
    .gwww-hero__visual {
        margin-top: 0;
        flex: 1.6;
        margin-right: -4rem;
    }
}
@media (min-width: 1024px) {
    .gwww-hero__visual {
        flex: 1.8;
        margin-right: -8rem;
    }
}
@media (min-width: 1280px) {
    .gwww-hero__visual {
        margin-right: -12rem;
    }
}

/* Hero actions */
.gwww-hero__actions { margin-top: 1.75rem; }
@media (max-width: 767px) {
    .gwww-hero__actions { display: flex; flex-direction: column; align-items: center; }
}

/* ── Simulator container ── */
.gwww-hero__sim {
    border-radius: 14px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

/* Step navigation dots */
.gwww-hero__sim-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(140,145,160,0.08);
}
.gwww-sim-step-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(140,145,160,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--gwww-text-muted);
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.gwww-sim-step-dot--active {
    border-color: rgba(156,163,175,0.5);
    color: var(--gwww-text-primary);
    background: rgba(140,145,160,0.08);
}
.gwww-sim-step-dot--done {
    border-color: rgba(34,197,94,0.4);
    color: rgba(34,197,94,0.7);
    background: rgba(34,197,94,0.06);
}
.gwww-sim-step-line {
    width: 24px;
    height: 1px;
    background: rgba(140,145,160,0.12);
    flex-shrink: 0;
}

/* Panels */
.gwww-hero__sim-panels {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .gwww-hero__sim-panels { min-height: 340px; }
}
.gwww-sim-panel {
    position: absolute;
    inset: 0;
    padding: 20px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.gwww-sim-panel--active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}
.gwww-sim-panel--exit {
    opacity: 0;
    transform: translateX(-30px);
}
.gwww-sim-panel__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gwww-text-primary);
    margin-bottom: 16px;
}

/* ── Panel 1: Form ── */
.gwww-hf-row { margin-bottom: 12px; opacity: 0; transform: translateY(6px); transition: opacity 0.4s ease, transform 0.4s ease; }
.gwww-hf-row:last-child { margin-bottom: 0; }
.gwww-hf-row--visible { opacity: 1; transform: translateY(0); }
.gwww-hf-label { font-size: 10px; color: var(--gwww-text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; display: block; }
.gwww-hf-input { padding: 8px 12px; border-radius: 6px; border: 1px solid rgba(140,145,160,0.10); background: rgba(140,145,160,0.04); font-size: 12px; color: var(--gwww-text-secondary); overflow: hidden; }
.gwww-hf-typed { display: inline-block; overflow: hidden; white-space: nowrap; width: 0; border-right: 2px solid rgba(140,145,160,0.4); }
.gwww-hf-typed--typing { animation: gwww-type-field 1.2s steps(30) forwards; }
.gwww-hf-typed--done { border-right-color: transparent; }
@keyframes gwww-type-field { from { width: 0; } to { width: 100%; } }

/* ── Panel 2: Style picker ── */
.gwww-hs-templates { display: flex; gap: 10px; margin-bottom: 16px; }
.gwww-hs-tpl {
    flex: 1; height: 70px; border-radius: 8px; background: rgba(140,145,160,0.04);
    border: 2px solid rgba(140,145,160,0.08); transition: all 0.4s ease; padding: 10px;
    display: flex; flex-direction: column; justify-content: flex-end; gap: 4px;
}
@media (min-width: 768px) { .gwww-hs-tpl { height: 90px; } }
.gwww-hs-tpl--active { border-color: rgba(156,163,175,0.4); background: rgba(140,145,160,0.08); transform: scale(1.03); }
.gwww-hs-tpl-lines { display: flex; flex-direction: column; gap: 3px; }
.gwww-hs-tpl-lines span { height: 3px; border-radius: 2px; background: rgba(140,145,160,0.12); }
.gwww-hs-tpl-lines span:first-child { width: 60%; }
.gwww-hs-tpl-lines span:nth-child(2) { width: 80%; }
.gwww-hs-tpl-lines span:nth-child(3) { width: 40%; }
.gwww-hs-tpl-lines span:nth-child(4) { width: 70%; }

.gwww-hs-section { margin-bottom: 14px; }
.gwww-hs-section-label { font-size: 10px; color: var(--gwww-text-muted); text-transform: uppercase; letter-spacing: 0.04em; display: block; margin-bottom: 8px; }
.gwww-hs-colors { display: flex; gap: 10px; }
.gwww-hs-dot { width: 30px; height: 30px; border-radius: 50%; border: 2.5px solid transparent; transition: all 0.3s ease; cursor: pointer; }
.gwww-hs-dot--active { border-color: rgba(156,163,175,0.6); transform: scale(1.2); box-shadow: 0 0 10px rgba(156,163,175,0.15); }
.gwww-hs-fonts { display: flex; gap: 8px; }
.gwww-hs-font-opt {
    padding: 6px 14px; border-radius: 6px; font-size: 12px; color: var(--gwww-text-muted);
    border: 1px solid rgba(140,145,160,0.08); transition: all 0.3s ease; cursor: pointer;
}
.gwww-hs-font-opt--active { border-color: rgba(156,163,175,0.35); color: var(--gwww-text-primary); background: rgba(140,145,160,0.06); }

/* ── Panel 3: Generating ── */
.gwww-hg-body { display: flex; flex-direction: column; }
.gwww-hg-steps { width: 100%; margin-bottom: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.gwww-hg-step { font-size: 12px; color: var(--gwww-text-muted); padding: 6px 0; opacity: 0; transform: translateX(-8px); transition: all 0.3s ease; }
.gwww-hg-step--visible { opacity: 1; transform: translateX(0); }
.gwww-hg-step--done { color: var(--gwww-text-secondary); }
.gwww-hg-step--done::before { content: '✓ '; color: rgba(34,197,94,0.6); }
.gwww-hg-step--active { color: var(--gwww-text-primary); }
.gwww-hg-step--active::before { content: '◌ '; }
.gwww-hg-bar { width: 100%; height: 4px; border-radius: 2px; background: rgba(140,145,160,0.08); overflow: hidden; }
.gwww-hg-bar-fill { height: 100%; border-radius: 2px; background: rgba(156,163,175,0.3); width: 0; transition: width 0.6s ease; }
.gwww-hg-percent { margin-top: 8px; font-size: 12px; color: var(--gwww-text-muted); text-align: right; font-variant-numeric: tabular-nums; }

/* Animated wireframe — blocks appear as generation progresses */
.gwww-hg-wireframe {
    margin-top: 14px;
    border-radius: 8px;
    border: 1px solid rgba(140,145,160,0.08);
    background: rgba(140,145,160,0.02);
    padding: 10px;
    overflow: hidden;
}
.gwww-hg-wireframe > * { opacity: 0; transform: translateY(4px); transition: opacity 0.4s ease, transform 0.4s ease; }
.gwww-hg-wireframe > .gwww-hg-wire--visible { opacity: 1; transform: translateY(0); }

.gwww-hg-wire-nav { display: flex; gap: 8px; margin-bottom: 8px; }
.gwww-hg-wire-nav span { height: 4px; border-radius: 2px; background: rgba(140,145,160,0.15); }
.gwww-hg-wire-nav span:first-child { width: 40px; background: rgba(140,145,160,0.25); }
.gwww-hg-wire-nav span:nth-child(2) { width: 24px; }
.gwww-hg-wire-nav span:nth-child(3) { width: 24px; }
.gwww-hg-wire-nav span:nth-child(4) { width: 24px; }

.gwww-hg-wire-hero { background: rgba(140,145,160,0.04); border-radius: 6px; padding: 12px 10px; margin-bottom: 8px; }
.gwww-hg-wire-h { width: 55%; height: 8px; border-radius: 3px; background: rgba(255,255,255,0.08); margin-bottom: 6px; }
.gwww-hg-wire-p { width: 80%; height: 5px; border-radius: 2px; background: rgba(140,145,160,0.08); margin-bottom: 8px; }
.gwww-hg-wire-btn { width: 50px; height: 14px; border-radius: 3px; background: rgba(156,163,175,0.15); }

.gwww-hg-wire-cols { display: flex; gap: 6px; margin-bottom: 8px; }
.gwww-hg-wire-col { flex: 1; height: 36px; border-radius: 5px; background: rgba(140,145,160,0.04); border: 1px solid rgba(140,145,160,0.06); }

.gwww-hg-wire-footer { display: flex; gap: 12px; padding: 6px 0; }
.gwww-hg-wire-footer span { height: 3px; border-radius: 2px; background: rgba(140,145,160,0.10); }
.gwww-hg-wire-footer span:first-child { width: 50px; }
.gwww-hg-wire-footer span:nth-child(2) { width: 30px; }

/* ── Panel 4: Accept ── */
.gwww-ha-body { display: flex; flex-direction: column; align-items: center; }
.gwww-ha-preview-img { width: 100%; height: 160px; border-radius: 8px; overflow: hidden; margin-bottom: 16px; border: 1px solid rgba(140,145,160,0.08); }
@media (min-width: 768px) { .gwww-ha-preview-img { height: 200px; } }
.gwww-ha-preview-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.gwww-ha-buttons { display: flex; gap: 10px; width: 100%; }
.gwww-ha-btn { flex: 1; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 500; text-align: center; transition: all 0.3s ease; }
.gwww-ha-btn--reject { border: 1px solid rgba(140,145,160,0.12); color: var(--gwww-text-muted); background: transparent; }
.gwww-ha-btn--accept { background: var(--gwww-btn-gradient); color: #111; font-weight: 600; transition: all 0.4s ease; }
.gwww-ha-btn--clicked { background: #22c55e !important; color: #fff !important; box-shadow: 0 0 24px rgba(34,197,94,0.3); transform: scale(0.97); }

/* ── Panel 5: Payment BLIK ── */
.gwww-hp-body { display: flex; flex-direction: column; padding: 0; }
.gwww-hp-summary { margin-bottom: 16px; }
.gwww-hp-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--gwww-text-secondary); padding: 4px 0; }
.gwww-hp-row--total { font-weight: 600; color: var(--gwww-text-primary); font-size: 14px; }
.gwww-hp-price { font-weight: 600; }
.gwww-hp-divider { height: 1px; background: rgba(140,145,160,0.08); margin: 6px 0; }
.gwww-hp-method { margin-bottom: 14px; }
.gwww-hp-method-label { font-size: 10px; color: var(--gwww-text-muted); text-transform: uppercase; letter-spacing: 0.04em; display: block; margin-bottom: 8px; }
.gwww-hp-methods { display: flex; gap: 8px; }
.gwww-hp-opt { padding: 6px 16px; border-radius: 6px; font-size: 12px; color: var(--gwww-text-muted); border: 1px solid rgba(140,145,160,0.10); transition: all 0.3s ease; }
.gwww-hp-opt--active { border-color: rgba(156,163,175,0.35); color: var(--gwww-text-primary); background: rgba(140,145,160,0.06); }
.gwww-hp-blik { margin-bottom: 14px; }
.gwww-hp-blik-code { display: flex; gap: 6px; justify-content: center; }
.gwww-hp-blik-code span {
    width: 32px; height: 40px; border-radius: 6px; border: 1px solid rgba(140,145,160,0.12);
    background: rgba(140,145,160,0.04); display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 600; color: var(--gwww-text-primary); font-variant-numeric: tabular-nums;
    opacity: 0; transition: opacity 0.2s ease;
}
.gwww-hp-blik-code span.gwww-hp-digit--visible { opacity: 1; }
.gwww-hp-pay-btn {
    width: 100%; padding: 12px; border-radius: 8px; text-align: center;
    font-size: 13px; font-weight: 600; background: rgba(140,145,160,0.08);
    color: var(--gwww-text-muted); border: 1px solid rgba(140,145,160,0.10);
    margin-bottom: 0; transition: all 0.4s ease;
}
.gwww-hp-pay-btn--active { background: #22c55e; color: #fff; border-color: #22c55e; box-shadow: 0 0 16px rgba(34,197,94,0.2); margin-bottom: 14px; }
.gwww-hp-confirm { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.gwww-hp-check { opacity: 0; transform: scale(0.5); transition: all 0.5s cubic-bezier(0.4,0,0.2,1); }
.gwww-hp-check--visible { opacity: 1; transform: scale(1); }
.gwww-hp-status { font-size: 12px; color: rgba(34,197,94,0.7); font-weight: 500; opacity: 0; transition: opacity 0.4s ease; }
.gwww-hp-status--visible { opacity: 1; }

/* ── Panel 6: Final result ── */
.gwww-hfinal-body { }
.gwww-hfinal-img { width: 100%; border-radius: 8px; display: block; }
.gwww-hfinal-badge {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.15);
    font-size: 12px;
    color: rgba(34,197,94,0.8);
    font-weight: 500;
    text-align: center;
}

/* ── Hero video embed ── */
.gwww-hero__video {
    border-radius: 14px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
    aspect-ratio: 16 / 9;
}
.gwww-hero__video iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ═══ CUSTOMER LOGOS — scrolling bar ═══ */
.gwww-logos-section {
    position: relative;
    margin-top: -1rem;
    padding: 2rem 0;
    overflow: hidden;
}
@media (min-width: 768px) {
    .gwww-logos-section { margin-top: 0; }
}

.gwww-logos-scroll {
    transform: scale(0.75);
    transform-origin: center;
}
@media (min-width: 768px) {
    .gwww-logos-scroll { transform: scale(1); }
}

.gwww-logos-track {
    display: flex;
    justify-content: center;
    gap: 0;
    animation: gwww-logos-scroll 40s linear infinite;
    width: max-content;
}
@keyframes gwww-logos-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gwww-logos-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2.5rem;
    font-family: var(--gwww-font-display);
    font-size: 16px;
    font-weight: 500;
    color: rgba(160, 165, 180, 0.5);
    white-space: nowrap;
    user-select: none;
    letter-spacing: 0.02em;
}
.gwww-logos-item i {
    font-size: 20px;
    opacity: 0.7;
}

/* Blur/fade edges — BetterStack: gradient + backdrop-blur */
.gwww-logos-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 1;
    pointer-events: none;
}
.gwww-logos-fade--left {
    left: 0;
    background: linear-gradient(to right, #0A0B0F, transparent);
}
.gwww-logos-fade--right {
    right: 0;
    background: linear-gradient(to left, #0A0B0F, transparent);
}
/* Extra blur layer like BetterStack */
@supports (backdrop-filter: blur(2px)) {
    .gwww-logos-fade--left { backdrop-filter: blur(2px); }
    .gwww-logos-fade--right { backdrop-filter: blur(2px); }
}
@media (max-width: 767px) {
    .gwww-hero { min-height: auto; padding: 5rem 0 3rem; }
}

/* ── Carousel — BetterStack horizontal snap scroll ── */
.gwww-carousel {
    position: relative;
    overflow: hidden;
}
.gwww-carousel__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    scrollbar-width: none;
}
.gwww-carousel__track::-webkit-scrollbar { display: none; }

/* Gradient fade on edges — BetterStack */
.gwww-carousel::before,
.gwww-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.gwww-carousel::before { left: 0; background: linear-gradient(to right, var(--gwww-bg-primary), transparent); }
.gwww-carousel::after { right: 0; background: linear-gradient(to left, var(--gwww-bg-primary), transparent); }
.gwww-section--dark .gwww-carousel::before { background: linear-gradient(to right, var(--gwww-bg-section), transparent); }
.gwww-section--dark .gwww-carousel::after { background: linear-gradient(to left, var(--gwww-bg-section), transparent); }

/* Carousel cards — BetterStack style */
.gwww-carousel__card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: var(--gwww-bg-section);
    border: 1px solid var(--gwww-border-card);
    border-radius: var(--gwww-radius-lg);
    overflow: hidden;
    min-height: 478px;
    position: relative;
    transition: transform var(--gwww-transition);
}
.gwww-carousel__card:hover { transform: scale(1.01); }
.gwww-carousel__card--wide { flex: 0 0 720px; }

@media (max-width: 767px) {
    .gwww-carousel__card { flex: 0 0 85vw; min-height: 360px; }
    .gwww-carousel__card--wide { flex: 0 0 90vw; }
}

.gwww-carousel__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gwww-carousel__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10,11,15,0.95) 0%, rgba(10,11,15,0.6) 50%, transparent 100%);
}
.gwww-carousel__card-title {
    font-family: var(--gwww-font-display);
    font-size: var(--gwww-font-size-lg);
    font-weight: 500;
    color: var(--gwww-text-primary);
    margin-bottom: 0.25rem;
}
.gwww-carousel__card-desc {
    font-size: var(--gwww-font-size-sm);
    color: var(--gwww-text-muted);
}

/* Carousel nav arrows — BetterStack */
.gwww-carousel__nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.gwww-carousel__arrow {
    width: 38px;
    height: 38px;
    border-radius: var(--gwww-radius-full);
    border: 1px solid rgba(160, 165, 180, 0.2);
    background: var(--gwww-bg-card-solid);
    color: var(--gwww-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--gwww-transition);
}
.gwww-carousel__arrow:hover {
    border-color: var(--gwww-accent);
    color: var(--gwww-accent);
}

/* ── Template filter buttons ── */
.gwww-examples__filters { flex-wrap: wrap; }
.gwww-filter-btn {
    padding: 0.375rem 1rem;
    font-size: var(--gwww-font-size-sm);
    font-weight: 500;
    color: var(--gwww-text-muted);
    background: transparent;
    border: 1px solid var(--gwww-border);
    border-radius: var(--gwww-radius-full);
    cursor: pointer;
    transition: all var(--gwww-transition);
    min-height: 36px;
}
.gwww-filter-btn:hover,
.gwww-filter-btn--active {
    color: var(--gwww-text-primary);
    border-color: var(--gwww-accent);
    background: rgba(156, 163, 175, 0.08);
}

/* Template card image */
.gwww-template-card__preview {
    border-radius: var(--gwww-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 16 / 10;
    background: var(--gwww-bg-section);
}
.gwww-template-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gwww-template-card__name {
    font-size: var(--gwww-font-size-base);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* ── Steps (Jak to działa) ── */
.gwww-steps {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 3rem;
}
.gwww-steps__line {
    position: absolute;
    left: 1.125rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gwww-border);
}
.gwww-step { position: relative; padding-bottom: 2.5rem; }
.gwww-step:last-child { padding-bottom: 0; }
.gwww-step__number {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gwww-btn-gradient);
    color: #111;
    font-weight: 700;
    font-size: var(--gwww-font-size-sm);
    border-radius: 50%;
    z-index: 1;
}
.gwww-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(156, 163, 175, 0.1);
    color: var(--gwww-accent);
    border-radius: var(--gwww-radius);
    margin-bottom: 0.75rem;
    font-size: var(--gwww-font-size-lg);
}
.gwww-step__title { font-size: var(--gwww-font-size-lg); font-weight: 600; margin-bottom: 0.375rem; }
.gwww-step__desc { font-size: var(--gwww-font-size-sm); color: var(--gwww-text-muted); }

/* ── Pricing section — subtle depth ── */
#cennik {
    position: relative;
}
#cennik > .gwww-container {
    position: relative;
    z-index: 1;
}

/* ── Pricing — centered header + two-column ── */
.gwww-pricing-header {
    text-align: center;
    max-width: 629px;
    margin: 0 auto 3rem;
}
.gwww-pricing-header__title {
    font-family: var(--gwww-font-display);
    font-weight: 700;
    font-size: 28px;
    line-height: 108%;
    background: linear-gradient(180deg, #D1D5DB 0%, #6B7280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.5rem;
}
@media (min-width: 768px) { .gwww-pricing-header__title { font-size: 40px; } }

.gwww-pricing-header__desc {
    margin-top: 0.75rem;
    color: var(--gwww-text-secondary);
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 145%;
}
.gwww-hide-mobile { display: none; }
@media (min-width: 768px) { .gwww-hide-mobile { display: inline; } }

.gwww-pricing-header__pill {
    display: inline-flex;
    align-items: center;
    margin-top: 1.25rem;
    padding: 0 1rem;
    height: 37px;
    font-size: 13px;
    border-radius: 100px;
    border: 1px solid rgba(160, 165, 180, 0.2);
    background: #16171E;
    color: #B0B7C8;
    text-decoration: none;
    gap: 0.375rem;
    transition: all 0.15s ease;
}
.gwww-pricing-header__pill:hover { background: #1E1F28; color: #fff; }
.gwww-pricing-header__pill i { font-size: 10px; }

/* Two-column content */
.gwww-pricing-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .gwww-pricing-content { flex-direction: row; gap: 4rem; }
}

/* Left text */
.gwww-pricing-text { flex: 1; }
@media (min-width: 768px) { .gwww-pricing-text { max-width: 400px; } }

.gwww-pricing-text__title {
    font-family: var(--gwww-font-display);
    font-weight: 700;
    font-size: 18px;
    line-height: 117%;
    color: #fff;
}
@media (min-width: 768px) { .gwww-pricing-text__title { font-size: 28px; } }

.gwww-pricing-text__desc {
    margin-top: 0.75rem;
    font-size: 14px;
    color: var(--gwww-text-secondary);
    line-height: 155%;
    max-width: 360px;
}

.gwww-pricing-text__info {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.gwww-pricing-text__info-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 13px;
    color: var(--gwww-text-secondary);
}
.gwww-pricing-text__info-item i {
    color: var(--gwww-accent);
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.gwww-pricing-text__info-item strong { color: #fff; }

/* Right cards — stacked */
.gwww-pricing-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gwww-pcard {
    position: relative;
    border: 1px solid rgba(140, 145, 160, 0.1);
    border-radius: 12px;
    background: #0E0F14;
    overflow: hidden;
    padding: 1.25rem 1.25rem 1.25rem 2rem;
}
@media (min-width: 768px) { .gwww-pcard { padding: 1.5rem 1.5rem 1.5rem 2rem; } }

.gwww-pcard--featured {
    border-color: rgba(156, 163, 175, 0.3);
    box-shadow: 0 0 30px rgba(156, 163, 175, 0.06);
}

.gwww-pcard__badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: var(--gwww-btn-gradient);
    color: #111;
    font-size: 10px;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gwww-pcard__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.gwww-pcard__name {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}
.gwww-pcard__price {
    font-size: 14px;
    color: var(--gwww-text-secondary);
    white-space: nowrap;
}
.gwww-pcard__amount {
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    line-height: 1;
}

.gwww-pcard__list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.gwww-pcard__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 13px;
    color: var(--gwww-text-secondary);
    line-height: 155%;
}
.gwww-pcard__list i {
    color: var(--gwww-accent);
    font-size: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}
.gwww-pcard__list strong { color: #fff; }

.gwww-pcard__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    width: 100%;
    height: 44px;
    background: var(--gwww-btn-gradient);
    color: #111;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.gwww-pcard__cta:hover { filter: brightness(1.1); transform: translateY(-1px); color: #000; }

/* ── Reviews — masonry, tweet-card style, BetterStack exact ── */
.gwww-reviews__summary { margin-bottom: 1rem; }
.gwww-reviews__stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    color: #FBBF24;
    font-size: var(--gwww-font-size-xl);
    margin-bottom: 0.5rem;
}
.gwww-reviews__avg { font-size: var(--gwww-font-size-base); color: var(--gwww-text-secondary); }

.gwww-reviews__grid {
    columns: 1;
    column-gap: var(--gwww-gap);
}
@media (min-width: 640px) { .gwww-reviews__grid { columns: 2; } }
@media (min-width: 1024px) { .gwww-reviews__grid { columns: 3; } }

.gwww-reviews__grid > .gwww-review-card {
    break-inside: avoid;
    margin-bottom: var(--gwww-gap);
    display: inline-block;
    width: 100%;
}

.gwww-review-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(20, 21, 28, 0.80);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--gwww-border-hover);
    border-radius: var(--gwww-radius-lg);
    padding: 1.25rem;
}
.gwww-review-card__header { display: flex; align-items: center; gap: 0.75rem; }
.gwww-review-card__avatar {
    width: 37px;
    height: 37px;
    border-radius: var(--gwww-radius-full);
    background: var(--gwww-btn-gradient);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--gwww-font-size-sm);
    flex-shrink: 0;
}
.gwww-review-card__name { font-weight: 600; font-size: var(--gwww-font-size-sm); }
.gwww-review-card__stars { display: flex; gap: 0.125rem; color: #FBBF24; font-size: var(--gwww-font-size-xs); }
.gwww-review-card__text { font-size: var(--gwww-font-size-sm); color: var(--gwww-text-secondary); line-height: var(--gwww-leading-relaxed); }
.gwww-review-card__source { display: flex; align-items: center; gap: 0.375rem; }

/* ── FAQ — clean accordion ── */
.gwww-faq { max-width: 800px; margin: 0 auto; }
.gwww-faq__item { border-bottom: 1px solid var(--gwww-border); }
.gwww-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    font-size: var(--gwww-font-size-base);
    font-weight: 500;
    color: var(--gwww-text-primary);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    min-height: 44px;
    transition: color var(--gwww-transition);
}
.gwww-faq__question:hover { color: var(--gwww-accent); }
.gwww-faq__icon { transition: transform 0.3s ease; flex-shrink: 0; color: var(--gwww-text-muted); }
.gwww-faq__item--open .gwww-faq__icon { transform: rotate(180deg); }
.gwww-faq__answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0; }
.gwww-faq__answer[hidden] { display: block; max-height: 0; padding: 0; visibility: hidden; }
.gwww-faq__item--open .gwww-faq__answer { max-height: 300px; padding: 0 0 1.25rem; visibility: visible; }
.gwww-faq__answer p { font-size: var(--gwww-font-size-sm); color: var(--gwww-text-muted); line-height: var(--gwww-leading-relaxed); }

/* ── Contact ── */
.gwww-contact__info { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.gwww-contact__item { display: flex; align-items: flex-start; gap: 1rem; }
.gwww-contact__item > i {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(156, 163, 175, 0.1);
    color: var(--gwww-accent);
    border-radius: var(--gwww-radius);
    flex-shrink: 0;
}
.gwww-contact__item h4 { font-size: var(--gwww-font-size-base); font-weight: 600; margin-bottom: 0.125rem; }
.gwww-contact__form { display: flex; flex-direction: column; gap: 1rem; }
.gwww-contact__rodo input[type="checkbox"] {
    accent-color: var(--gwww-accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Logo scroll — BetterStack customer logos ── */
.gwww-logo-scroll {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}
.gwww-logo-scroll::before,
.gwww-logo-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 1;
    pointer-events: none;
}
.gwww-logo-scroll::before { left: 0; background: linear-gradient(to right, var(--gwww-bg-primary), transparent); }
.gwww-logo-scroll::after { right: 0; background: linear-gradient(to left, var(--gwww-bg-primary), transparent); }
.gwww-logo-scroll__track {
    display: flex;
    gap: 3rem;
    animation: gwww-logo-scroll 30s linear infinite;
    width: max-content;
}
@keyframes gwww-logo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Kreator Preview Card (in pricing section) ── */
.gwww-kreator-preview {
    margin-top: 2rem;
}

.gwww-kreator-preview__card {
    background: #0E0F14;
    border: 1px solid rgba(140, 145, 160, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.gwww-kreator-preview__header {
    display: flex;
    gap: 6px;
    padding: 0.75rem 1rem;
    background: rgba(20, 21, 28, 0.5);
    border-bottom: 1px solid rgba(140, 145, 160, 0.08);
}

.gwww-kreator-preview__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(160, 165, 180, 0.2);
}
.gwww-kreator-preview__dot:first-child { background: #ef4444; }
.gwww-kreator-preview__dot:nth-child(2) { background: #f59e0b; }
.gwww-kreator-preview__dot:nth-child(3) { background: #22c55e; }

.gwww-kreator-preview__steps {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gwww-kreator-preview__step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 13px;
    color: var(--gwww-text-muted);
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
/* Triggered by JS when in viewport */
.gwww-kreator-preview--visible .gwww-kreator-preview__step { opacity: 1; transform: translateX(0); }
.gwww-kreator-preview--visible .gwww-kreator-preview__step:nth-child(1) { transition-delay: 0.15s; }
.gwww-kreator-preview--visible .gwww-kreator-preview__step:nth-child(2) { transition-delay: 0.4s; }
.gwww-kreator-preview--visible .gwww-kreator-preview__step:nth-child(3) { transition-delay: 0.65s; }
.gwww-kreator-preview--visible .gwww-kreator-preview__step:nth-child(4) { transition-delay: 0.9s; }
.gwww-kreator-preview--visible .gwww-kreator-preview__step:nth-child(5) { transition-delay: 1.15s; }
.gwww-kreator-preview--visible .gwww-kreator-preview__step:nth-child(6) { transition-delay: 1.4s; }

.gwww-kreator-preview__step--done {
    color: var(--gwww-text-secondary);
}
.gwww-kreator-preview__step--done .gwww-kreator-preview__step-num {
    background: var(--gwww-accent);
    color: #111;
    border-color: var(--gwww-accent);
}

.gwww-kreator-preview__step--active {
    background: rgba(156, 163, 175, 0.08);
    color: #fff;
}
.gwww-kreator-preview__step--active .gwww-kreator-preview__step-num {
    background: var(--gwww-btn-gradient);
    color: #111;
    border-color: var(--gwww-accent);
    box-shadow: 0 0 12px var(--gwww-accent-glow);
    animation: gwww-glow-pulse 2s infinite;
}

.gwww-kreator-preview__step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    background: transparent;
    border: 1px solid rgba(160, 165, 180, 0.2);
    color: var(--gwww-text-muted);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* ═══ FEATURES — 3×2 grid with image cards ═══ */
.gwww-features-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
@media (min-width: 768px) {
    .gwww-features-section { padding-top: 8rem; padding-bottom: 4rem; }
}

.gwww-features__title {
    font-family: var(--gwww-font-display);
    font-weight: 700;
    font-size: 28px;
    line-height: 108%;
    color: #fff;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3rem;
    padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .gwww-features__title { font-size: 36px; margin-bottom: 4.375rem; }
}

.gwww-features__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.75rem;
    max-width: 1104px;
    margin: 0 auto;
}

.gwww-fcard {
    flex: 1 1 100%;
    border: 1px solid rgba(140, 145, 160, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: #0E0F14;
    min-height: 356px;
}
@media (min-width: 640px) {
    .gwww-fcard {
        flex: 1 1 calc(33.333% - 1.75rem);
        min-width: 280px;
        max-width: 336px;
    }
}

.gwww-fcard img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
    object-position: top;
}

.gwww-fcard__text {
    padding: 1.5rem;
}

.gwww-fcard__text h4 {
    font-family: var(--gwww-font-display);
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gwww-fcard__text p {
    font-size: 14px;
    color: var(--gwww-text-secondary);
    line-height: 155%;
}

/* ═══ HAPPY CUSTOMERS — background image section like BetterStack ═══ */
.gwww-happy-section {
    padding: 5rem 0 5rem;
    position: relative;
}
@media (min-width: 1024px) {
    .gwww-happy-section { padding: 9rem 0 9rem; }
}

.gwww-happy-text {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .gwww-happy-text {
        text-align: left;
        margin: 0;
    }
}

.gwww-happy-text__title {
    font-family: var(--gwww-font-display);
    font-weight: 700;
    font-size: 18px;
    line-height: 117%;
    color: #fff;
    max-width: 386px;
}
@media (min-width: 768px) { .gwww-happy-text__title { font-size: 28px; } }

.gwww-happy-text__desc {
    margin-top: 0.75rem;
    font-size: 16px;
    color: var(--gwww-text-secondary);
    line-height: 150%;
    max-width: 400px;
}
@media (min-width: 768px) { .gwww-happy-text__desc { font-size: 18px; } }

/* ═══ PORTFOLIO — carousel section ═══ */
.gwww-portfolio-section {
    padding: var(--gwww-section-py) 0;
}

.gwww-portfolio-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.25rem;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .gwww-portfolio-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.gwww-portfolio-header__title {
    font-family: var(--gwww-font-display);
    font-weight: 700;
    font-size: 28px;
    color: #fff;
}
@media (min-width: 768px) {
    .gwww-portfolio-header__title { font-size: 40px; }
}

.gwww-portfolio-header__right {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
}

.gwww-portfolio-header__arrows {
    display: none;
    align-items: center;
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .gwww-portfolio-header__arrows { display: flex; }
}

.gwww-portfolio-header__divider {
    width: 1px;
    height: 18px;
    background: rgba(160, 165, 180, 0.12);
    margin: 0 1.25rem;
}

.gwww-portfolio-carousel {
    margin-top: 0;
}


/* ═══ HOW IT WORKS — horizontal zigzag flow ═══ */
.gwww-flow {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .gwww-flow {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr auto 1fr;
        gap: 0 12px;
        align-items: center;
    }
}

/* Horizontal line — pseudo element spanning full width in middle row */
.gwww-flow__line {
    display: none;
}
@media (min-width: 768px) {
    .gwww-flow__line {
        display: block;
        grid-column: 1 / -1;
        grid-row: 2;
        height: 2px;
        background: rgba(140,145,160,0.15);
        align-self: center;
    }
}

.gwww-flow__item { display: contents; }

/* Dots — all in middle row, explicit columns */
.gwww-flow__dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0E0F14;
    border: 2px solid rgba(140,145,160,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    justify-self: center;
}
.gwww-flow__dot span {
    font-size: 13px;
    font-weight: 700;
    color: var(--gwww-text-muted);
}

/* Card */
.gwww-flow__card {
    padding: 20px 16px;
    border-radius: 12px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    transition: border-color 0.3s ease;
    text-align: center;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 768px) {
    .gwww-flow__card { min-height: 180px; }
}
.gwww-flow__card:hover {
    border-color: rgba(140,145,160,0.20);
}

/* Desktop grid placement — line is child 1, items are 2-5 */
@media (min-width: 768px) {
    /* Item 1 (2nd child): card top, dot middle — column 1 */
    .gwww-flow__item:nth-child(2) .gwww-flow__dot  { grid-column: 1; grid-row: 2; }
    .gwww-flow__item:nth-child(2) .gwww-flow__card { grid-column: 1; grid-row: 1; align-self: stretch; margin-bottom: 12px; display: flex; }

    /* Item 2 (3rd child): dot middle, card bottom — column 2 */
    .gwww-flow__item:nth-child(3) .gwww-flow__dot  { grid-column: 2; grid-row: 2; }
    .gwww-flow__item:nth-child(3) .gwww-flow__card { grid-column: 2; grid-row: 3; align-self: stretch; margin-top: 12px; display: flex; }

    /* Item 3 (4th child): card top, dot middle — column 3 */
    .gwww-flow__item:nth-child(4) .gwww-flow__dot  { grid-column: 3; grid-row: 2; }
    .gwww-flow__item:nth-child(4) .gwww-flow__card { grid-column: 3; grid-row: 1; align-self: stretch; margin-bottom: 12px; display: flex; }

    /* Item 4 (5th child): dot middle, card bottom — column 4 */
    .gwww-flow__item:nth-child(5) .gwww-flow__dot  { grid-column: 4; grid-row: 2; }
    .gwww-flow__item:nth-child(5) .gwww-flow__card { grid-column: 4; grid-row: 3; align-self: stretch; margin-top: 12px; display: flex; }
}

.gwww-flow__icon {
    width: 40px;
    height: 40px;
    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: 16px;
}

.gwww-flow__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gwww-text-primary);
    margin-bottom: 8px;
}

.gwww-flow__desc {
    font-size: 12px;
    color: var(--gwww-text-muted);
    line-height: 160%;
}

/* CTA under flow steps */
.gwww-flow__cta {
    text-align: center;
    margin-top: 2.5rem;
}
@media (min-width: 768px) {
    .gwww-flow__cta { margin-top: 3rem; }
}

/* Staggered reveal animation */
.gwww-flow-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease var(--flow-delay, 0s), transform 0.6s ease var(--flow-delay, 0s);
}
.gwww-flow--visible .gwww-flow-anim {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile: vertical stack */
@media (max-width: 767px) {
    .gwww-flow {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-left: 18px;
    }
    .gwww-flow__line {
        display: block;
        position: absolute;
        left: 18px;
        top: 2rem;
        bottom: 2rem;
        width: 2px;
        height: auto;
        background: rgba(140,145,160,0.15);
    }
    .gwww-flow__item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 2rem;
    }
    .gwww-flow__item:last-child { margin-bottom: 0; }
    .gwww-flow__dot { width: 30px; height: 30px; flex-shrink: 0; }
    .gwww-flow__card { text-align: left; margin: 0; }
    .gwww-flow__icon { margin: 0 0 10px; }
}


/* ═══ TRUST / WHY US section ═══ */
.gwww-trust {
    max-width: 1000px;
    margin: 0 auto;
}

/* 3 main cards */
.gwww-trust__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .gwww-trust__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.gwww-trust__card {
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    transition: border-color 0.3s ease;
}
.gwww-trust__card:hover {
    border-color: rgba(140,145,160,0.20);
}
.gwww-trust__card--highlight {
    border-color: rgba(140,145,160,0.18);
    background: rgba(140,145,160,0.03);
}

.gwww-trust__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-bottom: 16px;
    color: var(--gwww-text-muted);
    font-size: 18px;
}

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

.gwww-trust__card-desc {
    font-size: 13px;
    color: var(--gwww-text-muted);
    line-height: 165%;
}

/* Stats bar */
.gwww-trust__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px 20px;
    border-radius: 12px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gwww-trust__stat {
    flex: 1;
    text-align: center;
    padding: 8px 16px;
    min-width: 120px;
}

.gwww-trust__stat-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--gwww-text-primary);
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.gwww-trust__stat-label {
    font-size: 11px;
    color: var(--gwww-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gwww-trust__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(140,145,160,0.10);
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .gwww-trust__stat-divider { display: none; }
    .gwww-trust__stats { gap: 8px; }
    .gwww-trust__stat { min-width: 45%; }
}

/* Extra badges */
.gwww-trust__extras {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gwww-trust__extra {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(140,145,160,0.08);
    background: rgba(140,145,160,0.02);
    font-size: 12px;
    color: var(--gwww-text-muted);
    transition: border-color 0.3s ease;
}
.gwww-trust__extra:hover {
    border-color: rgba(140,145,160,0.18);
}
.gwww-trust__extra i {
    font-size: 12px;
    color: var(--gwww-text-muted);
    opacity: 0.6;
}


/* ═══ REALIZACJE — new carousel ═══ */
.gwww-realizacje {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--gwww-container-px);
}
.gwww-realizacje__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 0;
}
.gwww-realizacje__track::-webkit-scrollbar { display: none; }

.gwww-realizacje__card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    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;
}
@media (max-width: 767px) {
    .gwww-realizacje__card { flex: 0 0 80vw; }
}
.gwww-realizacje__card:hover {
    border-color: rgba(140,145,160,0.22);
    transform: translateY(-2px);
}

.gwww-realizacje__img {
    height: 200px;
    overflow: hidden;
}
.gwww-realizacje__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
}
.gwww-realizacje__card:hover .gwww-realizacje__img img {
    transform: scale(1.03);
}

.gwww-realizacje__info {
    padding: 16px 18px;
}
.gwww-realizacje__cat {
    font-size: 10px;
    color: var(--gwww-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gwww-realizacje__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gwww-text-primary);
    margin-top: 4px;
}

.gwww-realizacje__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.gwww-realizacje__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(140,145,160,0.15);
    background: #0E0F14;
    color: var(--gwww-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gwww-realizacje__arrow:hover {
    border-color: rgba(140,145,160,0.3);
    color: var(--gwww-text-primary);
}
.gwww-realizacje__link {
    font-size: 13px;
    color: var(--gwww-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}
.gwww-realizacje__link:hover { color: var(--gwww-text-primary); }

/* ═══ OPINIE — new design ═══ */
.gwww-opinie-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .gwww-opinie-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}
.gwww-opinie-header__left h2 {
    font-size: var(--gwww-font-size-4xl);
    margin-bottom: 0.25rem;
}
.gwww-opinie-header__sub {
    font-size: 14px;
    color: var(--gwww-text-muted);
}
.gwww-opinie-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gwww-opinie-rating__stars {
    display: flex;
    gap: 2px;
    color: #FBBF24;
    font-size: 14px;
}
.gwww-opinie-rating__text {
    font-size: 13px;
    color: var(--gwww-text-muted);
}

.gwww-opinie-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) { .gwww-opinie-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gwww-opinie-grid { grid-template-columns: repeat(3, 1fr); } }

.gwww-opinia {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(140,145,160,0.10);
    background: #0E0F14;
    transition: border-color 0.3s ease;
}
.gwww-opinia:hover { border-color: rgba(140,145,160,0.20); }

.gwww-opinia__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.gwww-opinia__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(140,145,160,0.08);
    border: 1px solid rgba(140,145,160,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gwww-text-muted);
    flex-shrink: 0;
}
.gwww-opinia__meta { flex: 1; }
.gwww-opinia__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gwww-text-primary);
}
.gwww-opinia__stars {
    display: flex;
    gap: 1px;
    color: #FBBF24;
    font-size: 10px;
}
.gwww-opinia__source {
    color: var(--gwww-text-muted);
    font-size: 14px;
    opacity: 0.5;
}
.gwww-opinia__text {
    font-size: 13px;
    color: var(--gwww-text-muted);
    line-height: 165%;
}


/* ═══ SLOGAN — pre-footer brand section ═══ */
.gwww-slogan {
    padding: var(--gwww-section-py) 0;
    text-align: center;
    position: relative;
}
.gwww-slogan__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.gwww-slogan__pre {
    font-size: 13px;
    color: var(--gwww-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gwww-slogan--visible .gwww-slogan__pre {
    opacity: 1;
    transform: translateY(0);
}
.gwww-slogan__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 2.5rem;
}
.gwww-slogan__line {
    display: block;
    font-family: var(--gwww-font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.gwww-slogan--visible .gwww-slogan__line {
    opacity: 1;
    transform: translateY(0);
}
.gwww-slogan__line--1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--gwww-text-secondary);
    transition-delay: 0.15s;
}
.gwww-slogan__line--2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, #fff, #9CA3AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition-delay: 0.35s;
}
.gwww-slogan__btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s, filter 0.2s ease, background 0.2s ease;
}
.gwww-slogan--visible .gwww-slogan__btn {
    opacity: 1;
    transform: translateY(0);
}


/* Pricing card "more" link */
.gwww-pcard__more {
    color: var(--gwww-text-muted) !important;
    font-style: italic;
    font-size: 12px !important;
}
