/* ═══════════════════════════════════════════════════════
   MURAX.WEB — site.css  (marketing site design system)
═══════════════════════════════════════════════════════ */

:root {
    --navy: #0a0f1e;
    --navy2: #0f172a;
    --navy3: #1e293b;
    --blue: #2563eb;
    --blue2: #1d4ed8;
    --blue3: #3b82f6;
    --cyan: #06b6d4;
    --light: #f8fafc;
    --light2: #f1f5f9;
    --light3: #e2e8f0;
    --text: #0f172a;
    --muted: #64748b;
    --white: #ffffff;
    --r: 14px;
    --r2: 20px;
    --r3: 999px;
    --sh: 0 4px 24px rgba(0,0,0,.08);
    --sh2: 0 16px 48px rgba(0,0,0,.14);
    --tr: all .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    line-height: 1.15;
    letter-spacing: -.03em;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--navy2);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 99px;
}

/* ── NAV ─────────────────────────────────────────────── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,15,30,.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: var(--tr);
}

    #nav.scrolled {
        background: rgba(10,15,30,.97);
        box-shadow: 0 4px 32px rgba(0,0,0,.3);
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue), #7c3aed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(37,99,235,.4);
}

.nav-logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.04em;
}

    .nav-logo-text span {
        color: #60a5fa;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

    .nav-links a {
        font-size: .875rem;
        font-weight: 500;
        color: rgba(255,255,255,.65);
        padding: 6px 14px;
        border-radius: 8px;
        transition: var(--tr);
    }

        .nav-links a:hover {
            color: #fff;
            background: rgba(255,255,255,.07);
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

    .nav-burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: rgba(255,255,255,.8);
        border-radius: 99px;
        transition: var(--tr);
    }

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    background: rgba(10,15,30,.97);
}

    .nav-mobile.open {
        display: flex;
    }

    .nav-mobile a {
        color: rgba(255,255,255,.7);
        font-size: .9rem;
        font-weight: 500;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,.05);
        transition: var(--tr);
    }

        .nav-mobile a:hover {
            color: #fff;
        }

    .nav-mobile .btn-primary {
        margin-top: 12px;
        justify-content: center;
    }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    border-radius: var(--r);
    transition: var(--tr);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,.7);
    padding: 8px 16px;
    font-size: .875rem;
    border: 1px solid rgba(255,255,255,.15);
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.08);
        color: #fff;
        border-color: rgba(255,255,255,.3);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    padding: 10px 22px;
    font-size: .875rem;
    box-shadow: 0 4px 16px rgba(37,99,235,.35);
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(37,99,235,.45);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

.btn-primary-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--r2);
    box-shadow: 0 6px 24px rgba(37,99,235,.4);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.25);
    padding: 12px 28px;
    font-size: .95rem;
    border-radius: var(--r2);
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.5);
    }

.btn-white {
    background: #fff;
    color: var(--blue);
    padding: 14px 32px;
    font-size: .95rem;
    border-radius: var(--r2);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,.2);
    }

/* ── HERO ─────────────────────────────────────────────── */
#hero {
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
}

    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
        background-size: 56px 56px;
        pointer-events: none;
    }

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,.25), transparent 70%);
    top: -150px;
    left: -100px;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,.15), transparent 70%);
    bottom: -100px;
    right: 100px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124,58,237,.2), transparent 70%);
    top: 40%;
    right: 15%;
    animation: orbFloat 8s ease-in-out infinite;
    animation-delay: -4s;
}

@@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-40px) scale(1.05);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,.15);
    border: 1px solid rgba(37,99,235,.3);
    border-radius: var(--r3);
    padding: 6px 16px;
    font-size: .78rem;
    font-weight: 600;
    color: #93c5fd;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp .6s ease forwards;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse 2s infinite;
}

@@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .6;
        transform: scale(.8);
    }
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    max-width: 700px;
    margin-bottom: 24px;
    animation: fadeUp .7s ease .1s both;
}

    .hero-title .accent, .section-title .accent {
        background: linear-gradient(135deg, #60a5fa, var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.55);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeUp .7s ease .2s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 64px;
    animation: fadeUp .7s ease .3s both;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    animation: fadeUp .7s ease .4s both;
}

.hero-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.03em;
}

