/* Landing */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-bg: #eef2ff;
    --accent: #f97316;
    --accent-light: #fed7aa;
    --dark: #0f172a;
    --dark-700: #1e293b;
    --muted: #64748b;
    --muted-light: #94a3b8;
    --surface: #f8fafc;
    --hero-bg: #f6f6f4;
    --hero-bg-alt: #f0f0ee;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,.1);
    --shadow-xl: 0 24px 48px rgba(0,0,0,.12);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--dark); line-height: 1.7; overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar-landing {
    padding: 0;
    height: 72px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid rgba(15, 23, 42, .07);
    transition: height .32s ease, background .32s ease, box-shadow .32s ease, border-color .32s ease;
    z-index: 1040;
}
.navbar-landing .container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}
.navbar-landing .container > a.nav-btn-ghost {
    margin-inline-start: auto;
}
.navbar-landing.scrolled {
    height: 62px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 1px 0 rgba(15, 23, 42, .05), 0 12px 40px -28px rgba(15, 23, 42, .12);
    border-bottom-color: rgba(15, 23, 42, .05);
}

/* Brand */
.navbar-landing .navbar-brand {
    display: flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    flex-shrink: 0;
}
.navbar-landing .navbar-brand:focus-visible {
    outline: 2px solid rgba(29, 29, 31, .35);
    outline-offset: 4px;
    border-radius: 8px;
}
.navbar-landing .brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.navbar-landing .brand-mark img {
    height: 30px;
    width: auto;
    object-fit: contain;
}
.navbar-landing .brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #1d1d1f;
    color: #f5f5f7;
    font-weight: 600;
    font-size: .88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    letter-spacing: -.02em;
}
.navbar-landing .brand-text {
    font-weight: 600;
    font-size: 1.2rem;
    color: #1d1d1f;
    letter-spacing: -.03em;
}

/* Center links */
.nav-pill {
    display: flex;
    align-items: center;
    margin: 0 auto;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    position: relative;
}
.nav-pill .navbar-nav {
    display: flex;
    align-items: center;
    gap: .15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-pill .nav-item { margin: 0; }
.nav-pill .nav-link {
    font-weight: 500;
    color: rgba(15, 23, 42, .55) !important;
    padding: 8px 14px !important;
    font-size: .8125rem;
    letter-spacing: -.01em;
    border-radius: 980px;
    white-space: nowrap;
    text-decoration: none;
    display: block;
    transition: color .18s ease-out, background .18s ease-out;
}
.nav-pill .nav-link:hover {
    color: #1d1d1f !important;
    background: rgba(15, 23, 42, .05);
}
.nav-pill .nav-link:focus-visible {
    outline: 2px solid rgba(29, 29, 31, .25);
    outline-offset: 2px;
}
.nav-pill .nav-link.active {
    color: #1d1d1f !important;
    font-weight: 600;
    background: rgba(15, 23, 42, .07);
    box-shadow: none;
}
.nav-pill .nav-indicator { display: none; }

/* Navbar actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-shrink: 0;
}

/* Nav buttons */
.nav-btn {
    font-weight: 500;
    font-size: .8125rem;
    letter-spacing: -.01em;
    padding: 8px 16px;
    border-radius: 980px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: background .2s ease-out, color .2s ease-out, border-color .2s ease-out, box-shadow .2s ease-out, transform .2s ease-out;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.nav-btn:focus-visible {
    outline: 2px solid rgba(29, 29, 31, .35);
    outline-offset: 3px;
}
.nav-btn-ghost {
    background: transparent;
    color: rgba(15, 23, 42, .55) !important;
    border-color: transparent;
}
.nav-btn-ghost:hover {
    color: #1d1d1f !important;
    background: rgba(15, 23, 42, .05);
}
.nav-btn-primary {
    background: #1d1d1f;
    color: #f5f5f7 !important;
    border-color: #1d1d1f;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .06);
}
@media (hover: hover) and (pointer: fine) {
    .nav-btn-primary:hover {
        background: #000;
        border-color: #000;
        color: #fff !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
        transform: translateY(-1px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .nav-btn-primary { transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
    .nav-btn-primary:hover { transform: none; }
}

/* Buttons */
.btn-cta {
    background: var(--primary); color: #fff !important; font-weight: 600;
    padding: .55rem 1.35rem; border-radius: 10px; border: none;
    font-size: .88rem; text-decoration: none; display: inline-flex;
    align-items: center; gap: .4rem;
    box-shadow: 0 2px 8px rgba(99,102,241,.3);
    transition: all var(--transition);
}
.btn-cta:hover {
    background: var(--primary-dark); transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99,102,241,.4); color: #fff !important;
}
.btn-cta-lg { padding: .85rem 2rem; font-size: 1.05rem; border-radius: 12px; }
.btn-cta-accent {
    background: var(--accent); box-shadow: 0 2px 8px rgba(249,115,22,.3);
}
.btn-cta-accent:hover {
    background: #ea580c; box-shadow: 0 4px 16px rgba(249,115,22,.4);
}
.btn-cta-outline {
    background: transparent; color: var(--primary) !important;
    border: 1.5px solid var(--primary); box-shadow: none;
}
.btn-cta-outline:hover {
    background: var(--primary); color: #fff !important;
    box-shadow: 0 4px 16px rgba(99,102,241,.3);
}
.btn-outline-landing {
    background: #fff; color: var(--dark) !important; font-weight: 600;
    padding: .85rem 2rem; border-radius: 12px;
    border: 2px solid rgba(0,0,0,.1); text-decoration: none;
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: 1.05rem; transition: all var(--transition);
}
.btn-outline-landing:hover {
    border-color: var(--primary); color: var(--primary) !important;
    background: var(--primary-bg);
}

/* Hamburger */
.navbar-landing .navbar-toggler {
    display: none;
    border: 1px solid rgba(15, 23, 42, .1);
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .9);
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease;
    z-index: 1039;
    flex-shrink: 0;
}
.navbar-landing .navbar-toggler:hover {
    background: rgba(15, 23, 42, .04);
    border-color: rgba(15, 23, 42, .14);
}
.navbar-landing .navbar-toggler[aria-expanded="true"] {
    background: rgba(15, 23, 42, .06);
    border-color: rgba(15, 23, 42, .16);
}
.navbar-landing .navbar-toggler:focus-visible {
    outline: 2px solid rgba(29, 29, 31, .3);
    outline-offset: 2px;
}
.navbar-landing .navbar-toggler-icon {
    background-image: none; width: 18px; height: 14px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
}
.navbar-landing .navbar-toggler-icon::before,
.navbar-landing .navbar-toggler-icon::after,
.navbar-landing .hamburger-line {
    content: ''; display: block; width: 18px; height: 2px;
    background: var(--dark); border-radius: 2px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    transform-origin: center;
}
.navbar-landing .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(6px) rotate(45deg);
    background: #1d1d1f;
}
.navbar-landing .navbar-toggler[aria-expanded="true"] .hamburger-line {
    opacity: 0;
    transform: scaleX(0);
}
.navbar-landing .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-6px) rotate(-45deg);
    background: #1d1d1f;
}

