*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

a {
    transition: color 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s-8);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
.t-title,
.nav-brand {
    font-family: 'Sora', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.015em;
}

p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 1.05rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), hsl(247, 80%, 78%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.accent-word {
    color: var(--primary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    border-radius: var(--r-lg);
    padding: 14px 28px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Hero — otevřený prostor, pill */
.hero-btns .btn {
    border-radius: var(--r-full);
}

.btn-primary,
.btn-primary * {
    color: var(--white) !important;
}

.btn-primary {
    background: var(--primary);
    box-shadow: 0 4px 12px hsla(247, 72%, 58%, 0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.btn-ghost {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--primary);
    background: var(--bg-subtle);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--s-4) var(--s-8);
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* --- Chips --- */
.chip {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid hsla(247, 72%, 58%, 0.15);
    background: var(--primary-dim);
    border-radius: var(--r-full);
    padding: 6px 14px;
    margin-bottom: var(--s-5);
    align-self: flex-start;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.chip:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.chip-blue {
    color: var(--info);
    border-color: var(--info-muted);
    background: var(--info-muted);
}

.chip-green {
    color: var(--success);
    border-color: var(--success-muted);
    background: var(--success-muted);
}

.chip-purple {
    color: var(--primary);
    border-color: hsla(247, 72%, 58%, 0.15);
    background: var(--primary-dim);
}

.chip i {
    width: 14px;
    height: 14px;
}

/* --- Reveal Animations (Framer-style spring & blur) --- */
.reveal-up {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    filter: blur(12px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

.reveal-card {
    opacity: 0;
    transform: perspective(1000px) rotateX(15deg) translateY(60px) scale(0.92);
    filter: blur(12px);
    transform-origin: 50% 0%;
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-card.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
    filter: blur(0px);
}

.reveal-pop {
    opacity: 0;
    transform: scale(0.85) translateY(40px);
    filter: blur(14px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1),
        filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-pop.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px) scale(0.96);
    filter: blur(8px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px) scale(0.96);
    filter: blur(8px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(12px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
}

/* Stagger delays (now using animation-delay) */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.stagger-7 {
    transition-delay: 0.7s;
}

.stagger-8 {
    transition-delay: 0.8s;
}

.stagger-9 {
    transition-delay: 0.9s;
}

.stagger-10 {
    transition-delay: 1s;
}


/* --- Sections --- */
.section {
    padding: var(--section-py) 0;
}

.section-alt {
    background: transparent;
}

.section-header {
    max-width: 680px;
    margin: 0 auto var(--s-12);
    text-align: center;
}

.section-header p {
    margin-top: var(--s-4);
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* =============================================
   NAV
   ============================================= */
/* --- Navbar --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--s-6) 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-scrolled {
    padding: var(--s-3) 0;
    background: hsla(0, 0%, 100%, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Mobile Open state overrides */
.nav.nav-open {
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom-color: transparent !important;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-10);
    width: 100%;
}

.nav-brand {
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: var(--s-2);
    color: var(--text);
}

.nav-brand i {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

.nav-links {
    display: flex;
    gap: var(--s-8);
}

.nav-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--s-4);
}

.nav-cta .btn {
    padding: 10px 22px;
    font-size: 0.8125rem;
    border-radius: var(--r-md);
    font-weight: 600;
}


.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: var(--s-2);
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-card);
        padding: var(--s-24) var(--s-10) var(--s-10);
        display: flex;
        flex-direction: column;
        gap: var(--s-6);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--border);
    }

    .nav-open .nav-links {
        right: 0;
    }

    .nav-links a {
        font-size: 1.15rem;
        padding-bottom: var(--s-2);
        border-bottom: 1px solid var(--bg-subtle);
    }

    .nav-cta {
        display: none;
    }

    .nav-open .nav-cta {
        display: flex;
        flex-direction: column;
        margin-top: auto;
        padding-top: var(--s-8);
        width: 100%;
    }

    .nav-open .nav-cta .btn {
        width: 100%;
    }

    /* Overlay */
    .nav::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 999;
    }

    .nav-open::before {
        opacity: 1;
        pointer-events: auto;
    }
}

/* --- Hero Section --- */
/* App nav je static (76px) + hero padding var(--s-24) = chip na 172px od vrchu.
   Landing má fixed nav 76px, proto padding-top = 76 + 96 = 172px. */
.hero {
    padding: 172px var(--s-8) 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Glow container — absolute přes celou stránku, scrolluje s obsahem */
.glow-container {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: var(--bg);
}

.glow {
    position: absolute;
    filter: blur(140px);
    opacity: 0.35;
    border-radius: 50%;
}

/* Hero glows */
.glow-1 {
    top: 0%;
    left: 50%;
    transform: translateX(-20%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glow-2 {
    top: 3%;
    left: 25%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--info) 0%, transparent 70%);
}

/* Mid glows */
.glow-3 {
    top: 35%;
    left: 50%;
    transform: translateX(-70%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
}

.glow-4 {
    top: 40%;
    left: 50%;
    transform: translateX(10%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--info) 0%, transparent 70%);
    opacity: 0.12;
}

/* Bottom glows */
.glow-5 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-70%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.25;
}

.glow-6 {
    bottom: 5%;
    left: 50%;
    transform: translateX(10%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--info) 0%, transparent 70%);
    opacity: 0.2;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Eyebrow badge */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid hsla(247, 72%, 58%, 0.22);
    border-radius: var(--r-full);
    padding: 6px 16px;
    margin-bottom: var(--s-6);
}

.hero-eyebrow i {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.hero h1 {
    max-width: 960px;
    margin: 0 auto var(--s-6);
    line-height: 1.15;
    font-size: clamp(2.5rem, 6vw, 4rem);
}


.hero-sub {
    max-width: 500px;
    margin: 0 auto var(--s-10);
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.hero-br {
    display: none;
}

@media (min-width: 640px) {
    .hero-br {
        display: block;
    }
}

.hero-btns {
    display: flex;
    gap: var(--s-3);
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--border);
    border-radius: var(--r-full);
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--r-full);
    position: absolute;
    top: 8px;
    left: 50%;
    margin-left: -2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        transform: translateY(12px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* --- Perks Strip --- */
.perks-strip {
    padding: var(--s-12) 0;
    background: transparent;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    background: var(--bg-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.perk-item {
    padding: var(--s-8);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: var(--s-2);
    position: relative;
    transition: background 0.3s ease;
}

.perk-item:nth-child(odd) {
    background: radial-gradient(ellipse at 50% 0%, hsla(247, 72%, 58%, 0.05) 0%, transparent 70%);
}

.perk-item:nth-child(even) {
    background: radial-gradient(ellipse at 50% 100%, hsla(247, 72%, 58%, 0.05) 0%, transparent 70%);
}

.perk-item:hover {
    background: radial-gradient(ellipse at 50% 0%, hsla(247, 72%, 58%, 0.08) 0%, var(--bg-subtle) 75%);
}

.perk-item:not(:last-child) {
    border-right: 1px solid var(--border);
}

.perk-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-lg);
    background: var(--primary-dim);
    border: 1px solid hsla(247, 72%, 58%, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: var(--s-4);
    flex-shrink: 0;
}

.perk-icon i {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
}

.perk-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.perk-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .perks-grid {
        grid-template-columns: 1fr 1fr;
    }

    .perk-item:nth-child(2) {
        border-right: none;
    }

    .perk-item:nth-child(1),
    .perk-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 560px) {
    .perks-grid {
        grid-template-columns: 1fr;
    }

    .perk-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
    }

    .perk-item:last-child {
        border-bottom: none;
    }
}

/* --- Problems Bento Grid --- */
.problems {
    background: transparent;
}

.problems .bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
}

.problem-cell {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: var(--s-12) var(--s-8);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.15s ease;
}



.problem-cell:nth-child(odd) {
    background: radial-gradient(ellipse at 50% 0%, hsla(247, 72%, 58%, 0.05) 0%, var(--bg-card) 65%);
}

.problem-cell:nth-child(even) {
    background: radial-gradient(ellipse at 50% 100%, hsla(247, 72%, 58%, 0.05) 0%, var(--bg-card) 65%);
}

.problem-cell:hover {
    border-color: hsla(247, 72%, 58%, 0.4);
    box-shadow: 0 8px 32px hsla(247, 72%, 58%, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.problem-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid hsla(247, 72%, 58%, 0.15);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s-5);
    flex-shrink: 0;
}

.problem-icon i {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
}

.problem-cell h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text);
}