.hero-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    font-weight: 500;
    margin-top: 2px;
}

/* Dashboard mockup */
.hero-visual {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    animation: fadeUp .8s ease .3s both;
}

.dashboard-mock {
    background: rgba(22,29,46,.9);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r2);
    padding: 20px;
    box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
}

.mock-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mock-dots {
    display: flex;
    gap: 6px;
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .mock-dot:nth-child(1) {
        background: #ef4444
    }

    .mock-dot:nth-child(2) {
        background: #f59e0b
    }

    .mock-dot:nth-child(3) {
        background: #10b981
    }

.mock-title {
    font-size: .72rem;
    color: rgba(255,255,255,.3);
    font-weight: 500;
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.mock-stat {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    padding: 12px;
}

.mock-stat-val {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.mock-stat-lbl {
    font-size: .65rem;
    color: rgba(255,255,255,.35);
    margin-top: 2px;
}

.mock-chart {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
}

.mock-chart-title {
    font-size: .7rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 12px;
}

.mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.mock-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(37,99,235,.4);
}

    .mock-bar.active {
        background: linear-gradient(180deg, var(--cyan), var(--blue));
    }

.mock-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: rgba(255,255,255,.03);
    border-radius: 8px;
}

.mock-row-name {
    font-size: .7rem;
    color: rgba(255,255,255,.5);
}

.mock-row-badge {
    font-size: .6rem;
    padding: 2px 8px;
    border-radius: 99px;
    font-weight: 600;
}

.badge-green {
    background: rgba(16,185,129,.15);
    color: #6ee7b7;
}

.badge-blue {
    background: rgba(37,99,235,.15);
    color: #93c5fd;
}

.badge-yellow {
    background: rgba(245,158,11,.15);
    color: #fde68a;
}

@@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── TRUSTED BY ──────────────────────────────────────── */
#trusted {
    background: var(--light2);
    padding: 40px 0;
    border-bottom: 1px solid var(--light3);
}

.trusted-label {
    text-align: center;
    font-size: .75rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.trusted-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light3);
    opacity: .5;
    transition: var(--tr);
    letter-spacing: -.02em;
}

    .trusted-logo:hover {
        opacity: .8;
    }

/* ── SECTIONS ────────────────────────────────────────── */
.section {
    padding: 96px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

    .section-label::before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: var(--blue);
        border-radius: 99px;
    }

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
}

/* ── FEATURES ────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 56px;
}

.feature-card {
    background: var(--light);
    border: 1px solid var(--light3);
    border-radius: var(--r2);
    padding: 28px;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), var(--cyan));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .feature-card:hover {
        border-color: rgba(37,99,235,.2);
        box-shadow: var(--sh2);
        transform: translateY(-4px);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.fi-blue {
    background: #eff6ff
}

.fi-green {
    background: #ecfdf5
}

.fi-purple {
    background: #f5f3ff
}

.fi-cyan {
    background: #ecfeff
}

.fi-orange {
    background: #fff7ed
}

.fi-red {
    background: #fef2f2
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-desc {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── HOW IT WORKS ────────────────────────────────────── */
#how {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

    #how::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
        background-size: 56px 56px;
        pointer-events: none;
    }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    margin-top: 56px;
    background: rgba(255,255,255,.05);
    border-radius: var(--r2);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
}

.step-item {
    background: rgba(15,23,42,.8);
    padding: 36px 28px;
    transition: var(--tr);
}

    .step-item:hover {
        background: rgba(37,99,235,.08);
    }

.step-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(37,99,235,.2);
    line-height: 1;
    margin-bottom: 20px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-desc {
    font-size: .875rem;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
}

/* ── PRICING ─────────────────────────────────────────── */
#pricing {
    background: var(--light2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 56px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--light3);
    border-radius: var(--r2);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: var(--tr);
    position: relative;
}

    .price-card:hover {
        box-shadow: var(--sh2);
        transform: translateY(-4px);
    }

    .price-card.popular {
        border: 2px solid var(--blue);
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(37,99,235,.2);
    }

        .price-card.popular:hover {
            transform: translateY(-12px);
        }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--r3);
    white-space: nowrap;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.price-plan-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.price-plan-sub {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 4px;
}

    .price-amount span {
        font-size: 1.2rem;
        vertical-align: super;
    }

    .price-amount small {
        font-size: 1rem;
        color: var(--muted);
        font-family: 'DM Sans', sans-serif;
        font-weight: 400;
    }