/* Desktop */
.navbar-landing .navbar-collapse { display: none !important; }
.mobile-nav-actions { display: none; }

/* Medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-pill .nav-link { padding: 6px 12px !important; font-size: .79rem; }
    .nav-btn { font-size: .79rem; padding: 7px 14px; }
    .navbar-landing .brand-text { font-size: 1.1rem; }
}

@media (max-width: 991px) {
    .navbar-landing { height: 62px; }
    .navbar-landing.scrolled { height: 58px; }
    .navbar-landing.menu-scrolled .navbar-brand {
        display: none !important;
    }

    .nav-pill { display: none !important; }
    .navbar-actions { display: none !important; }

    .navbar-landing .navbar-toggler { display: flex; margin-inline-start: auto; }

    .navbar-landing .navbar-brand { z-index: 1039; }
    .navbar-landing .brand-mark img { height: 26px; }
    .navbar-landing .brand-text { font-size: 1.15rem; }

    .navbar-landing .navbar-collapse {
        display: block !important;
        position: fixed; inset: 0;
        height: 100vh; width: 100%;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 78px 1.25rem 1.5rem;
        overflow-y: auto;
        z-index: 1038;
        visibility: hidden; opacity: 0;
        transform: translateY(-8px);
        transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
        pointer-events: none;
    }
    .navbar-landing .navbar-collapse.show {
        visibility: visible; opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar-collapse .navbar-nav {
        list-style: none; padding: 0; margin: 0 0 1.25rem;
        display: flex; flex-direction: column; gap: 2px;
    }
    .navbar-collapse .nav-link {
        padding: .85rem 1rem !important; font-size: 1.02rem;
        border-radius: 12px; font-weight: 600;
        color: var(--dark) !important;
        display: flex; align-items: center; gap: .65rem;
        transition: background .2s ease, color .2s ease;
    }
    .navbar-collapse .nav-link i {
        font-size: 1rem; color: var(--muted-light);
        width: 22px; text-align: center;
        transition: color .2s ease;
    }
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        background: rgba(15, 23, 42, .06);
        color: #1d1d1f !important;
    }
    .navbar-collapse .nav-link:hover i,
    .navbar-collapse .nav-link.active i {
        color: rgba(15, 23, 42, .55);
    }

    .mobile-nav-actions {
        display: flex; flex-direction: column; gap: .6rem;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(0,0,0,.06);
    }
    .mobile-nav-actions .btn-cta,
    .mobile-nav-actions .btn-cta-outline {
        width: 100%;
        justify-content: center;
        padding: .88rem 1.5rem;
        font-size: .98rem;
        font-weight: 500;
        border-radius: 980px;
    }
    .mobile-nav-actions .btn-cta-outline {
        background: transparent !important;
        color: #1d1d1f !important;
        border: 1px solid rgba(15, 23, 42, .14) !important;
        box-shadow: none !important;
    }
    .mobile-nav-actions .btn-cta-outline:hover {
        background: rgba(15, 23, 42, .05) !important;
        border-color: rgba(15, 23, 42, .22) !important;
        color: #1d1d1f !important;
    }
    .mobile-nav-actions .btn-cta-accent {
        background: #1d1d1f !important;
        color: #f5f5f7 !important;
        border: 1px solid #1d1d1f !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, .1) !important;
    }
    .mobile-nav-actions .btn-cta-accent:hover {
        background: #000 !important;
        border-color: #000 !important;
        color: #fff !important;
    }
    .mobile-nav-actions .lang-switcher { width: 100%; }
    .mobile-nav-actions .lang-switcher .lang-btn {
        width: 100%; justify-content: center;
        padding: .6rem 1rem; border-radius: 12px;
        font-size: .88rem;
    }
    .mobile-nav-actions .lang-switcher .lang-dropdown {
        position: static; width: 100%;
        margin-top: .5rem; border-radius: 12px;
        box-shadow: none; border: 1px solid rgba(0,0,0,.08);
    }
}

/* Hero */
.hero-clean {
    padding: clamp(6rem, 12vw, 8rem) 0 clamp(4rem, 8vw, 5.5rem);
    background: linear-gradient(
        180deg,
        #eee9ff 0%,
        #f0edff 18%,
        #f6f4ff 40%,
        #faf9ff 65%,
        #ffffff 100%
    );
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(99, 102, 241, .08);
}
.hero-clean__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 68% 44% at 85% 8%, rgba(99, 102, 241, .10), transparent 58%),
        radial-gradient(ellipse 44% 38% at 6% 52%, rgba(249, 115, 22, .06), transparent 52%),
        radial-gradient(ellipse 52% 36% at 48% 98%, rgba(15, 23, 42, .03), transparent 55%),
        radial-gradient(circle at 72% 20%, rgba(99, 102, 241, .06), transparent 44%),
        linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, .5) 48%, transparent 56%);
    background-repeat: no-repeat;
}
.hero-clean__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .7;
    background-image:
        linear-gradient(rgba(99, 102, 241, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, .045) 1px, transparent 1px);
    background-size: 52px 52px;
    background-position: center -12px;
    mask-image: radial-gradient(ellipse 85% 70% at 50% 18%, #000 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 18%, #000 0%, transparent 72%);
}
.hero-clean__wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(48px, 7.5vw, 80px);
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-clean__wave svg {
    width: 100%;
    height: 100%;
    display: block;
}
.hero-clean--photo {
    background: var(--dark-700);
    border-bottom: none;
}
.hero-clean--photo .hero-clean__wave { display: none; }
.hero-clean--photo .hero-clean__bg {
    background: linear-gradient(115deg, rgba(15, 23, 42, .92) 0%, rgba(15, 23, 42, .78) 48%, rgba(15, 23, 42, .52) 100%);
}
.hero-clean--photo .hero-clean__grid {
    opacity: .22;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
}
.hero-clean__inner { z-index: 1; }

