/* =============================================================
   WEBERNIZER — Shared Stylesheet
   Fonts: Poppins (headings) + DM Sans (body)
   Icons: Phosphor Icons (@phosphor-icons/web fill)
   ============================================================= */

/* ── CSS VARIABLES ── */
:root {
    --bg: #0C1B26;
    --blue: #4EAACB;
    --blue-dark: #3891b0;
    --blue-light: #66C0E0;
    --coral: #FF6B6B;
    --coral-dark: #e55555;
    --teal: #4ECDC4;
    --teal-dark: #38b2aa;
    --text: #EEF4F7;
    --text-muted: #8AABB8;
    --text-light: #4D7180;
    --white: #FFFFFF;
    --card: #142130;
    --border: rgba(78,170,203,0.14);
    --border-light: rgba(78,170,203,0.07);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --light-bg: #EEF6FA;
    --light-border: #E2EDF1;
    --light-text: #1A3D4F;
    --light-accent: #1A5F7A;
}

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    scrollbar-gutter: stable; /* prevents layout shift when overflow:hidden removes scrollbar */
}

a {
    text-decoration: none;
}


/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
nav:not(.sidebar-nav) {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 5%;
}

/* ── BRAND LOGO ── */
.wz-logo {
    display: block;
    width: auto; /* height set per context; keeps aspect */
    aspect-ratio: 33 / 8; /* 660×160 source → reserves width before load, no layout shift */
    max-width: 100%; /* safety: never overflow a narrow container */
}

.nav-logo .wz-logo { /* light navbar → dark logo */
    height: 46px;
}

.nav-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--light-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        font-family: 'DM Sans', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--light-text);
        text-decoration: none;
        position: relative;
        transition: color 0.2s;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--teal);
            border-radius: 1px;
            transform: scaleX(0);
            transition: transform 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--light-accent);
        }

            .nav-links a:hover::after {
                transform: scaleX(1);
            }

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── BUTTONS ── */
.btn-ghost {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--light-accent);
    background: none;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 9px 20px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}

    .btn-ghost:hover {
        background: #F0F7FA;
        border-color: var(--light-accent);
    }

.btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    background: var(--coral);
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

    .btn-primary:hover {
        background: var(--coral-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(255,107,107,0.35);
    }

.btn-hero {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    background: var(--coral);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-hero:hover {
        background: var(--coral-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(255,107,107,0.4);
    }

.btn-hero-secondary {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 13px 26px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

    .btn-hero-secondary:hover {
        border-color: rgba(255,255,255,0.5);
        background: rgba(255,255,255,0.18);
    }

.btn-plan {
    display: block;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-plan-outline {
    color: var(--blue);
    background: var(--bg);
    border: 1.5px solid var(--border);
}

    .btn-plan-outline:hover {
        border-color: var(--teal);
        background: var(--border-light);
    }

.btn-plan-primary {
    background: var(--teal) !important;
    color: #0F2A38 !important;
    font-weight: 700;
}

    .btn-plan-primary:hover {
        background: var(--teal-dark) !important;
    }

.bg-teal .btn-plan-primary {
    background: var(--light-accent) !important;
    color: var(--white) !important;
}

    .bg-teal .btn-plan-primary:hover {
        background: #134a61 !important;
    }


/* ══════════════════════════════════════════════
   HAMBURGER & MOBILE MENU
   ══════════════════════════════════════════════ */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

    .hamburger:hover {
        border-color: var(--light-accent);
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--light-border);
    box-shadow: 0 8px 32px rgba(26,95,122,0.12);
    z-index: 99;
    padding: 16px 0 24px;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

    .mobile-menu.open {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu a {
        font-family: 'DM Sans', sans-serif;
        font-weight: 500;
        font-size: 1rem;
        color: #5A7A88;
        text-decoration: none;
        padding: 14px 24px;
        border-bottom: 1px solid #F0F7FA;
        display: block;
        transition: color 0.15s, background 0.15s;
    }

        .mobile-menu a:last-of-type {
            border-bottom: none;
        }

        .mobile-menu a:hover {
            color: var(--light-accent);
            background: #F0F7FA;
        }

.mobile-menu-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 24px 0;
    border-top: 1px solid var(--light-border);
    margin-top: 8px;
}

.mobile-menu-signin {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--light-accent);
    background: none;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

    .mobile-menu-signin:hover {
        background: #F0F7FA;
        border-color: var(--light-accent);
    }

.mobile-menu-cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 13px 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    background: var(--coral);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

    .mobile-menu-cta:hover {
        background: var(--coral-dark);
    }


/* ══════════════════════════════════════════════
   SECTION LAYOUT PRIMITIVES
   ══════════════════════════════════════════════ */
section {
    padding: 96px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-inner, .stats-inner, .hero, .logos-inner {
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2aada4;
    margin-bottom: 16px;
    background: rgba(78,205,196,0.12);
    border: 1px solid rgba(78,205,196,0.35);
    border-radius: 100px;
    padding: 5px 14px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}


/* ══════════════════════════════════════════════
   SECTION BACKGROUND THEMES
   ══════════════════════════════════════════════ */
.bg-blue {
    background: radial-gradient(ellipse 65% 55% at 10% 10%, rgba(78,205,196,0.18) 0%, transparent 55%), radial-gradient(ellipse 50% 45% at 90% 90%, rgba(255,107,107,0.12) 0%, transparent 50%), radial-gradient(ellipse 80% 40% at 50% -5%, rgba(255,255,255,0.08) 0%, transparent 50%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='14' cy='14' r='1.3' fill='white' opacity='0.12'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpolygon points='30%2C2 58%2C17 58%2C35 30%2C50 2%2C35 2%2C17' fill='none' stroke='white' stroke-width='0.6' opacity='0.06'/%3E%3C/svg%3E"), #1A5F7A !important;
    background-size: auto, auto, auto, 28px 28px, 60px 52px, auto;
    position: relative;
    overflow: hidden;
}

.bg-teal {
    background: radial-gradient(ellipse 55% 50% at 95% 5%, rgba(26,95,122,0.08) 0%, transparent 55%), radial-gradient(ellipse 40% 35% at 5% 95%, rgba(78,205,196,0.06) 0%, transparent 50%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='14' cy='14' r='1' fill='%231A5F7A' opacity='0.07'/%3E%3C/svg%3E"), #EEF6FA !important;
    background-size: auto, auto, 28px 28px, auto;
    position: relative;
    overflow: hidden;
}

/* bg-blue overrides */
.bg-blue .section-tag {
    color: var(--teal);
}

.bg-blue .section-title {
    color: var(--white);
}

.bg-blue .section-desc {
    color: rgba(255,255,255,0.65);
}

.bg-blue .step h3 {
    color: var(--white);
}

.bg-blue .step p {
    color: rgba(255,255,255,0.65);
}

.bg-blue .step:nth-child(1) .step-number {
    background: rgba(78,205,196,0.2);
    border-color: var(--teal);
    color: var(--teal);
}

.bg-blue .step:nth-child(2) .step-number {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.bg-blue .step:nth-child(3) .step-number {
    background: rgba(255,107,107,0.2);
    border-color: var(--coral);
    color: var(--coral);
}

.bg-blue .steps-grid::before {
    background: linear-gradient(90deg, var(--teal) 0%, rgba(255,255,255,0.4) 50%, var(--coral) 100%);
}

.bg-blue .feature-card {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
}

    .bg-blue .feature-card:hover {
        background: rgba(255,255,255,0.12);
        border-color: var(--teal) !important;
    }

    .bg-blue .feature-card h3 {
        color: var(--white);
    }

    .bg-blue .feature-card p {
        color: rgba(255,255,255,0.7);
    }

.bg-blue .testimonial-card {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
}

.bg-blue .testimonial-text {
    color: var(--white);
}

.bg-blue .author-name {
    color: var(--white);
}

.bg-blue .author-role {
    color: rgba(255,255,255,0.6);
}

.bg-blue .pricing-card {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
}

    .bg-blue .pricing-card.featured {
        border-color: var(--teal) !important;
        box-shadow: 0 0 0 3px rgba(78,205,196,0.2) !important;
    }

.bg-blue .pricing-tier {
    color: rgba(255,255,255,0.6);
}

.bg-blue .price-currency, .bg-blue .price-amount {
    color: var(--white);
}

.bg-blue .price-period {
    color: rgba(255,255,255,0.6);
}

.bg-blue .pricing-desc {
    color: rgba(255,255,255,0.65);
}

.bg-blue .pricing-divider {
    background: rgba(255,255,255,0.1);
}

.bg-blue .pricing-features li {
    color: rgba(255,255,255,0.75);
}

    .bg-blue .pricing-features li::before {
        background: rgba(78,205,196,0.2) !important;
        color: var(--teal) !important;
    }

.bg-blue .btn-plan-outline {
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

    .bg-blue .btn-plan-outline:hover {
        background: rgba(255,255,255,0.15);
        border-color: rgba(255,255,255,0.4);
    }

.bg-blue .bullet-check {
    background: rgba(78,205,196,0.2) !important;
    color: var(--teal) !important;
}

/* bg-teal overrides */
.bg-teal .section-tag {
    background: rgba(26,95,122,0.08);
    border-color: rgba(26,95,122,0.2);
    color: var(--light-accent);
}

.bg-teal .section-title {
    color: #0F2A38;
}

.bg-teal .section-desc {
    color: var(--light-accent);
}

.bg-teal .step h3 {
    color: #0F2A38;
}

.bg-teal .step p {
    color: var(--light-accent);
}

.bg-teal .steps-grid::before {
    background: linear-gradient(90deg, #1A5F7A 0%, rgba(26,95,122,0.4) 50%, var(--coral) 100%);
}

.bg-teal .feature-card {
    background: var(--white);
    border-color: var(--light-border);
}

    .bg-teal .feature-card:hover {
        border-color: var(--light-accent);
    }

    .bg-teal .feature-card h3 {
        color: #0F2A38;
    }

    .bg-teal .feature-card p {
        color: var(--light-accent);
    }

.bg-teal .testimonial-card {
    background: var(--white);
    border-color: var(--light-border);
}

.bg-teal .testimonial-text {
    color: #0F2A38;
}

.bg-teal .author-name {
    color: #0F2A38;
}

.bg-teal .author-role {
    color: var(--light-accent);
}

.bg-teal .pricing-card {
    background: var(--white);
    border-color: var(--light-border);
}

    .bg-teal .pricing-card.featured {
        border-color: var(--light-accent);
        box-shadow: 0 0 0 3px rgba(78,205,196,0.25) !important;
    }

.bg-teal .pricing-badge {
    background: var(--light-accent);
}

.bg-teal .pricing-tier {
    color: var(--light-accent);
}

.bg-teal .price-currency, .bg-teal .price-amount {
    color: #0F2A38;
}

.bg-teal .price-period {
    color: var(--light-accent);
}

.bg-teal .pricing-desc {
    color: var(--light-accent);
}

.bg-teal .pricing-divider {
    background: rgba(26,95,122,0.15);
}

.bg-teal .pricing-features li {
    color: var(--light-accent);
}

    .bg-teal .pricing-features li::before {
        background: rgba(26,95,122,0.12);
        color: var(--light-accent);
    }

.bg-teal .btn-plan-outline {
    color: #0F2A38;
    background: rgba(255,255,255,0.4);
    border-color: rgba(26,95,122,0.2);
}

    .bg-teal .btn-plan-outline:hover {
        background: rgba(255,255,255,0.7);
        border-color: var(--light-accent);
    }

.bg-teal .stat-value {
    color: var(--light-accent);
}

    .bg-teal .stat-value span {
        color: #38b2aa;
    }

.bg-teal .stat-desc {
    color: var(--text-muted);
}

.bg-teal .paddle-note {
    color: rgba(26,95,122,0.6);
}


/* ══════════════════════════════════════════════
   HERO — 2 COLUMN
   ══════════════════════════════════════════════ */
.hero {
    padding: 96px 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(78,205,196,0.15) !important;
    border: 1.5px solid rgba(78,205,196,0.5) !important;
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #5EDDD4 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Headline */
.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

    .hero h1 .line-muted {
        color: rgba(255,255,255,0.45);
        font-weight: 700;
    }

    .hero h1 .line-accent {
        color: var(--teal);
    }

/* Content unchanged pill */
.hero-content-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(78,205,196,0.08);
    border: 1px solid rgba(78,205,196,0.25);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    line-height: 1.4;
}

    .hero-content-pill i {
        color: var(--teal);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .hero-content-pill strong {
        color: var(--white);
        font-weight: 600;
    }

/* Desc */
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

/* Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
}

    .trust-avatar:first-child {
        margin-left: 0;
        background: #38b2aa;
    }

    .trust-avatar:nth-child(2) {
        background: var(--teal);
        color: #0F2A38;
    }

    .trust-avatar:nth-child(3) {
        background: var(--blue);
    }

    .trust-avatar:nth-child(4) {
        background: var(--coral);
    }

.trust-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

    .trust-text strong {
        color: var(--white);
        font-weight: 600;
    }

/* ── Browser Mockup ── */
.hero-visual {
    position: relative;
}

.browser-mockup {
    background: #1a3248;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.browser-bar {
    background: #0f2233;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .browser-dot:nth-child(1) {
        background: #FF5F57;
    }

    .browser-dot:nth-child(2) {
        background: #FFBD2E;
    }

    .browser-dot:nth-child(3) {
        background: #28CA42;
    }

.browser-url {
    flex: 1;
    background: #1a3248;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.comparison-wrap {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.site-old, .site-new {
    position: absolute;
    inset: 0;
    padding: 20px;
}

.site-old {
    background: #F0F0F0;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.05s linear;
}

.site-new {
    background: linear-gradient(135deg, var(--blue) 0%, #0f3a4a 100%);
}

.comparison-label {
    position: absolute;
    bottom: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 10;
}

.label-before {
    left: 12px;
    background: rgba(0,0,0,0.5);
    color: #ccc;
}

.label-after {
    right: 12px;
    background: var(--coral);
    color: var(--white);
}

.divider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--white);
    z-index: 5;
}

.divider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--blue);
    font-weight: 700;
}

.old-header {
    background: #888;
    height: 36px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.old-line {
    background: #BBB;
    height: 8px;
    border-radius: 2px;
    margin-bottom: 6px;
}

    .old-line.short {
        width: 60%;
    }

.new-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.new-logo-placeholder {
    width: 80px;
    height: 20px;
    background: rgba(78,205,196,0.6);
    border-radius: 4px;
}

.new-nav-items {
    display: flex;
    gap: 8px;
}

.new-nav-item {
    width: 40px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

.new-headline {
    height: 24px;
    background: rgba(255,255,255,0.9);
    border-radius: 4px;
    margin-bottom: 8px;
    width: 80%;
}

.new-subline {
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    margin-bottom: 6px;
}

    .new-subline.short {
        width: 60%;
    }

.new-cta {
    width: 100px;
    height: 28px;
    background: var(--coral);
    border-radius: 6px;
    margin-top: 14px;
}

.new-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
}

.new-card {
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Floating badges */
.hero-floating-badge {
    position: absolute;
    top: -16px;
    right: -20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: rgba(78,205,196,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hero-floating-stat {
    position: absolute;
    bottom: -16px;
    left: -20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}


/* ══════════════════════════════════════════════
   USE CASES SECTION
   Directly below the Hero — seamless continuation
   ══════════════════════════════════════════════ */
.usecases-section {
    padding: 72px 5% 80px;
}

.usecases-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.usecases-header {
    text-align: center;
    margin-bottom: 40px;
}

.usecases-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F2A38;
    margin-bottom: 10px;
}

.usecases-sublabel {
    font-size: 1rem;
    color: var(--light-accent);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

.usecases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Base card */
.usecase-card {
    border-radius: 16px;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
}

    .usecase-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

    /* Modernize card — teal */
    .usecase-card.uc-modernize {
        background: rgba(78,205,196,0.07);
        border: 1.5px solid rgba(78,205,196,0.22);
    }

        .usecase-card.uc-modernize::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--teal), transparent);
        }

    /* Redesign card — coral */
    .usecase-card.uc-redesign {
        background: rgba(255,107,107,0.07);
        border: 1.5px solid rgba(255,107,107,0.22);
    }

        .usecase-card.uc-redesign::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--coral), transparent);
        }

/* Card icon */
.uc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.uc-modernize .uc-icon {
    background: rgba(78,205,196,0.15);
    color: var(--teal);
}

.uc-redesign .uc-icon {
    background: rgba(255,107,107,0.15);
    color: #ff9090;
}

/* Card header row */
.uc-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.uc-title-group {
    flex: 1;
}

/* Scenario label */
.uc-scenario {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.uc-modernize .uc-scenario {
    color: var(--teal);
}

.uc-redesign .uc-scenario {
    color: #ff9090;
}

/* Card title */
.uc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 0;
}

/* Card description */
.uc-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Bullets */
.uc-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .uc-bullets li {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.7);
        display: flex;
        align-items: flex-start;
        gap: 9px;
    }

.uc-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
}

.uc-modernize .uc-check {
    background: rgba(78,205,196,0.2);
    color: var(--teal);
}

.uc-redesign .uc-check {
    background: rgba(255,107,107,0.2);
    color: #ff9090;
}

/* Bottom note — same pipeline */
.usecases-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

    .usecases-footer::before,
    .usecases-footer::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255,255,255,0.08);
    }

.usecases-footer-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

    .usecases-footer-inner i {
        color: var(--teal);
        font-size: 0.9rem;
    }


/* bg-teal use cases overrides */
.bg-teal .usecases-label {
    color: #0F2A38;
}

.bg-teal .usecases-sublabel {
    color: var(--light-accent);
}

.bg-teal .usecase-card.uc-modernize {
    background: rgba(78,205,196,0.08);
    border-color: rgba(78,205,196,0.35);
}

.bg-teal .usecase-card.uc-redesign {
    background: rgba(255,107,107,0.07);
    border-color: rgba(255,107,107,0.28);
}

.bg-teal .uc-title {
    color: #0F2A38;
}

.bg-teal .uc-desc {
    color: var(--light-accent);
}

.bg-teal .uc-bullets li {
    color: #1A3D4F;
}

.bg-teal .uc-modernize .uc-scenario {
    color: #2aada4;
}

.bg-teal .uc-redesign .uc-scenario {
    color: var(--coral-dark);
}

.bg-teal .uc-modernize .uc-icon {
    background: rgba(78,205,196,0.15);
    color: #2aada4;
}

.bg-teal .uc-redesign .uc-icon {
    background: rgba(255,107,107,0.12);
    color: var(--coral-dark);
}

.bg-teal .uc-modernize .uc-check {
    background: rgba(78,205,196,0.18);
    color: #2aada4;
}

.bg-teal .uc-redesign .uc-check {
    background: rgba(255,107,107,0.15);
    color: var(--coral-dark);
}

.bg-teal .uc-modernize::after {
    background: linear-gradient(90deg, #2aada4, transparent);
}

.bg-teal .uc-redesign::after {
    background: linear-gradient(90deg, var(--coral-dark), transparent);
}

.bg-teal .usecases-footer {
    color: rgba(26,95,122,0.45);
}

    .bg-teal .usecases-footer::before,
    .bg-teal .usecases-footer::after {
        background: rgba(26,95,122,0.12);
    }

.bg-teal .usecases-footer-inner i {
    color: var(--light-accent);
}


/* ══════════════════════════════════════════════
   LOGOS BAR
   ══════════════════════════════════════════════ */
.logos-section {
    padding: 28px 5%;
    border-top: 2px solid rgba(78,205,196,0.3);
    border-bottom: 1px solid var(--border);
    background: #0f2233;
}

.logos-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.logos-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-pill {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-muted);
    opacity: 0.5;
}


/* ══════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ══════════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}

    .steps-grid::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 16.6%;
        right: 16.6%;
        height: 2px;
        background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 50%, var(--coral) 100%);
        z-index: 0;
    }

.step {
    text-align: center;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 auto 24px;
    border: 2px solid var(--border);
    background: var(--card);
    position: relative;
}

.step:nth-child(1) .step-number {
    background: rgba(78,205,196,0.1);
    border-color: var(--teal);
    color: var(--teal);
}

.step:nth-child(2) .step-number {
    background: rgba(26,95,122,0.1);
    border-color: var(--blue);
    color: var(--blue);
}

.step:nth-child(3) .step-number {
    background: rgba(255,107,107,0.1);
    border-color: var(--coral);
    color: var(--coral);
}

.step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.step p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ══════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.25s;
}

    .feature-card:hover {
        border-color: var(--teal) !important;
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.feature-card:nth-child(odd) .feature-icon {
    background: rgba(78,205,196,0.14);
    color: #2aada4;
}

.feature-card:nth-child(even) .feature-icon {
    background: rgba(26,95,122,0.10);
    color: var(--blue);
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ══════════════════════════════════════════════
   AUDIENCE CARDS — 4 column
   ══════════════════════════════════════════════ */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.audience-card {
    border-radius: 20px;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s;
}

    .audience-card:hover {
        transform: translateY(-4px);
    }

    .audience-card:nth-child(1) {
        background: linear-gradient(135deg, #0f3a4a 0%, var(--blue) 100%);
    }

    .audience-card:nth-child(2) {
        background: #1a3248;
        border: 1.5px solid rgba(78,170,203,0.2);
    }

    .audience-card:nth-child(3) {
        background: linear-gradient(135deg, #1a2a4a 0%, #2d4e8a 100%);
    }

    .audience-card:nth-child(4) {
        background: linear-gradient(135deg, #5a1f1f 0%, var(--coral) 100%);
    }

.audience-emoji {
    font-size: 1.8rem;
    margin-bottom: 16px;
    display: block;
}

.audience-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.audience-card:nth-child(2) h3 {
    color: var(--text);
}

.audience-desc {
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.75);
}

.audience-card:nth-child(2) .audience-desc {
    color: var(--text-muted);
}

.audience-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .audience-bullets li {
        font-size: 0.82rem;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        color: rgba(255,255,255,0.8);
    }

.audience-card:nth-child(2) .audience-bullets li {
    color: var(--text-muted);
}

.bullet-check {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
}

.audience-card:nth-child(1) .bullet-check {
    background: rgba(78,205,196,0.25);
    color: var(--teal);
}

.audience-card:nth-child(2) .bullet-check {
    background: rgba(26,95,122,0.15);
    color: var(--blue);
}

.audience-card:nth-child(3) .bullet-check {
    background: rgba(78,130,203,0.3);
    color: #90b8e0;
}

.audience-card:nth-child(4) .bullet-check {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}


/* ══════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════ */
.stats-section {
    padding: 80px 5%;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

    .stat-value span {
        color: var(--teal);
    }

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

.bg-teal .stat-value {
    color: var(--light-accent);
}

    .bg-teal .stat-value span {
        color: #38b2aa;
    }

.bg-teal .stat-desc {
    color: var(--text-muted);
}


/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.pricing-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.25s;
    position: relative;
}

    .pricing-card.featured {
        border-color: var(--teal) !important;
        box-shadow: 0 0 0 3px rgba(78,205,196,0.15);
    }

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal) !important;
    color: #0F2A38 !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 4px;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.55;
    min-height: 56px;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

    .pricing-features li {
        font-size: 0.88rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .pricing-features li::before {
            content: '✓';
            width: 18px;
            height: 18px;
            background: rgba(78,205,196,0.15) !important;
            color: #2aada4 !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            flex-shrink: 0;
        }

.paddle-note {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}

.testimonial-stars {
    color: var(--teal);
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
}

.author-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* ══════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════ */
.cta-section {
    padding: 96px 5%;
    background: #0f2233;
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

    .cta-inner .section-title {
        margin-bottom: 16px;
        color: var(--white);
    }

    .cta-inner .section-desc {
        max-width: 100%;
        margin: 0 auto 36px;
        color: rgba(255,255,255,0.65);
    }

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}


/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
    background: #070f17;
    color: rgba(255,255,255,0.6);
    padding: 64px 5% 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .wz-logo { /* dark footer → white logo */
    height: 46px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col ul a {
        color: rgba(255,255,255,0.55);
        text-decoration: none;
        font-size: 0.88rem;
        transition: color 0.2s;
    }

        .footer-col ul a:hover {
            color: var(--teal);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a {
        color: rgba(255,255,255,0.45);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-bottom-links a:hover {
            color: var(--teal);
        }


/* ══════════════════════════════════════════════
   AUTH PAGES
   ══════════════════════════════════════════════ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 5%;
    background: radial-gradient(ellipse 55% 50% at 10% 10%, rgba(78,205,196,0.12) 0%, transparent 55%), radial-gradient(ellipse 45% 40% at 90% 90%, rgba(255,107,107,0.08) 0%, transparent 50%), var(--bg);
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.auth-logo { /* dark auth card → white logo */
    display: block;
    height: 46px;
    width: auto;
    margin: 0 auto;
}

.auth-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 8px;
}

.auth-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 7px;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 11px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

    .form-control::placeholder {
        color: var(--text-light);
    }

    .form-control:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(78,205,196,0.12);
    }

    .form-control.error {
        border-color: var(--coral);
    }

.form-error {
    font-size: 0.78rem;
    color: var(--coral);
    margin-top: 5px;
    display: none;
}

    .form-error.visible {
        display: block;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-wrap {
    position: relative;
}

    .input-wrap .form-control {
        padding-right: 42px;
    }

.input-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    transition: color 0.2s;
}

    .input-toggle:hover {
        color: var(--text);
    }

.btn-block {
    display: block;
    width: 100%;
    padding: 13px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-block-coral {
    background: var(--coral);
    color: var(--white);
}

    .btn-block-coral:hover {
        background: var(--coral-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(255,107,107,0.3);
    }

.btn-block-teal {
    background: var(--teal);
    color: #0F2A38;
}

    .btn-block-teal:hover {
        background: var(--teal-dark);
        transform: translateY(-1px);
    }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
}

    .auth-divider span {
        font-size: 0.8rem;
        color: var(--text-light);
        white-space: nowrap;
    }

    .auth-divider::before, .auth-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.auth-link {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 24px;
}

    .auth-link a {
        color: var(--teal);
        font-weight: 600;
        text-decoration: none;
    }

        .auth-link a:hover {
            text-decoration: underline;
        }

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

    .checkbox-row input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: var(--teal);
        flex-shrink: 0;
        margin-top: 2px;
        cursor: pointer;
    }

    .checkbox-row label {
        font-size: 0.85rem;
        color: var(--text-muted);
        cursor: pointer;
        line-height: 1.5;
    }

        .checkbox-row label a {
            color: var(--teal);
            text-decoration: none;
        }

.btn-social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin-bottom: 10px;
}

    .btn-social:hover {
        background: rgba(255,255,255,0.1);
    }


/* ══════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════ */
.text-teal {
    color: var(--teal)
}

.text-coral {
    color: var(--coral)
}

.text-blue {
    color: var(--blue)
}

.text-muted {
    color: var(--text-muted)
}

.text-white {
    color: var(--white)
}

.text-center {
    text-align: center
}

.fw-600 {
    font-weight: 600
}

.fw-700 {
    font-weight: 700
}

.fw-800 {
    font-weight: 800
}

.mt-8 {
    margin-top: 8px
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mt-32 {
    margin-top: 32px
}

.mb-8 {
    margin-bottom: 8px
}

.mb-16 {
    margin-bottom: 16px
}

.mb-24 {
    margin-bottom: 24px
}

.mb-32 {
    margin-bottom: 32px
}

.flex {
    display: flex
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.gap-8 {
    gap: 8px
}

.gap-12 {
    gap: 12px
}

.gap-16 {
    gap: 16px
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0
}

.alert {
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px
}

.alert-info {
    background: rgba(78,170,203,0.1);
    border: 1px solid rgba(78,170,203,0.25);
    color: var(--blue-light)
}

.alert-success {
    background: rgba(78,205,196,0.1);
    border: 1px solid rgba(78,205,196,0.25);
    color: var(--teal)
}

.alert-warning {
    background: rgba(255,189,46,0.1);
    border: 1px solid rgba(255,189,46,0.25);
    color: #FFBD2E
}

.alert-error {
    background: rgba(255,107,107,0.1);
    border: 1px solid rgba(255,107,107,0.25);
    color: var(--coral)
}


/* ══════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-in-delay-1 {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.animate-in-delay-2 {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.animate-in-delay-3 {
    animation: fadeInUp 0.6s ease 0.3s both;
}

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0.5
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}


/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
    section {
        padding: 72px 5%;
    }

    .nav-links {
        display: none;
    }

    .nav-ctas .btn-ghost, .nav-ctas .btn-primary {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-inner {
        height: 60px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 5% 48px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-floating-badge, .hero-floating-stat {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-hero, .btn-hero-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .usecases-section {
        padding: 0 5% 64px;
    }

    .usecases-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

        .steps-grid::before {
            display: none;
        }

    .step {
        padding: 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .app-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .app-content {
        padding: 24px 20px;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤600px)
   ══════════════════════════════════════════════ */
@media (max-width: 600px) {
    section {
        padding: 56px 4%;
    }

    .nav-inner {
        padding: 0 4%;
        height: 60px;
    }

    .hero {
        padding: 44px 4% 40px;
        gap: 32px;
    }

        .hero h1 {
            font-size: 1.85rem;
        }

    .hero-desc {
        font-size: 0.95rem;
    }

    .usecases-section {
        padding: 0 4% 56px;
    }

    .usecase-card {
        padding: 22px 20px 26px;
    }

    .comparison-wrap {
        height: 240px;
    }

    .logos-inner {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logos-label {
        width: 100%;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .pricing-card {
        padding: 24px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    footer {
        padding: 48px 4% 28px;
    }

    .auth-card {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .app-content {
        padding: 16px;
    }

    .app-topbar {
        padding: 0 16px;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }
}



/* ── Ana bar ─────────────────────────────────────────────────── */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(12, 27, 38, 0.97);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 24px;
    animation: slideUpBar 0.35s ease;
}

@keyframes slideUpBar {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-bar-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-link {
    color: var(--teal);
    text-decoration: none;
    margin-left: 4px;
}

    .cookie-link:hover {
        text-decoration: underline;
    }

.cookie-bar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ── Butonlar ────────────────────────────────────────────────── */
.cookie-btn-manage {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 7px 16px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

    .cookie-btn-manage:hover {
        border-color: var(--teal);
        color: var(--text);
    }

.cookie-btn-accept {
    background: var(--teal);
    border: none;
    color: #0C1B26;
    padding: 7px 18px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

    .cookie-btn-accept:hover {
        background: var(--teal-dark);
    }

/* ── Tercihler paneli ────────────────────────────────────────── */
.cookie-panel {
    position: fixed;
    inset: 0;
    z-index: 9100;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 16px 16px;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

    .cookie-panel[hidden] {
        display: none;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cookie-panel-inner {
    background: #142130;
    border: 1px solid var(--border);
    border-radius: 16px 16px 12px 12px;
    width: 100%;
    max-width: 520px;
    padding: 28px;
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(24px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cookie-panel-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.cookie-panel-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.15s;
}

    .cookie-panel-close:hover {
        color: var(--text);
    }

.cookie-panel-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ── Category rows ──────────────────────────────────────────── */
.cookie-category {
    border-top: 1px solid var(--border-light);
    padding: 16px 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-category-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.cookie-category-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* "Always on" badge */
.cookie-toggle-locked {
    flex-shrink: 0;
}

.cookie-toggle-label {
    font-size: 0.72rem;
    color: var(--teal);
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.25);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Toggle switch */
.cookie-toggle-switch {
    flex-shrink: 0;
    cursor: pointer;
}

    .cookie-toggle-switch input {
        display: none;
    }

.cookie-toggle-track {
    display: block;
    width: 40px;
    height: 22px;
    background: rgba(255,255,255,0.1);
    border-radius: 11px;
    position: relative;
    transition: background 0.2s;
}

    .cookie-toggle-track::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 16px;
        height: 16px;
        background: var(--text-muted);
        border-radius: 50%;
        transition: transform 0.2s, background 0.2s;
    }

.cookie-toggle-switch input:checked + .cookie-toggle-track {
    background: var(--teal);
}

    .cookie-toggle-switch input:checked + .cookie-toggle-track::after {
        transform: translateX(18px);
        background: #0C1B26;
    }

/* ── Panel footer ────────────────────────────────────────────── */
.cookie-panel-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

/* ── Mobil ───────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .cookie-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cookie-bar-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