.price-period {
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: 24px;
}

.price-divider {
    height: 1px;
    background: var(--light3);
    margin-bottom: 20px;
}

.price-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.price-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.4;
}

.price-feature-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .6rem;
    margin-top: 1px;
}

.price-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: var(--r);
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    font-size: .875rem;
    border: none;
    cursor: pointer;
    transition: var(--tr);
    text-decoration: none;
}

.price-btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,99,235,.3);
}

    .price-btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(37,99,235,.4);
    }

.price-btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid rgba(37,99,235,.25);
}

    .price-btn-outline:hover {
        background: rgba(37,99,235,.06);
        border-color: var(--blue);
    }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 56px;
}

.testi-card {
    background: var(--light);
    border: 1px solid var(--light3);
    border-radius: var(--r2);
    padding: 28px;
    transition: var(--tr);
}

    .testi-card:hover {
        box-shadow: var(--sh2);
        transform: translateY(-3px);
    }

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testi-star {
    color: #f59e0b;
    font-size: .9rem;
}

.testi-text {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: .875rem;
}

.testi-role {
    font-size: .75rem;
    color: var(--muted);
}

/* ── FAQ ─────────────────────────────────────────────── */
#faq {
    background: var(--light2);
}

.faq-list {
    max-width: 720px;
    margin: 56px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--light3);
    border-radius: var(--r);
    overflow: hidden;
    transition: var(--tr);
}

    .faq-item:hover {
        border-color: rgba(37,99,235,.2);
    }

    .faq-item.open {
        border-color: rgba(37,99,235,.3);
        box-shadow: 0 4px 16px rgba(37,99,235,.08);
    }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.faq-q-text {
    font-weight: 600;
    font-size: .95rem;
    color: var(--text);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--tr);
    font-size: 1rem;
    color: var(--blue);
    font-weight: 700;
}

.faq-item.open .faq-icon {
    background: var(--blue);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── BLOG ─────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 56px;
}

.blog-card {
    border: 1px solid var(--light3);
    border-radius: var(--r2);
    overflow: hidden;
    transition: var(--tr);
    background: var(--white);
    display: block;
}

    .blog-card:hover {
        box-shadow: var(--sh2);
        transform: translateY(-4px);
    }

.blog-thumb {
    height: 180px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.blog-thumb-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-thumb-bg {
    position: absolute;
    inset: 0;
    opacity: .15;
    background-size: 40px 40px;
    background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
}

.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(37,99,235,.9);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 4px 10px;
    border-radius: var(--r3);
}

.blog-body {
    padding: 22px;
}

.blog-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--tr);
}

.blog-card:hover .blog-title {
    color: var(--blue);
}

.blog-excerpt {
    font-size: .825rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .75rem;
    color: var(--muted);
}

.blog-read-more {
    color: var(--blue);
    font-weight: 600;
    font-size: .78rem;
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
    margin-top: 56px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37,99,235,.15);
    border: 1px solid rgba(37,99,235,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;
}

.contact-info-val {
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    font-weight: 500;
}

.contact-form {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--r2);
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-label {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: .6px;
}

.form-input, .form-select, .form-textarea {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    color: rgba(255,255,255,.85);
    font-family: 'DM Sans', sans-serif;
    font-size: .875rem;
    padding: 11px 14px;
    transition: var(--tr);
    outline: none;
    width: 100%;
}

    .form-input::placeholder, .form-textarea::placeholder {
        color: rgba(255,255,255,.2);
    }

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: rgba(37,99,235,.5);
        background: rgba(37,99,235,.08);
        box-shadow: 0 0 0 3px rgba(37,99,235,.12);
    }

    .form-select option {
        background: var(--navy2);
        color: var(--white);
    }

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 13px;
    border-radius: var(--r);
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--tr);
    box-shadow: 0 4px 16px rgba(37,99,235,.35);
}

    .form-submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(37,99,235,.45);
    }

/* ── ALERTS ──────────────────────────────────────────── */
.alert-success {
    background: rgba(16,185,129,.15);
    border: 1px solid rgba(16,185,129,.3);
    color: #34d399;
    padding: 14px 20px;
    border-radius: var(--r);
    margin-bottom: 24px;
    font-size: .875rem;
}