.hero-copy { max-width: 38rem; }
.text-center .hero-copy {
    margin-left: auto;
    margin-right: auto;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin: 0 0 1.25rem;
}
.text-center .hero-eyebrow {
    justify-content: center;
}
.hero-eyebrow__rule {
    width: 2rem;
    height: 3px;
    border-radius: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.hero-eyebrow__label {
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero-clean--photo .hero-eyebrow__label {
    color: rgba(248, 250, 252, .78);
}
.hero-clean--photo .hero-eyebrow__rule {
    background: var(--accent);
    box-shadow: 0 0 20px rgba(249, 115, 22, .35);
}

/* Headline */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.65rem);
    font-weight: 400;
    font-style: normal;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--dark);
    margin: 0 0 1.25rem;
}
.hero-title .text-gradient {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-clean--photo .hero-title { color: #fff; }
.hero-clean--photo .hero-title .text-gradient {
    background: linear-gradient(135deg, #fff 0%, rgba(199, 210, 254, .95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
    color: var(--muted);
    line-height: 1.62;
    margin: 0 0 2rem;
    max-width: 34rem;
    font-weight: 500;
}
.text-center .hero-lead { margin-left: auto; margin-right: auto; }
.hero-clean--photo .hero-lead { color: rgba(248, 250, 252, .82); }

/* Hero buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.text-center .hero-actions { justify-content: center; }
.hero-actions__cluster {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    padding: .5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(15, 23, 42, .07);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .85) inset, 0 8px 24px -12px rgba(15, 23, 42, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-clean--photo .hero-actions__cluster {
    background: rgba(15, 23, 42, .35);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .08) inset, 0 16px 40px -16px rgba(0, 0, 0, .35);
}

/* Secondary CTA */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .75rem 1.35rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--dark) !important;
    background: transparent;
    border: 1.5px solid rgba(15, 23, 42, .12);
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: rgba(99, 102, 241, .06);
}
.hero-clean--photo .btn-hero-secondary {
    color: rgba(255, 255, 255, .92) !important;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .04);
}
.hero-clean--photo .btn-hero-secondary:hover {
    border-color: #fff;
    color: #fff !important;
    background: rgba(255, 255, 255, .1);
}

.hero-btn-primary:focus-visible,
.hero-btn-secondary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}
.hero-clean--photo .hero-btn-primary:focus-visible {
    outline-color: #fff;
}
.hero-btn-secondary:focus-visible {
    outline-offset: 2px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}
.hero-visual__glow {
    position: absolute;
    width: min(100%, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(249, 115, 22, .12) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}
.hero-clean--photo .hero-visual__glow {
    background: radial-gradient(circle, rgba(249, 115, 22, .18) 0%, transparent 65%);
}
.hero-visual__frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: linear-gradient(150deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .55));
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 28px 56px -14px rgba(15, 23, 42, .14),
        0 12px 24px -10px rgba(15, 23, 42, .1);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s ease;
}
@media (hover: hover) and (pointer: fine) {
    .hero-visual:hover .hero-visual__frame {
        transform: translateY(-4px);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, .9) inset,
            0 36px 64px -16px rgba(15, 23, 42, .18),
            0 16px 32px -12px rgba(15, 23, 42, .12);
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-visual__frame { transition: none; }
    .hero-visual:hover .hero-visual__frame { transform: none; }
}
.hero-visual__frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, .06);
    pointer-events: none;
}
.hero-visual__frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-xl) - 3px);
    vertical-align: middle;
}

.hero-clean--photo .hero-visual__frame {
    background: linear-gradient(150deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .05));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .14),
        0 36px 72px -18px rgba(0, 0, 0, .5);
}
.hero-clean--photo .hero-visual__frame::after {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .1);
}

/* Trust bar */
.trust-bar {
    position: relative;
    padding: clamp(2.5rem, 5vw, 3.25rem) 0;
    background: var(--surface);
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    overflow: hidden;
}
.trust-bar__accent {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 55% 80% at 50% 0%, rgba(99, 102, 241, .06), transparent 55%);
}
.trust-bar__container {
    position: relative;
    z-index: 1;
    text-align: center;
}
.trust-bar__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    flex-wrap: wrap;
    margin: 0 auto 1.5rem;
    max-width: 40rem;
}
.trust-bar__eyebrow-rule {
    width: 1.5rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.trust-bar__eyebrow-text {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 1px;
    max-width: 900px;
    margin: 0 auto;
    padding: 1px;
    border-radius: 18px;
    background: rgba(15, 23, 42, .08);
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .9) inset,
        0 12px 32px -18px rgba(15, 23, 42, .1);
}
.trust-stat {
    text-align: center;
    padding: 1.35rem 1rem 1.5rem;
    background: #fff;
    transition: background .2s ease;
}
@media (hover: hover) and (pointer: fine) {
    .trust-stat:hover {
        background: rgba(255, 255, 255, .98);
    }
}
.trust-stat__value {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.2vw, 2.15rem);
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.02em;
    line-height: 1.1;
    color: var(--dark);
}
.trust-stat__label {
    display: block;
    margin-top: .5rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.35;
}

/* Sections */
section { padding: 5rem 0; }
.section-label {
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--primary); margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800; color: var(--dark); margin-bottom: .75rem;
    letter-spacing: -.02em; line-height: 1.2;
}
.section-subtitle {
    color: var(--muted); font-size: 1.1rem; max-width: 560px;
    margin: 0 auto 3.5rem; line-height: 1.7;
}