.problem-cell p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.cell-metric {
    width: 100%;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.metric-value {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

/* --- Features Lists --- */
.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--s-6);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition:
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.15s ease;
}

.feature-row:hover {
    box-shadow: 0 8px 32px hsla(247, 72%, 58%, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
    border-color: hsla(247, 72%, 58%, 0.4);
    transform: translateY(-4px);
}

.feature-info {
    padding: var(--s-16) var(--s-12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-row:nth-child(even) .feature-info {
    order: 2;
}

.feature-visual {
    padding: var(--s-12);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    position: relative;
    overflow: hidden;
}

/* ::before = film grain overlay */
.feature-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.30' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    mix-blend-mode: overlay;
    opacity: 0.35;
    pointer-events: none;
    z-index: 2;
}


.feature-visual>* {
    position: relative;
    z-index: 1;
}

/* Dark base for each visual panel */
.row-security .feature-visual {
    background: hsl(152, 45%, 6%);
}

.row-updates .feature-visual {
    background: hsl(236, 45%, 7%);
}

.row-speed .feature-visual {
    background: hsl(215, 65%, 6%);
}

/* Light gradient on info side bleeding from the colored panel */
/* Security + Speed: visual is on RIGHT → gradient flows from right */
.row-security .feature-info {
    background: linear-gradient(to left, hsla(152, 72%, 32%, 0.18) 0%, var(--bg-card) 55%);
}

.row-speed .feature-info {
    background: linear-gradient(to left, hsla(210, 80%, 52%, 0.18) 0%, var(--bg-card) 55%);
}

.row-updates .feature-info {
    background: linear-gradient(to right, hsla(247, 72%, 58%, 0.18) 0%, var(--bg-card) 55%);
}

/* Blurred bg image in visual panel */
.row-security .feature-visual::after,
.row-updates .feature-visual::after,
.row-speed .feature-visual::after {
    content: "";
    position: absolute;
    inset: -40px;
    z-index: 0;
    filter: blur(25px) saturate(0.4);
    opacity: 0.5;
}

.row-security .feature-visual::after {
    background: url('assets/images/features/feature_security_bg.png') center/cover no-repeat;
}

.row-updates .feature-visual::after {
    background: url('assets/images/features/feature_update_bg.png') center/cover no-repeat;
}

.row-speed .feature-visual::after {
    background: url('assets/images/features/feature_speed_bg.png') center/cover no-repeat;
}

.feature-row:nth-child(even) .feature-info {
    order: 2;
}

.feature-row:nth-child(even) .feature-visual {
    order: 1;
}

.feature-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.feature-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.feature-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.feature-check i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Mockup cards inside dark feature rows — frosted glass */
.features-list .mockup-card {
    width: 300px;
    background: hsla(222, 47%, 12%, 0.6) !important;
    border: 1px solid hsla(0, 0%, 100%, 0.11) !important;
    border-radius: var(--r-xl) !important;
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 hsla(0, 0%, 100%, 0.08) !important;
    backdrop-filter: blur(16px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
}

.features-list .mockup-card:hover {
    border-color: rgba(255, 255, 255, 0.22) !important;
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.features-list .mockup-title {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
}

.features-list .stat-label,
.features-list .fg-status {
    color: rgba(255, 255, 255, 0.35);
}

.features-list .mockup-list-item {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
}

.features-list .mockup-header {
    border-color: rgba(255, 255, 255, 0.08);
}

.features-list .mockup-progress {
    background: rgba(255, 255, 255, 0.08);
}

.features-list .mockup-score-ring {
    border-color: hsl(152, 72%, 46%);
    box-shadow: 0 0 16px hsla(152, 72%, 46%, 0.35);
}

.features-list .score-value {
    color: hsl(152, 72%, 46%);
}

/* Feature visual graphic */
.feature-visual {
    position: relative;
}

.feature-graphic {
    z-index: 6;
    width: 280px;
    border-radius: var(--r-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === MOCKUP CARDS (SaaS Dashboard Look) === */
.mockup-card {
    width: 280px;
    min-height: 280px;
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r-xl) !important;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    transition:
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.15s ease !important;
}

.mockup-card:hover {
    border-color: hsla(247, 72%, 58%, 0.4) !important;
    box-shadow: 0 8px 32px hsla(247, 72%, 58%, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-4px);
}


.mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    width: 100%;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-dot.red {
    background: var(--danger);
}

.mockup-dot.yellow {
    background: #FFBD2E;
}

.mockup-dot.green {
    background: var(--success);
}

.mockup-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mockup-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.mockup-stat {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Sora', sans-serif;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.mockup-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}

.mockup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-row-label {
    color: rgba(255, 255, 255, 0.45);
}

.mockup-row-val {
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
}

.mockup-score-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 8px 0 12px;
}

.mockup-score-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mockup-score-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}

.mockup-score-label:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.75rem;
}

.mockup-version {
    margin-left: auto;
    font-size: 0.65rem;
    font-family: 'IBM Plex Mono', monospace;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: var(--r-sm);
}

.text-green {
    color: var(--success);
}

.text-blue {
    color: var(--info);
}

.text-purple {
    color: var(--primary);
}

.mockup-progress {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 2px;
}

.bg-green {
    background: var(--success);
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-list-item {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.03);
    padding: 6px 10px;
    border-radius: var(--r-sm);
}

.mockup-list-item i {
    width: 12px;
    height: 12px;
}

.mockup-score-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.score-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
}

.mt-auto {
    margin-top: auto;
}

.feature-graphic .fg-status {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: transparent;
    padding: 0;
    padding-top: 16px;
    border-top: none;
    letter-spacing: 0.02em;
    width: 100%;
}

/* =============================================
   PROCESS
   ============================================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
}

.card-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid hsla(247, 72%, 58%, 0.15);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s-5);
    flex-shrink: 0;
}

.card-icon i {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.15s ease;
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-xl);
    background: radial-gradient(ellipse at 50% 0%, hsla(247, 72%, 58%, 0.12) 0%, transparent 65%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.25s ease;
}

.process-card:hover {
    border-color: hsla(247, 72%, 58%, 0.4);
    box-shadow: 0 8px 32px hsla(247, 72%, 58%, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.process-card:hover::after {
    opacity: 1;
}

.process-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
    color: var(--primary);
    opacity: 0.12;
    position: absolute;
    bottom: 20px;
    right: 24px;
    pointer-events: none;
    user-select: none;
}

.process-card h3 {
    margin-bottom: 8px;
    color: var(--text);
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =============================================
   FOUNDER SECTION
   ============================================= */
.founder-section {
    padding: var(--section-py) 0;
}

.founder-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.founder-box:hover {
    box-shadow: 0 12px 40px hsla(247, 72%, 58%, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
    border-color: hsla(247, 72%, 58%, 0.3);
}

.founder-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, hsla(247, 72%, 58%, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.founder-content {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.founder-header {
    margin-bottom: 24px;
}

.founder-header h3 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.founder-header p {
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0;
}

.founder-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.founder-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.founder-avatar-group {
    display: flex;
    align-items: center;
}

.founder-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-left: -12px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.founder-avatar:first-child {
    margin-left: 0;
    z-index: 3;
}

.founder-avatar:nth-child(2) {
    z-index: 2;
}

.founder-avatar i {
    width: 20px;
    height: 20px;
}

.founder-meta-text {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    font-family: 'Sora', sans-serif;
}

.founder-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.founder-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-box:hover .founder-img {
    transform: scale(1.05);
}

.founder-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: var(--bg-card);
    opacity: 0.95;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--border);
    z-index: 2;
}

.founder-badge i {
    width: 18px;
    height: 18px;
}

@media (max-width: 991px) {
    .founder-box {
        grid-template-columns: 1fr;
    }

    .founder-visual {
        order: -1;
        min-height: 300px;
        max-height: 350px;
    }
}

@media (max-width: 560px) {
    .founder-content {
        padding: 40px 24px;
    }

    .founder-badge {
        bottom: 20px;
        right: 20px;
    }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.t-carousel {
    margin-top: var(--s-8);
}

.embla__viewport {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin: -20px 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.embla__controls {
    max-width: 1200px;
    margin: var(--s-8) auto 0;
    padding: 0 20px;
}

.embla__container {
    display: flex;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.embla__container.is-dragging {
    cursor: grabbing;
}

.t-carousel .embla__slide {
    flex: 0 0 33.333%;
    min-width: 0;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 900px) {
    .t-carousel .embla__slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 600px) {
    .t-carousel .embla__slide {
        flex: 0 0 85%;
    }
}

.testimonial-card {
    flex-grow: 1;
    background: linear-gradient(170deg, var(--white) 0%, #FAFAFF 100%);
    border: 1px solid hsla(247, 72%, 58%, 0.1);
    border-radius: var(--r-2xl);
    padding: 40px 32px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 32px;
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Sora', sans-serif;
    color: hsla(247, 72%, 58%, 0.05);
    pointer-events: none;
    user-select: none;
}

.testimonial-card:hover {
    border-color: hsla(247, 72%, 58%, 0.25);
    box-shadow: 0 12px 40px hsla(247, 72%, 58%, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-xl);
    background: radial-gradient(ellipse at 50% 0%, hsla(247, 72%, 58%, 0.1) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.t-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-family: 'Sora', sans-serif;
    position: relative;
    z-index: 2;
}

.testimonial-card:hover .t-title {
    color: var(--primary);
}

.t-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    flex: 1;
    position: relative;
    z-index: 2;
}

.t-text strong {
    color: var(--text);
    font-weight: 600;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid hsla(247, 72%, 58%, 0.1);
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dim);
    border: 1px solid hsla(247, 72%, 58%, 0.15);
    color: var(--primary);
    flex-shrink: 0;
}

.t-avatar i,
.t-avatar svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
}

.t-name {
    font-weight: 700;
    font-size: 0.925rem;
    color: var(--text);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.t-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 40px auto 40px;
    gap: 0 24px;
}

.pricing-card:first-child,
.pricing-card:last-child {
    grid-row: 2;
    height: 100%;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.15s ease;
}

.pricing-card:not(.popular)::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-xl);
    background: radial-gradient(ellipse at 50% 0%, hsla(247, 72%, 58%, 0.12) 0%, transparent 65%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.25s ease;
}

.pricing-card:hover {
    border-color: hsla(247, 72%, 58%, 0.4);
    box-shadow: 0 8px 32px hsla(247, 72%, 58%, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.pricing-card:not(.popular):hover::after {
    opacity: 1;
}

/* Popular card — indigo */
.pricing-card.popular {
    grid-row: 1 / 4;
    background: var(--primary);
    border-color: var(--primary);
    padding: 56px 36px;
    z-index: 10;
    transform: translateY(-4px);
}

.pricing-card.popular:hover {
    box-shadow: 0 0 0 4px hsla(var(--h), 100%, 100%, 0.3), 0 20px 60px hsla(247, 72%, 58%, 0.35);
    transform: translateY(-8px) scale(1.02);
}

/* Ensure popular card maintains its lift even with reveal-up.active */
.pricing-card.popular.reveal-up.active {
    transform: translateY(-4px) scale(1);
}

.pricing-card.popular.reveal-up.active:hover {
    transform: translateY(-8px) scale(1.02);
}

.pricing-card.popular h3,
.pricing-card.popular>p,
.pricing-card.popular .pricing-price,
.pricing-card.popular .pricing-sla,
.pricing-card.popular .pricing-list li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.popular .pricing-price {
    color: var(--white);
}

.pricing-card.popular .pricing-price span {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card.popular .pricing-sla {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card.popular .pricing-sla i {
    color: var(--primary-light, hsl(247, 72%, 70%));
}

.pricing-card.popular .pricing-list li i {
    color: #6EE7B7;
}

.pricing-card.popular .btn-primary,
.pricing-card.popular .btn-primary * {
    background: var(--white);
    color: var(--primary) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular .btn-primary:hover {
    background: #F0F0FF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: var(--r-full);
    padding: 4px 10px;
    margin-bottom: 12px;
    width: fit-content;
    font-family: 'IBM Plex Mono', monospace;
}

.pricing-card h3 {
    margin-bottom: 4px;
    color: var(--text);
}

.pricing-card>p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 16px 0 8px;
    letter-spacing: -0.04em;
    color: var(--text);
    font-family: 'Sora', sans-serif;
}

.pricing-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0;
}

.pricing-sla {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    padding: 10px 14px;
    background: var(--bg-subtle);
    border-radius: var(--r);
    margin-bottom: 20px;
}

.pricing-sla i {
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-list {
    flex: 1;
    margin-bottom: 24px;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 6px 0;
}

.pricing-list li i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing: daily price anchor */
.pricing-daily {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'IBM Plex Mono', monospace;
    margin-top: -10px;
    margin-bottom: 4px;
}

.pricing-card.popular .pricing-daily {
    color: rgba(255, 255, 255, 0.55);
}

/* Pricing: value note (Byznys card) */
.pricing-value-note {
    font-size: 0.78rem;
    color: var(--success);
    background: var(--success-muted);
    border: 1px solid hsla(158, 93%, 31%, 0.2);
    border-radius: var(--r-md);
    padding: 8px 12px;
    margin-bottom: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.pricing-card.popular .pricing-value-note {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing: guarantee strip below grid */
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-guarantee i {
    width: 15px;
    height: 15px;
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA: guarantee note */
.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.cta-guarantee i {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA: privacy note under submit */
.cta-privacy {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 0;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, hsla(247, 72%, 58%, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.faq-item>* {
    position: relative;
    z-index: 1;
}

.faq-item:hover {
    border-color: hsla(247, 72%, 58%, 0.2);
    box-shadow: 0 2px 12px hsla(247, 72%, 58%, 0.06);
    transform: translateY(-1px);
}

.faq-item.open {
    border-color: hsla(247, 72%, 58%, 0.35);
    box-shadow: 0 4px 24px hsla(247, 72%, 58%, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.open .faq-question {
    color: var(--primary);
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* =============================================
   SECTION CTA (buttons at bottom of sections)
   ============================================= */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

.section-cta .btn {
    border-radius: 999px;
    padding: 14px 36px;
}

/* =============================================
   INLINE CTA (mid-page conversion strips)
   ============================================= */
.inline-cta {
    text-align: center;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.inline-cta-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    max-width: 500px;
}

.inline-cta .btn {
    padding: 14px 32px;
    font-size: 1rem;
}

.inline-cta-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* =============================================
   COMPARISON
   ============================================= */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.15s ease;
}

.comparison-col::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, hsla(247, 72%, 58%, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.comparison-col>* {
    position: relative;
    z-index: 1;
}

.comparison-col:hover {
    border-color: hsla(247, 72%, 58%, 0.4);
    box-shadow: 0 8px 32px hsla(247, 72%, 58%, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.comparison-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.comparison-header i {
    width: 48px;
    height: 48px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-old .comparison-header i {
    background: var(--red-muted);
    color: var(--red);
}

.comparison-new .comparison-header i {
    background: var(--green-muted);
    color: var(--green);
}

.comparison-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.comparison-list li i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-old li i {
    color: var(--text-muted);
}

.comparison-new li i {
    color: var(--green);
}

.comparison-new {
    border: 2px solid var(--primary);
    background: var(--bg-card);
}

.comparison-footer {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-new {
        transform: none;
    }
}

/* =============================================
   CTA
   ============================================= */
.cta-section {
    padding: var(--section-py) 0;
    background: transparent;
}

.cta-box {
    border: 1px solid hsla(247, 72%, 58%, 0.25);
    border-radius: var(--r-2xl);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #E0E7FF 0%, #EEF2FF 50%, var(--white) 100%);
    box-shadow: 0 0 0 1px hsla(247, 72%, 58%, 0.08), var(--shadow-lg);
}

.cta-text {
    z-index: 1;
}

.cta-text h2 {
    margin-bottom: 16px;
    color: var(--text);
}

.cta-text>p {
    font-size: 1rem;
    margin-bottom: 28px;
    color: var(--text-secondary);
}

.cta-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-check i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.cta-form {
    z-index: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px;
    border: 1px solid var(--border);
}

.cta-form-header {
    margin-bottom: 24px;
}

.cta-form-header h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--text);
}

.cta-form-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.cta-field {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding: 14px 4px;
    transition: border-color .3s;
}

.cta-field:focus-within {
    border-bottom-color: var(--primary);
}

.cta-field>i {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: color .3s;
}

.cta-field:focus-within>i {
    color: var(--primary);
}

.cta-field input {
    background: transparent;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    padding: 0;
}

.cta-field input::placeholder {
    color: var(--text-muted);
}

.cta-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-top: 24px;
}

.cta-consent input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cta-consent-box {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--bg-subtle);
    flex-shrink: 0;
    margin-top: 1px;
    transition: background .3s, border-color .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-consent-box::after {
    content: '';
    width: 9px;
    height: 5px;
    border-left: 1.5px solid var(--white);
    border-bottom: 1.5px solid var(--white);
    transform: rotate(-45deg) translateY(-1px);
    opacity: 0;
    transition: opacity .3s;
}

.cta-consent input:checked~.cta-consent-box {
    background: var(--primary);
    border-color: var(--primary);
}

.cta-consent input:checked~.cta-consent-box::after {
    opacity: 1;
}

.cta-consent span:last-child {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.cta-consent a {
    color: var(--text-secondary);
    text-decoration: underline;
    text-decoration-color: var(--border);
    transition: color .3s;
}

.cta-consent a:hover {
    color: var(--primary);
}

/* Form error & valid states */
.cta-field.error {
    border-bottom-color: var(--danger);
}

.cta-field.error>i {
    color: var(--danger);
}

.cta-field.valid {
    border-bottom-color: var(--success);
}

.cta-field-error {
    display: block;
    font-size: 0.72rem;
    color: var(--danger);
    margin-top: 4px;
    padding-left: 29px;
}

.cta-consent.error span:last-child {
    color: var(--danger);
}

.cta-consent.error .cta-consent-box {
    border-color: var(--danger);
}

/* Success state */
.cta-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
    gap: 12px;
}

.cta-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-muted);
    border: 1px solid rgba(5, 150, 105, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.cta-success-icon i {
    width: 24px;
    height: 24px;
    color: var(--success);
}

.cta-success h3 {
    font-size: 1.3rem;
    color: var(--text);
}

.cta-success p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 280px;
}

.cta-form .btn[type="submit"] {
    margin-top: 24px;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.back-to-top i {
    width: 20px;
    height: 20px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: var(--section-py-sm) 0 var(--s-12);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(ellipse 30% 120px at 50% 0%, hsla(247, 90%, 70%, 0.4) 0%, transparent 100%),
        radial-gradient(ellipse 70% 320px at 50% 0%, hsla(247, 72%, 58%, 0.18) 0%, transparent 100%),
        hsl(247, 55%, 7%);
    position: relative;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    padding-bottom: var(--s-12);
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 40px;
}

.footer-brand {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-brand i {
    color: hsl(247, 80%, 78%);
    width: 18px;
    height: 18px;
}

.footer-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 240px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.footer-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all .3s;
}

.footer-social-btn:hover {
    border-color: hsla(var(--h), 80%, 75%, 0.4);
    background: hsla(var(--h), 80%, 75%, 0.1);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.footer-social-btn i {
    width: 15px;
    height: 15px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: 40px;
}

.footer-heading {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
    font-family: 'IBM Plex Mono', monospace;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color .3s, transform .3s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.email-link::before {
    content: attr(data-u) "\0040" attr(data-d);
}

.footer-links a i {
    width: 13px;
    height: 13px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.775rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-sep {
    opacity: 0.4;
}

.footer-bottom-badges {
    display: flex;
    gap: 8px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-sm);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-badge i {
    width: 11px;
    height: 11px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media(max-width:900px) {
    .trust-indicators {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .problems .bento {
        grid-template-columns: 1fr 1fr;
    }

    .problem-cell:nth-child(1) {
        grid-column: span 2;
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .feature-row:nth-child(even) .feature-info {
        order: 1;
    }

    .feature-row:nth-child(even) .feature-visual {
        order: 2;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.popular {
        grid-row: auto;
        transform: none;
        box-shadow: 0 8px 32px hsla(247, 72%, 58%, 0.25);
    }
}

@media(max-width:768px) {
    .nav {
        width: 100%;
    }

    .nav-scrolled::before {
        width: 100%;
        border-radius: 0 0 var(--r-xl) var(--r-xl);
    }

    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-eyebrow {
        font-size: 0.6875rem;
    }

    .hero h1 {
        font-size: 2.125rem;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: var(--s-8);
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-meta {
        gap: var(--s-2) 0;
    }

    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .problems .bento {
        grid-template-columns: 1fr;
    }

    .problem-cell:nth-child(1) {
        grid-column: span 1;
    }

    .problem-cell {
        padding: 28px 24px;
    }

    .feature-info {
        padding: 36px 28px;
    }

    .feature-visual {
        min-height: 200px;
        padding: 28px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-card {
        padding: 28px 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-price {
        font-size: 2.2rem;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 40px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .founder-box {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
        gap: 24px;
    }

    .cta-checks {
        align-items: center;
    }

    .cta-form {
        padding: 24px 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .mockup-card {
        width: 200px;
    }
}

/* Removed redundant reveal animations that caused hover conflicts */

/* =============================================
   EMBLA CAROUSEL
   ============================================= */
.embla__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--s-8);
    padding: 0 20px;
}

.embla__buttons {
    display: flex;
    gap: 12px;
}

.embla__button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.embla__button:hover:not(:disabled) {
    background: var(--primary-dim);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsla(247, 72%, 58%, 0.15);
}

.embla__button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.embla__button svg {
    width: 20px;
    height: 20px;
}

@media(max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom-badges {
        flex-wrap: wrap;
    }
}

/* CTA 3D Accent */
.cta-box {
    position: relative;
    overflow: hidden;
}

.cta-3d-accent {
    position: absolute;
    top: -60px;
    right: -40px;
    width: 320px;
    height: auto;
    z-index: 0;
    opacity: 0.15;
    filter: blur(1px);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}