.alert-error {
    background: rgba(239,68,68,.15);
    border: 1px solid rgba(239,68,68,.3);
    color: #f87171;
    padding: 14px 20px;
    border-radius: var(--r);
    margin-bottom: 24px;
    font-size: .875rem;
}

/* ── CTA ─────────────────────────────────────────────── */
#cta {
    background: linear-gradient(135deg, var(--blue), #7c3aed);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    #cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }

    #cta h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        color: #fff;
        margin-bottom: 14px;
    }

    #cta p {
        color: rgba(255,255,255,.7);
        font-size: 1rem;
        margin-bottom: 36px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
    background: #06080f;
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255,255,255,.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand-desc {
    font-size: .85rem;
    color: rgba(255,255,255,.35);
    margin: 16px 0 20px;
    line-height: 1.7;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 8px;
}

.footer-heading {
    font-family: 'Syne', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        font-size: .85rem;
        color: rgba(255,255,255,.35);
        transition: var(--tr);
    }

        .footer-links a:hover {
            color: rgba(255,255,255,.8);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: .78rem;
    color: rgba(255,255,255,.25);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a {
        font-size: .78rem;
        color: rgba(255,255,255,.25);
        transition: var(--tr);
    }

        .footer-bottom-links a:hover {
            color: rgba(255,255,255,.6);
        }

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: rgba(255,255,255,.4);
    transition: var(--tr);
}

    .social-link:hover {
        background: rgba(37,99,235,.2);
        border-color: rgba(37,99,235,.3);
        color: #93c5fd;
    }

/* ── WHATSAPP ────────────────────────────────────────── */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 999;
    transition: var(--tr);
    text-decoration: none;
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 32px rgba(37,211,102,.5);
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
        fill: #fff;
    }

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--navy2);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--tr);
    border: 1px solid rgba(255,255,255,.08);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── RESPONSIVE ──────────────────────────────────────── */
@@media (max-width: 1100px) {
    .hero-visual {
        display: none;
    }

    .hero-title {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-cta .btn-ghost {
        display: none;
    }
}

@@media (max-width: 600px) {
    .features-grid, .pricing-grid, .blog-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    .price-card.popular {
        transform: none;
    }
}



/* ── LEGAL PAGES ─────────────────────────────────────── */
.legal-content {
    max-width: 820px;
}

    .legal-content h2 {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--text);
        margin: 40px 0 14px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--light3);
    }

    .legal-content h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text);
        margin: 24px 0 10px;
    }

    .legal-content p {
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 16px;
        font-size: .95rem;
    }

    .legal-content ul {
        padding-left: 0;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

        .legal-content ul li {
            color: var(--muted);
            line-height: 1.7;
            font-size: .925rem;
            padding-left: 20px;
            position: relative;
        }

            .legal-content ul li::before {
                content: '→';
                position: absolute;
                left: 0;
                color: var(--blue);
                font-size: .8rem;
                top: 2px;
            }

    .legal-content a {
        color: var(--blue);
        text-decoration: underline;
    }

    .legal-content strong {
        color: var(--text);
        font-weight: 600;
    }

    .legal-content code {
        background: var(--light2);
        border: 1px solid var(--light3);
        border-radius: 4px;
        padding: 2px 6px;
        font-size: .82rem;
        color: var(--blue2);
    }

.legal-alert {
    background: rgba(37,99,235,.06);
    border: 1px solid rgba(37,99,235,.2);
    border-radius: var(--r);
    padding: 16px 20px;
    color: #1e40af;
    font-size: .875rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.legal-table-wrap {
    overflow-x: auto;
    margin-bottom: 28px;
    border-radius: var(--r);
    border: 1px solid var(--light3);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}

    .legal-table thead {
        background: var(--light2);
    }

    .legal-table th {
        padding: 12px 16px;
        text-align: left;
        font-weight: 700;
        color: var(--text);
        font-size: .78rem;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .legal-table td {
        padding: 12px 16px;
        color: var(--muted);
        border-top: 1px solid var(--light3);
        vertical-align: top;
    }

    .legal-table tr:hover td {
        background: var(--light);
    }