/* Features */
.features-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}
.features-section__accent {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 40% at 100% 0%, rgba(249, 115, 22, .05), transparent 55%),
        radial-gradient(ellipse 45% 35% at 0% 100%, rgba(99, 102, 241, .04), transparent 50%);
}
.features-section .container {
    position: relative;
    z-index: 1;
}
.features-section__head {
    max-width: 38rem;
    margin: 0 auto 2.75rem;
}
@media (min-width: 992px) {
    .features-section__head { margin-bottom: 3.25rem; }
}
.features-section__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    flex-wrap: wrap;
    margin: 0 auto 1.1rem;
}
.features-section__eyebrow-rule {
    width: 1.5rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.features-section__eyebrow-text {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.features-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.12;
    color: var(--dark);
    margin: 0 0 .85rem;
}
.features-section__lead {
    margin: 0;
    font-size: clamp(1.02rem, 1.25vw, 1.125rem);
    color: var(--muted);
    line-height: 1.65;
    font-weight: 500;
}
.features-section__grid {
    --bs-gutter-y: 1.25rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.65rem 1.4rem 1.75rem;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: var(--surface);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset;
    transition: border-color .22s ease, box-shadow .28s ease, background .22s ease, transform .28s cubic-bezier(.4, 0, .2, 1);
}
@media (hover: hover) and (pointer: fine) {
    .feature-card:hover {
        background: #fff;
        border-color: rgba(99, 102, 241, .22);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 1) inset,
            0 20px 48px -24px rgba(15, 23, 42, .14);
        transform: translateY(-3px);
    }
    .feature-card:hover .feature-card__icon {
        border-color: rgba(99, 102, 241, .28);
        background: var(--primary-bg);
        color: var(--primary-dark);
    }
}
@media (prefers-reduced-motion: reduce) {
    .feature-card { transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
    .feature-card:hover { transform: none; }
}
.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.05rem;
    flex-shrink: 0;
    color: var(--primary);
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(15, 23, 42, .07);
    transition: border-color .22s ease, background .22s ease, color .22s ease;
}
.feature-card__icon img.landing-feature-img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}
.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: -.015em;
    line-height: 1.28;
    color: var(--dark);
    margin: 0 0 .45rem;
}
.feature-card__desc {
    margin: 0;
    color: var(--muted);
    font-size: .9375rem;
    line-height: 1.65;
}

/* Pricing */
.pricing-section {
    --ps-canvas: #f5f5f7;
    --ps-ink: #1d1d1f;
    --ps-sub: #6e6e73;
    --ps-line: rgba(0, 0, 0, .08);
    --ps-card: #fff;
    position: relative;
    overflow: hidden;
    background: var(--ps-canvas);
    border-bottom: 1px solid var(--ps-line);
}
.pricing-section__canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 45% at 50% -10%, rgba(255, 255, 255, .9), transparent 62%);
}
.pricing-section .container {
    position: relative;
    z-index: 1;
}
.pricing-section__head {
    max-width: 36rem;
    margin: 0 auto 3rem;
}
@media (min-width: 992px) {
    .pricing-section__head { margin-bottom: 3.5rem; }
}
.pricing-section__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    flex-wrap: wrap;
    margin: 0 auto 1rem;
}
.pricing-section__eyebrow-rule {
    width: 1.5rem;
    height: 2px;
    border-radius: 2px;
    background: var(--ps-ink);
    opacity: .35;
    flex-shrink: 0;
}
.pricing-section__eyebrow-text {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ps-sub);
}
.pricing-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -.022em;
    line-height: 1.08;
    color: var(--ps-ink);
    margin: 0 0 .75rem;
}
.pricing-section__lead {
    margin: 0;
    font-size: clamp(1.02rem, 1.2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--ps-sub);
}
.pricing-section__grid {
    --bs-gutter-y: 1.5rem;
}

.pricing-tier {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 2rem 1.65rem 1.85rem;
    background: var(--ps-card);
    border: 1px solid var(--ps-line);
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
    transition: box-shadow .22s ease-out, border-color .22s ease-out, transform .22s ease-out;
}
@media (hover: hover) and (pointer: fine) {
    .pricing-tier:hover {
        box-shadow: 0 12px 40px -20px rgba(0, 0, 0, .12);
        border-color: rgba(0, 0, 0, .1);
    }
}
.pricing-tier--featured {
    border-color: rgba(29, 29, 31, .22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .95) inset,
        0 20px 50px -24px rgba(0, 0, 0, .14);
}
@media (hover: hover) and (pointer: fine) {
    .pricing-tier--featured:hover {
        box-shadow:
            0 1px 0 rgba(255, 255, 255, .95) inset,
            0 26px 56px -22px rgba(0, 0, 0, .18);
        transform: translateY(-2px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .pricing-tier,
    .pricing-tier--featured:hover { transition: box-shadow .2s ease, border-color .2s ease; }
    .pricing-tier--featured:hover { transform: none; }
}
.pricing-tier__tag {
    margin: 0 0 .65rem;
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ps-sub);
}
.pricing-tier__name {
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--ps-ink);
    margin: 0 0 .35rem;
}
.pricing-tier__hint {
    margin: 0 0 1.35rem;
    min-height: 2.6rem;
    font-size: .8125rem;
    line-height: 1.45;
    color: var(--ps-sub);
}
.pricing-tier__price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .15rem .35rem;
    margin-bottom: .35rem;
}
.pricing-tier__amount {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.5vw, 3rem);
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.03em;
    line-height: 1;
    color: var(--ps-ink);
}
.pricing-tier__amount--free {
    font-size: clamp(2rem, 4vw, 2.65rem);
}
.pricing-tier__currency {
    font-size: .55em;
    font-weight: 400;
    opacity: .85;
    margin-right: .06em;
}
.pricing-tier__period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ps-sub);
}
.pricing-tier__yearly {
    margin: 0 0 1.75rem;
    font-size: .8125rem;
    line-height: 1.45;
    color: var(--ps-sub);
}
.pricing-tier__save {
    display: inline-block;
    margin-inline-start: .35rem;
    color: var(--ps-sub);
    opacity: .85;
}
.pricing-tier__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    flex: 1;
    border-top: 1px solid var(--ps-line);
    padding-top: 1.35rem;
}
.pricing-tier__features li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .4rem 0;
    font-size: .875rem;
    line-height: 1.45;
    color: var(--ps-ink);
}
.pricing-tier__check {
    flex-shrink: 0;
    margin-top: .12rem;
    font-size: .95rem;
    color: var(--ps-ink);
    opacity: .55;
}
.pricing-tier__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    padding: .78rem 1.25rem;
    border-radius: 980px;
    font-size: .9375rem;
    font-weight: 500;
    letter-spacing: -.01em;
    text-align: center;
    text-decoration: none;
    color: var(--ps-ink);
    background: transparent;
    border: 1px solid #d2d2d7;
    transition: background .18s ease-out, border-color .18s ease-out, color .18s ease-out, transform .18s ease-out;
}
.pricing-tier__cta:hover {
    background: rgba(0, 0, 0, .04);
    border-color: #b0b0b5;
    color: var(--ps-ink);
}
.pricing-tier__cta:focus-visible {
    outline: 2px solid var(--ps-ink);
    outline-offset: 3px;
}
.pricing-tier--featured .pricing-tier__cta {
    background: var(--ps-ink);
    border-color: var(--ps-ink);
    color: #fff;
}
.pricing-tier--featured .pricing-tier__cta:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* Testimonials */
.testimonials-section {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}
.testimonials-section__accent {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 45% at 50% 0%, rgba(255, 255, 255, .85), transparent 58%);
}
.testimonials-section .container {
    position: relative;
    z-index: 1;
}
.testimonials-section__head {
    max-width: 38rem;
    margin: 0 auto 2.75rem;
}
@media (min-width: 992px) {
    .testimonials-section__head { margin-bottom: 3.25rem; }
}
.testimonials-section__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    flex-wrap: wrap;
    margin: 0 auto 1.1rem;
}
.testimonials-section__eyebrow-rule {
    width: 1.5rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.testimonials-section__eyebrow-text {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.testimonials-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.12;
    color: var(--dark);
    margin: 0 0 .85rem;
}
.testimonials-section__lead {
    margin: 0;
    font-size: clamp(1.02rem, 1.25vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: var(--muted);
}
.testimonials-section__grid {
    --bs-gutter-y: 1.25rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 1.65rem 1.45rem 1.75rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .95) inset;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s cubic-bezier(.4, 0, .2, 1);
}
@media (hover: hover) and (pointer: fine) {
    .testimonial-card:hover {
        border-color: rgba(15, 23, 42, .12);
        box-shadow: 0 18px 44px -26px rgba(15, 23, 42, .14);
        transform: translateY(-2px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .testimonial-card { transition: border-color .2s ease, box-shadow .2s ease; }
    .testimonial-card:hover { transform: none; }
}
.testimonial-card__stars {
    display: flex;
    gap: .15rem;
    margin-bottom: 1.1rem;
    font-size: .82rem;
    color: var(--dark);
    letter-spacing: .02em;
    opacity: .45;
}
.testimonial-card__stars .bi-star { opacity: .3; }
.testimonial-card__stars .bi-star-fill { opacity: 1; color: var(--dark); }
.testimonial-card__quote {
    margin: 0 0 1.35rem;
    padding: 0;
    border: none;
    flex: 1;
}
.testimonial-card__quote p {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -.01em;
    color: var(--dark);
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(15, 23, 42, .07);
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, .06);
    color: var(--dark);
    font-weight: 600;
    font-size: .95rem;
}
.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-card__meta { min-width: 0; }
.testimonial-card__name {
    font-weight: 600;
    margin: 0 0 .15rem;
    font-size: .9rem;
    letter-spacing: -.01em;
    color: var(--dark);
}
.testimonial-card__role {
    display: block;
    font-size: .8125rem;
    color: var(--muted);
    line-height: 1.35;
}

/* How it works */
.hiw-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}
.hiw-section__accent {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 40% at 0% 30%, rgba(99, 102, 241, .04), transparent 55%),
        radial-gradient(ellipse 45% 35% at 100% 70%, rgba(249, 115, 22, .035), transparent 50%);
}
.hiw-section .container {
    position: relative;
    z-index: 1;
}
.hiw-section__head {
    max-width: 38rem;
    margin: 0 auto 2.75rem;
}
@media (min-width: 992px) {
    .hiw-section__head { margin-bottom: 3.25rem; }
}
.hiw-section__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    flex-wrap: wrap;
    margin: 0 auto 1.1rem;
}
.hiw-section__eyebrow-rule {
    width: 1.5rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.hiw-section__eyebrow-text {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.hiw-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.12;
    color: var(--dark);
    margin: 0 0 .85rem;
}
.hiw-section__lead {
    margin: 0;
    font-size: clamp(1.02rem, 1.25vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: var(--muted);
}
.hiw-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
    gap: 1.25rem;
}
@media (min-width: 1200px) {
    .hiw-section__grid { gap: 1.35rem; }
}

.hiw-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.6rem 1.4rem 1.75rem;
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .22s cubic-bezier(.4, 0, .2, 1);
}
@media (hover: hover) and (pointer: fine) {
    .hiw-card:hover {
        background: #fff;
        border-color: rgba(99, 102, 241, .18);
        box-shadow: 0 16px 40px -22px rgba(15, 23, 42, .12);
        transform: translateY(-2px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .hiw-card { transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
    .hiw-card:hover { transform: none; }
}
.hiw-card__step {
    display: block;
    margin-bottom: 1rem;
    font-size: .6875rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: .14em;
    color: var(--muted);
    opacity: .9;
}
.hiw-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--dark);
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(15, 23, 42, .07);
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
@media (hover: hover) and (pointer: fine) {
    .hiw-card:hover .hiw-card__icon {
        border-color: rgba(99, 102, 241, .22);
        background: var(--primary-bg);
        color: var(--primary-dark);
    }
}
.hiw-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: -.015em;
    line-height: 1.3;
    color: var(--dark);
    margin: 0 0 .5rem;
}
.hiw-card__desc {
    margin: 0;
    color: var(--muted);
    font-size: .9375rem;
    line-height: 1.65;
}

/* FAQ */
.faq-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}
.faq-section__accent {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 42% at 100% 0%, rgba(99, 102, 241, .04), transparent 52%),
        radial-gradient(ellipse 40% 32% at 0% 100%, rgba(249, 115, 22, .03), transparent 48%);
}
.faq-section .container {
    position: relative;
    z-index: 1;
}
.faq-section__head {
    max-width: 38rem;
    margin: 0 auto 2.5rem;
}
@media (min-width: 992px) {
    .faq-section__head { margin-bottom: 3rem; }
}
.faq-section__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    flex-wrap: wrap;
    margin: 0 auto 1.1rem;
}
.faq-section__eyebrow-rule {
    width: 1.5rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.faq-section__eyebrow-text {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.faq-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.65rem);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.12;
    color: var(--dark);
    margin: 0 0 .85rem;
}
.faq-section__lead {
    margin: 0;
    font-size: clamp(1.02rem, 1.25vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: var(--muted);
}
.faq-section__wrap {
    max-width: 720px;
    margin: 0 auto;
}
.faq-section__panel {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 20px -8px rgba(15, 23, 42, .08);
}
.faq-item {
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    margin: 0;
    background: transparent;
    transition: background .18s ease-out;
}
.faq-item:last-child { border-bottom: none; }
.faq-item[open] {
    background: rgba(15, 23, 42, .02);
}
.faq-item summary {
    padding: 1.15rem 1.35rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    font-size: .98rem;
    letter-spacing: -.015em;
    line-height: 1.35;
    color: var(--dark);
    transition: color .18s ease-out;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__label { flex: 1; min-width: 0; text-align: start; }
.faq-item__chevron {
    flex-shrink: 0;
    font-size: 1.05rem;
    color: var(--muted);
    opacity: .7;
    transition: transform .22s ease-out, color .18s ease-out, opacity .18s ease-out;
}
.faq-item[open] .faq-item__chevron {
    transform: rotate(180deg);
    color: var(--dark);
    opacity: .9;
}
.faq-item__answer {
    padding: 0 1.35rem 1.2rem 1.35rem;
    margin: 0;
    color: var(--muted);
    font-size: .9375rem;
    line-height: 1.7;
}
@media (min-width: 576px) {
    .faq-item summary { padding: 1.2rem 1.5rem; }
    .faq-item__answer { padding: 0 1.5rem 1.35rem 1.5rem; }
}

/* CTA */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 10vw, 5.75rem) 0;
    background: #1d1d1f;
    color: #f5f5f7;
    border-top: 1px solid rgba(255, 255, 255, .06);
}
.cta-section__scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, transparent 42%, rgba(0, 0, 0, .2) 100%);
}
.cta-section--photo .cta-section__scrim {
    background: linear-gradient(115deg, rgba(29, 29, 31, .9) 0%, rgba(29, 29, 31, .78) 48%, rgba(29, 29, 31, .55) 100%);
}
.cta-section__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 55% 42% at 50% -5%, rgba(255, 255, 255, .07), transparent 58%);
}
.cta-section .container {
    z-index: 1;
}
.cta-section__content {
    max-width: 38rem;
}
.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.08;
    color: #f5f5f7;
    margin: 0 0 1rem;
}
.cta-section__lead {
    margin: 0 0 1.85rem;
    font-size: clamp(1.03rem, 1.25vw, 1.125rem);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, .66);
}
.cta-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .74rem 1.6rem;
    border-radius: 980px;
    font-size: .9375rem;
    font-weight: 500;
    letter-spacing: -.01em;
    text-decoration: none;
    color: #1d1d1f !important;
    background: #f5f5f7;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset, 0 8px 24px -8px rgba(0, 0, 0, .35);
    transition: background .2s ease-out, color .2s ease-out, box-shadow .2s ease-out, transform .2s ease-out;
}
@media (hover: hover) and (pointer: fine) {
    .cta-section__btn:hover {
        background: #fff;
        color: #1d1d1f !important;
        box-shadow: 0 1px 0 rgba(255, 255, 255, .35) inset, 0 12px 32px -10px rgba(0, 0, 0, .4);
        transform: translateY(-1px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .cta-section__btn { transition: background .2s ease, color .2s ease, box-shadow .2s ease; }
    .cta-section__btn:hover { transform: none; }
}
.cta-section__btn:focus-visible {
    outline: 2px solid #f5f5f7;
    outline-offset: 3px;
}
.cta-section__btn .bi {
    font-size: .95rem;
    opacity: .85;
}

/* Footer */
.landing-footer {
    position: relative;
    overflow: hidden;
    background: #1d1d1f;
    color: rgba(255, 255, 255, .55);
    padding: clamp(3.25rem, 6vw, 4.5rem) 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.landing-footer__accent {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 255, 255, .04), transparent 55%);
}
.landing-footer .container {
    z-index: 1;
}
.landing-footer__grid {
    align-items: flex-start;
}
.landing-footer__brand {
    display: inline-block;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -.03em;
    color: #f5f5f7 !important;
    text-decoration: none;
    transition: opacity .2s ease;
}
.landing-footer__brand:hover {
    color: #f5f5f7 !important;
    opacity: .85;
}
.landing-footer__about {
    margin: .85rem 0 1.25rem;
    max-width: 22rem;
    font-size: .875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .5);
}
.landing-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.landing-footer__social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, .55) !important;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    text-decoration: none;
    transition: background .2s ease-out, color .2s ease-out, border-color .2s ease-out, transform .2s ease-out;
}
@media (hover: hover) and (pointer: fine) {
    .landing-footer__social-link:hover {
        background: rgba(255, 255, 255, .12);
        border-color: rgba(255, 255, 255, .14);
        color: #f5f5f7 !important;
        transform: translateY(-1px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .landing-footer__social-link { transition: background .2s ease, color .2s ease, border-color .2s ease; }
    .landing-footer__social-link:hover { transform: none; }
}
.landing-footer__social-link:focus-visible {
    outline: 2px solid #f5f5f7;
    outline-offset: 2px;
}
.landing-footer__heading {
    margin: 0 0 1rem;
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
}
.landing-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
}
.landing-footer__nav a {
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: -.01em;
    color: rgba(255, 255, 255, .62) !important;
    text-decoration: none;
    transition: color .18s ease-out;
}
@media (hover: hover) and (pointer: fine) {
    .landing-footer__nav a:hover {
        color: #f5f5f7 !important;
    }
}
.landing-footer__nav a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .5);
    outline-offset: 3px;
    border-radius: 4px;
}
.landing-footer__contact {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.landing-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin: 0;
    font-size: .875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .62);
    text-decoration: none;
    transition: color .18s ease-out;
}
.landing-footer__contact-item .bi {
    flex-shrink: 0;
    margin-top: .15rem;
    font-size: .95rem;
    opacity: .55;
}
@media (hover: hover) and (pointer: fine) {
    a.landing-footer__contact-item:hover {
        color: #f5f5f7;
    }
}
a.landing-footer__contact-item:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .5);
    outline-offset: 3px;
    border-radius: 4px;
}
.landing-footer__contact-item--static {
    cursor: default;
}
.landing-footer__bottom {
    margin-top: clamp(2.5rem, 5vw, 3.25rem);
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}
@media (min-width: 768px) {
    .landing-footer__bottom { text-align: start; }
}
.landing-footer__legal {
    margin: 0;
    font-size: .8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .38);
}

/* Privacy policy footer */
.privacy-footer {
    background: #1d1d1f;
    color: rgba(255, 255, 255, .45);
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.privacy-footer__inner {
    margin: 0;
    padding: 0;
    text-align: center;
}
.privacy-footer__legal {
    margin: 0;
    font-size: .8125rem;
    line-height: 1.5;
}

/* Alert */
.alert-custom {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: none; border-radius: var(--radius); color: #065f46;
    padding: 1rem 1.5rem;
}
.alert-custom a { font-weight: 700; color: #047857; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-switcher .lang-btn {
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 980px;
    padding: .38rem .8rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .35rem;
    color: rgba(15, 23, 42, .55);
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.lang-switcher .lang-btn:hover {
    border-color: rgba(15, 23, 42, .16);
    color: #1d1d1f;
    background: rgba(15, 23, 42, .04);
}
.lang-switcher .lang-btn:focus-visible {
    outline: 2px solid rgba(29, 29, 31, .25);
    outline-offset: 2px;
}
.lang-switcher .lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: .45rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 14px;
    box-shadow: 0 16px 48px -12px rgba(15, 23, 42, .15);
    min-width: 168px;
    z-index: 1050;
    overflow: hidden;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown form button {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    padding: .55rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: .85rem;
    color: rgba(15, 23, 42, .75);
    font-weight: 500;
    transition: background .15s ease, color .15s ease;
}
.lang-dropdown form button:hover {
    background: rgba(15, 23, 42, .04);
    color: #1d1d1f;
}
.lang-dropdown form button.active {
    color: #1d1d1f;
    font-weight: 600;
    background: rgba(15, 23, 42, .04);
}
.lang-dropdown form button .flag-icon { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; }

/* Utilities */
.chevron-xs { font-size: .6rem; }

/* Scroll-in */
.fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* Background cover */
.bg-cover-center { background-size: cover; background-position: center; }

/* RTL */
[dir="rtl"] .navbar-landing .navbar-collapse { text-align: right; }
[dir="rtl"] .navbar-landing .navbar-brand { margin-right: 0; margin-left: 1.5rem; }
[dir="rtl"] .navbar-actions { margin-inline-start: auto; margin-inline-end: 0; }
[dir="rtl"] .features-section__eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .feature-card { text-align: right; }
[dir="rtl"] .feature-card__icon { align-self: flex-end; }
[dir="rtl"] .pricing-section__eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .pricing-tier__features li { flex-direction: row-reverse; }
[dir="rtl"] .hiw-section__eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .hiw-card { text-align: right; }
[dir="rtl"] .hiw-card__icon { align-self: flex-end; }
[dir="rtl"] .testimonials-section__eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .testimonial-card__author { flex-direction: row-reverse; }
[dir="rtl"] .lang-switcher .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .hero-lead { margin-left: auto; margin-right: 0; }
[dir="rtl"] .text-center .hero-lead { margin-left: auto; margin-right: auto; }
[dir="rtl"] .faq-section__eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .faq-item__label { text-align: end; }
[dir="rtl"] .landing-footer__nav { align-items: flex-end; }
[dir="rtl"] .landing-footer__contact-item { flex-direction: row-reverse; }
[dir="rtl"] .landing-footer__about {
    margin-inline-start: auto;
    margin-inline-end: 0;
    text-align: right;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .hero-clean { padding: 5.25rem 0 3.5rem; }
    .hero-clean__grid {
        -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.12) 45%, transparent 78%);
        mask-image: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.12) 45%, transparent 78%);
    }
    .hero-title { margin-bottom: 1rem; }
    .hero-visual { margin-top: .5rem; }
    section { padding: 3.5rem 0; }
    .pricing-tier--featured:hover { transform: none; }
}
@media (max-width: 575px) {
    .hero-actions { width: 100%; }
    .hero-actions__cluster {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions__cluster .btn-cta-lg,
    .hero-actions__cluster .btn-hero-secondary { width: 100%; justify-content: center; }
    .trust-stats {
        grid-template-columns: 1fr 1fr;
        border-radius: 14px;
    }
    .trust-stat {
        padding: 1.15rem .75rem 1.25rem;
    }
    .trust-stat__value {
        font-size: 1.5rem;
    }
    .trust-bar__eyebrow { margin-bottom: 1.25rem; }
    .features-section__head { margin-bottom: 2rem; }
    .feature-card { padding: 1.35rem 1.15rem 1.45rem; }
    .feature-card__title { font-size: 1.1rem; }
    .pricing-section__head { margin-bottom: 2.25rem; }
    .pricing-tier { padding: 1.65rem 1.35rem 1.65rem; }
    .pricing-tier__hint { min-height: 0; margin-bottom: 1.1rem; }
    .hiw-section__head { margin-bottom: 2rem; }
    .hiw-card { padding: 1.35rem 1.15rem 1.5rem; }
    .hiw-card__title { font-size: 1.08rem; }
    .testimonials-section__head { margin-bottom: 2rem; }
    .testimonial-card { padding: 1.4rem 1.2rem 1.5rem; }
    .testimonial-card__quote p { font-size: 1rem; }
    .faq-section__head { margin-bottom: 2rem; }
    .faq-section__panel { border-radius: 14px; }
    .faq-item summary { padding: 1rem 1.15rem; font-size: .93rem; }
    .faq-item__answer { padding: 0 1.15rem 1.1rem; font-size: .9rem; }
    .cta-section { padding: 3.25rem 0; }
    .cta-section__title { margin-bottom: .85rem; }
    .cta-section__lead { margin-bottom: 1.5rem; }
    .cta-section__btn {
        display: flex;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Privacy policy page */
.privacy-policy-body {
    background: #f5f5f7;
    color: #1d1d1f;
}

.privacy-page {
    padding-top: 72px;
    min-height: 100vh;
}

.privacy-hero {
    padding: clamp(2.75rem, 6vw, 3.75rem) 0 clamp(1.75rem, 4vw, 2.25rem);
    border-bottom: 1px solid rgba(29, 29, 31, .08);
    background: #f5f5f7;
}

.privacy-hero-inner {
    max-width: 38rem;
}

.privacy-hero-eyebrow {
    margin: 0 0 .65rem;
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(29, 29, 31, .45);
}

.privacy-hero h1 {
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: #1d1d1f;
    margin: 0 0 1rem;
}

.privacy-updated {
    margin: 0;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: rgba(29, 29, 31, .48);
    font-weight: 500;
}

.privacy-updated .bi {
    font-size: .95rem;
    opacity: .55;
}

.privacy-content {
    display: grid;
    grid-template-columns: minmax(11.5rem, 15.5rem) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(3.5rem, 6vw, 5rem);
    align-items: start;
}

.privacy-toc {
    position: sticky;
    top: 5.5rem;
    align-self: start;
    padding: 1.15rem 1rem;
    background: #fff;
    border: 1px solid rgba(29, 29, 31, .08);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.privacy-toc__label {
    margin: 0 0 .85rem;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(29, 29, 31, .42);
}

.privacy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-toc ul li {
    margin-bottom: 2px;
}

.privacy-toc ul li a {
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    padding: .4rem .5rem;
    margin-inline: -.25rem;
    border-radius: 8px;
    font-size: .8125rem;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(29, 29, 31, .55);
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}

.privacy-toc__chev {
    flex-shrink: 0;
    margin-top: .2em;
    font-size: .55rem;
    opacity: .45;
    transition: transform .15s ease, opacity .15s ease;
}

.privacy-toc ul li a:hover {
    background: rgba(29, 29, 31, .04);
    color: #1d1d1f;
}

.privacy-toc ul li a:hover .privacy-toc__chev {
    opacity: .7;
}

.privacy-toc ul li a:focus-visible {
    outline: 2px solid rgba(29, 29, 31, .2);
    outline-offset: 2px;
}

.privacy-sections {
    min-width: 0;
    max-width: 40rem;
}

.privacy-section {
    scroll-margin-top: 5.5rem;
    padding: 2rem 0;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(29, 29, 31, .08);
}

.privacy-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.privacy-section:first-of-type {
    padding-top: 0;
}

.privacy-section h2 {
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -.02em;
    color: #1d1d1f;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.privacy-section__body {
    font-size: .9375rem;
    line-height: 1.75;
    color: rgba(29, 29, 31, .62);
}

.privacy-contact-info {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(29, 29, 31, .08);
}

.privacy-contact-info a,
.privacy-contact-info span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    color: #1d1d1f;
    transition: opacity .15s ease;
}

.privacy-contact-info a:hover {
    opacity: .72;
}

.privacy-contact-info a:focus-visible {
    outline: 2px solid rgba(29, 29, 31, .25);
    outline-offset: 3px;
    border-radius: 4px;
}

.privacy-contact-info span {
    color: rgba(29, 29, 31, .55);
}

.privacy-contact-info .bi {
    font-size: 1rem;
    opacity: .45;
}

[dir="rtl"] .privacy-toc__chev {
    transform: scaleX(-1);
}

@media (max-width: 991px) {
    .privacy-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .privacy-toc {
        position: static;
    }

    .privacy-section:first-of-type {
        padding-top: 0.25rem;
    }
}

@media (max-width: 575px) {
    .privacy-hero {
        padding-top: 2.25rem;
    }

    .privacy-section {
        padding: 1.5rem 0;
    }

    .privacy-section h2 {
        font-size: 1rem;
    }

    .privacy-section__body {
        font-size: .9rem;
    }
}

/* Cookie consent */
.cookie-consent {
    position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
    max-width: 480px; z-index: 9999;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.06);
    padding: 1.5rem;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .4s ease;
    pointer-events: none;
}
.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.cookie-consent-header {
    display: flex; align-items: center; gap: .6rem;
    margin-bottom: .75rem;
}
.cookie-consent-header i {
    font-size: 1.3rem; color: var(--primary);
}
.cookie-consent-header h4 {
    font-size: .95rem; font-weight: 700; color: var(--dark); margin: 0;
}
.cookie-consent-text {
    font-size: .82rem; color: var(--muted); line-height: 1.65;
    margin-bottom: 1rem;
}
.cookie-consent-text a {
    color: var(--primary); text-decoration: underline;
    text-underline-offset: 2px; font-weight: 500;
}
.cookie-consent-actions {
    display: flex; gap: .5rem; flex-wrap: wrap;
}
.cookie-consent-actions .cb-btn {
    flex: 1; min-width: 100px;
    padding: .55rem 1rem; border-radius: 10px;
    font-size: .8rem; font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer; text-align: center;
    transition: all .25s ease;
}
.cb-btn-accept {
    background: var(--primary); color: #fff;
    border-color: var(--primary);
}
.cb-btn-accept:hover {
    background: var(--primary-dark); border-color: var(--primary-dark);
}
.cb-btn-reject {
    background: transparent; color: var(--muted);
    border-color: rgba(0,0,0,.12);
}
.cb-btn-reject:hover {
    border-color: var(--dark); color: var(--dark);
}
.cb-btn-customize {
    background: transparent; color: var(--primary);
    border-color: rgba(99,102,241,.2);
}
.cb-btn-customize:hover {
    background: var(--primary-bg); border-color: var(--primary);
}

/* Cookie customize panel */
.cookie-customize-panel {
    display: none; margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,.06);
}
.cookie-customize-panel.show { display: block; }
.cookie-option {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 1rem; padding: .65rem 0;
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.cookie-option:last-child { border-bottom: none; }
.cookie-option-info h5 {
    font-size: .82rem; font-weight: 600; color: var(--dark); margin: 0 0 .15rem;
}
.cookie-option-info p {
    font-size: .75rem; color: var(--muted); margin: 0; line-height: 1.5;
}
.cookie-toggle {
    position: relative; width: 40px; height: 22px;
    flex-shrink: 0; margin-top: 2px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle .slider {
    position: absolute; inset: 0; cursor: pointer;
    background: #d1d5db; border-radius: 22px;
    transition: background .3s ease;
}
.cookie-toggle .slider::before {
    content: ''; position: absolute;
    left: 3px; top: 3px; width: 16px; height: 16px;
    background: #fff; border-radius: 50%;
    transition: transform .3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.cookie-toggle input:checked + .slider { background: var(--primary); }
.cookie-toggle input:checked + .slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .slider {
    background: var(--primary); opacity: .5; cursor: not-allowed;
}
.cookie-toggle input:disabled:checked + .slider::before { transform: translateX(18px); }

.cookie-save-row {
    margin-top: .75rem; text-align: right;
}
.cookie-save-row .cb-btn {
    padding: .5rem 1.25rem; border-radius: 10px;
    font-size: .8rem; font-weight: 600;
    background: var(--primary); color: #fff;
    border: none; cursor: pointer;
    transition: all .25s ease;
}
.cookie-save-row .cb-btn:hover {
    background: var(--primary-dark);
}
[dir="rtl"] .cookie-save-row { text-align: left; }

@media (max-width: 575px) {
    .cookie-consent {
        left: .75rem; right: .75rem; bottom: .75rem;
        padding: 1.25rem; border-radius: var(--radius);
    }
    .cookie-consent-actions { flex-direction: column; }
    .cookie-consent-actions .cb-btn { flex: none; width: 100%; }
}
