/* --- SELF-HOSTED FONTS --- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600 800;
    font-display: swap;
    src: url('fonts/plus-jakarta-sans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- ACCESSIBILITY / SEO --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- CORE SETTINGS --- */
:root {
    --bg-dark: #050505;
    --bg-main: #0a0a0a;
    --bg-card: #0a0a0a;
    --bg-card-hover: #111111;
    
    --primary: #ffffff; 
    --primary-light: #e2e8f0;
    --brand-solid: #ffffff;
    --brand-navy: #001F5B;
    
    --text-main: #E0E0E0;
    --text-muted: #A0AAB5;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.15);

    --section-padding: 160px;
    --container-width: 1200px;
    
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-main: 'Inter', -apple-system, sans-serif;
}

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

html {
    width: 100%;
    overflow-x: clip; /* clip instead of hidden — preserves mobile native scroll optimization */
}
body {
    width: 100%;
    overflow-x: hidden;
    font-size: 16px;
}

section { scroll-margin-top: 140px; }
.fullscreen-section {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 60px 0;
    scroll-margin-top: 0;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    animation: fadeInPage 0.2s ease-out forwards;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Premium Text Selection */
::selection {
    background: var(--primary);
    color: #ffffff;
}
::-moz-selection {
    background: var(--primary);
    color: #ffffff;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Ambient Glows */
@media (max-width: 899px) {
    .ambient-glow { display: none; }
}
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform, opacity;
}
.glow-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: rgba(255, 255, 255, 0.8);
}
.glow-2 {
    bottom: -20%; right: -10%;
    width: 60vw; height: 60vw;
    background: rgba(148, 163, 184, 0.5);
}

/* Custom Cursor */
@media (min-width: 769px) {
    body, a, button, input, textarea, .magnetic {
        cursor: none !important;
    }
}
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), height 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s;
    will-change: transform;
}
.custom-cursor.hover {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    mix-blend-mode: normal;
    backdrop-filter: blur(2px);
}
@media (max-width: 768px) {
    .custom-cursor { display: none !important; }
}

/* ACCESSIBILITY FOCUS */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

h1, h2, h3, h4 { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    color: white; 
    line-height: 1.1; 
    letter-spacing: -0.04em;
}

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

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

.archival-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-main);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 600;
}

/* --- HEADER --- */
header {
    position: fixed; top: 0; width: 100%; z-index: 2000;
    left: 50%; transform: translateX(-50%);
    transition: top 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                width 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                border-radius 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 10px 0;
    background: rgba(6, 6, 6, 1);
    border: 1px solid transparent;
    border-radius: 0px;
}
header.scrolled {
    top: 16px;
    width: 90%;
    max-width: 1200px;
    padding: 8px 0;
    background: rgba(6, 6, 6, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
@media (max-width: 899px) {
    header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(6, 6, 6, 0.97);
    }
    /* Remove GPU-expensive blur from static elements on mobile */
    .contact-form {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .funnel-container {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.header-container > div {
    justify-self: end;
    grid-column: 3;
}
header.scrolled .header-container {
    padding: 0 24px;
}

.logo-link { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    transition: opacity 0.3s ease; 
}
.logo-link:hover { 
    opacity: 0.8; 
}
.logo-img { 
    height: 48px !important; 
    width: auto; 
    max-height: none;
    object-fit: contain;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
header.scrolled .logo-img { 
    height: 38px !important; 
}

.nav-links { display: none; }
@media (min-width: 900px) {
    .nav-links { display: flex; gap: 32px; align-items: center; }
    .nav-links a {
        position: relative;
        color: var(--text-muted); text-decoration: none;
        font-size: 0.95rem; font-weight: 500;
        padding: 8px 0;
        transition: color 0.3s ease;
    }
    .nav-links a:hover { color: var(--text-main); }
    .nav-links a::after {
        content: '';
        position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
        background: var(--brand-solid);
        transform: scaleX(0); transform-origin: right;
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
}

.header-btn {
    transition: padding 0.6s cubic-bezier(0.16, 1, 0.3, 1), font-size 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
header.scrolled .header-btn {
    padding: 8px 20px !important;
    font-size: 0.85rem !important;
}

/* --- BUTTONS --- */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-navy);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    transform: translateY(1px) scale(0.98);
    background: #002875;
    box-shadow: none;
}
.btn-primary:active {
    transform: translateY(2px) scale(0.96);
    box-shadow: none;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-main);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    text-align: center;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}
.btn-outline:active {
    transform: translateY(0) scale(0.97);
}

/* --- MOBILE MENU --- */
.mobile-menu-btn { 
    display: none; background: none; border: none; color: white; 
    cursor: pointer; transition: transform 0.3s ease;
    width: 44px; height: 44px; align-items: center; justify-content: center;
    position: relative;
    z-index: 2001;
}
@media (min-width: 900px) { .mobile-menu-btn { display: none !important; } }

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger .line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100svh;
    background: rgba(6, 6, 6, 0.99);
    z-index: 1900;
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px;
    opacity: 0; visibility: hidden;
    transform: translateY(-20px); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.active { 
    opacity: 1; visibility: visible; transform: translateY(0); 
}
.mobile-menu a { 
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; color: white; text-decoration: none; font-weight: 600; 
    opacity: 0; transform: translateY(20px); transition: all 0.4s ease;
}
.mobile-menu.active a { opacity: 1; transform: translateY(0); }
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }

/* --- NEW HERO SECTION --- */
.hero-section-new {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 180px 24px 120px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    scroll-margin-top: 0;
}

.hero-content-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* --- HERO BACKGROUND CLEAN --- */
.hero-bg-clean {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at top center, rgba(0, 31, 91, 0.12) 0%, transparent 60%),
        linear-gradient(to bottom, var(--bg-main) 0%, var(--bg-dark) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-clean::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    z-index: 1;
    opacity: 0.6;
}

.footer-bg-clean {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at bottom center, rgba(0, 31, 91, 0.12) 0%, transparent 60%),
        linear-gradient(to top, var(--bg-main) 0%, var(--bg-dark) 100%);
    z-index: 0;
    pointer-events: none;
}

.footer-bg-clean::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at bottom center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at bottom center, black 30%, transparent 80%);
    z-index: 1;
    opacity: 0.6;
}

/* --- FLOATING LEAD CARDS --- */
.floating-elements-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    pointer-events: none;
    z-index: 5;
}

.floating-card-wrapper {
    position: absolute;
    z-index: 10;
}

.floating-card-wrapper.wrapper-1 {
    top: 15%;
    left: 2%;
}

.floating-card-wrapper.wrapper-2 {
    top: 60%;
    right: 2%;
}

.floating-lead-card {
    pointer-events: auto;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 24px;
    width: 300px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.floating-lead-card:hover {
    transform: scale(1.02) !important;
    border-color: rgba(255, 255, 255, 0.15);
    z-index: 20;
}

.floating-lead-card.card-1 {
    transform: rotate(-2deg);
    animation-delay: 0s;
}

.floating-lead-card.card-2 {
    transform: rotate(3deg);
    animation-delay: -4s;
}

.lead-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
}

.lead-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981; /* Green success color */
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
}

.lead-dot.pulse {
    animation: pulse-green 2s infinite;
}

.lead-body strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.lead-detail {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lead-detail i {
    color: var(--brand-navy);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(-15px) rotate(var(--rotation, 0deg)); }
    100% { transform: translateY(0px) rotate(var(--rotation, 0deg)); }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.floating-lead-card.card-1 { --rotation: -3deg; }
.floating-lead-card.card-2 { --rotation: 4deg; }

@media (max-width: 1100px) {
    .floating-lead-card {
        opacity: 0.4;
    }
    .floating-card-wrapper {
        transform: scale(0.8);
    }
    .floating-card-wrapper.wrapper-1 { left: -20px; }
    .floating-card-wrapper.wrapper-2 { right: -20px; }
}

@media (max-width: 768px) {
    .floating-elements-container {
        display: none;
    }
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.pill-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.pill-badge .dot.green {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.pill-badge .dot.red {
    background: #f87171;
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

.headline-new {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: var(--text-main);
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
    max-width: 660px;
    margin-bottom: 36px;
}

.subheadline-new {
    font-size: 1.35rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 560px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    margin-top: 4px;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 32px;
    margin-bottom: 24px;
}

.cta-button-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-navy);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    box-shadow: none;
}

.cta-button-new:hover {
    transform: translateY(1px) scale(0.98);
    background: #002875;
    box-shadow: none;
}

.hero-image-wrapper-new {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.glow-effect-new {
    position: absolute;
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.8);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.hero-image-new {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transform: rotateY(-15deg) rotateX(10deg);
    border-radius: 4px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
}

@media (max-width: 900px) {
    .hero-section-new {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .headline-new {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .headline-new {
        font-size: 2.2rem;
        max-width: 100%;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    .subheadline-new {
        font-size: 1.05rem;
        max-width: 100%;
        line-height: 1.55;
    }
    .hero-cta-wrapper {
        margin-top: 28px;
        margin-bottom: 24px;
        gap: 16px;
    }
    .trust-pill-small {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .headline-new {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .subheadline-new {
        font-size: 1.1rem;
    }
    .hero-cta-wrapper {
        margin-top: 28px;
        margin-bottom: 24px;
    }
    .cta-button-new {
        max-width: 360px;
    }
}

/* --- HERO --- */
.hero {
    min-height: 95svh; display: flex; flex-direction: column; justify-content: center;
    padding-top: 220px; position: relative;
}

.hero h1 { font-size: 4.8rem; font-weight: 800; max-width: 900px; margin-bottom: 24px; letter-spacing: -0.04em; line-height: 1.05; }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 60ch; margin-bottom: 40px; font-weight: 400; line-height: 1.6; }

.hero-btns { display: flex; gap: 20px; }

.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }

.hero-metrics { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border-subtle); }
.metric { display: flex; flex-direction: column; gap: 4px; }
.metric strong { font-size: 1.5rem; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-main); line-height: 1; }
.metric span { font-size: 0.85rem; color: var(--text-muted); }
.metric-divider { width: 1px; background: var(--border-subtle); }

.hero-visual { position: relative; width: 100%; height: 100%; display: flex; justify-content: flex-end; perspective: 1200px; }
.glass-mockup {
    width: 100%; max-width: 450px; background: rgba(25, 25, 25, 0.4);
    border: 1px solid var(--border-highlight); border-radius: 4px;
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.mockup-header { 
    padding: 16px 20px; border-bottom: 1px solid var(--border-subtle); 
    display: flex; justify-content: space-between; align-items: center; 
    background: rgba(255,255,255,0.02); border-radius: 4px 4px 0 0;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px;
}
.mockup-body { padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.skeleton-line { height: 12px; border-radius: 6px; background: rgba(255, 255, 255, 0.05); overflow: hidden; position: relative; }
.skeleton-line::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: skeletonShine 2s infinite;
}
@keyframes skeletonShine { 100% { left: 200%; } }

.skeleton-box { height: 140px; border-radius: 4px; background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%); border: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;}
.skeleton-box i { font-size: 3rem; color: rgba(255,255,255,0.1); }

.floating-badge {
    position: absolute; bottom: -25px; left: -50px;
    background: var(--bg-card); border: 1px solid var(--border-highlight);
    padding: 18px 26px; border-radius: 4px; display: flex; align-items: center; gap: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7); font-weight: 600; font-size: 0.95rem; color: white;
    transition: transform 0.3s ease;
}
.floating-badge:hover { transform: scale(1.05); }
.floating-badge i { color: #4ade80; font-size: 1.2rem; }

/* --- DESIGNS SECTION (VERTICAL) --- */
.designs-vertical-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.design-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 24px -1px rgba(0,0,0,0.2);
}

.design-card:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.design-card:nth-child(even) .design-card-img {
    order: 2;
}

.design-card:nth-child(even) .design-card-info {
    order: 1;
}

.design-card:hover {
    transform: scale(0.995);
    border-color: rgba(0, 31, 91, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 20px rgba(0, 31, 91, 0.15);
    background: rgba(0, 31, 91, 0.03);
}

.design-card-img {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.design-card:hover .mockup-image {
    transform: scale(1.01);
}

.design-card-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-solution-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}
.single-solution-card .design-card-img,
.single-solution-card .design-card-info {
    flex: 1;
}
@media (max-width: 768px) {
    .single-solution-card {
        flex-direction: column;
        gap: 20px;
    }
}

.design-card-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
}

.design-card-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.design-features {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.design-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-main);
}

.design-features i {
    color: var(--primary);
}

@media (max-width: 992px) {
    .design-card, .design-card:nth-child(even) {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 30px;
    }
    .design-card:nth-child(even) .design-card-img {
        order: 1;
    }
    .design-card:nth-child(even) .design-card-info {
        order: 2;
    }
    .design-card-info h3 {
        font-size: 2rem;
    }
}

/* --- SYSTEM GRID --- */
.system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.system-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.system-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.system-card-visual {
    height: 200px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.system-card:hover .system-card-visual {
    background: rgba(0, 31, 91, 0.1);
}

.system-card-content {
    padding: 32px 28px;
    position: relative;
    flex-grow: 1;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 28px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    letter-spacing: -0.05em;
}

.system-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.system-card-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

/* --- SYSTEM CTA WRAPPER --- */
.system-cta-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 80px;
}

.btn-demo {
    font-size: 0.9rem;
    padding: 12px 22px;
    opacity: 0.75;
}
.btn-demo:hover {
    opacity: 1;
}

/* Mock UI Elements */
.mock-ui-window {
    width: 100%;
    max-width: 260px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.system-card:hover .mock-ui-window {
    transform: translateY(0);
}

.mock-ui-header {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 6px;
}

.mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.mock-dot.red { background: #ff5f56; }
.mock-dot.yellow { background: #ffbd2e; }
.mock-dot.green { background: #27c93f; }

.mock-ui-body {
    padding: 16px;
}

.mock-question {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
}

.mock-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.mock-option:last-child { margin-bottom: 0; }

.mock-option.active {
    background: rgba(0, 31, 91, 0.3);
    border-color: var(--brand-navy);
    color: #fff;
}

.mock-lead-alert {
    width: 100%;
    max-width: 260px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

.system-card:hover .mock-lead-alert {
    transform: scale(1);
}

.alert-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    font-weight: 700;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alert-body strong {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 4px;
}

.alert-body span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-body span i {
    color: var(--brand-navy);
    width: 14px;
    text-align: center;
}

/* --- RESULTS BENTO --- */
.results-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 28px;
}

.result-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.result-card.card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 100%);
}

.result-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.result-icon-wrapper.green-glow { color: #4ade80; }
.result-icon-wrapper.blue-glow { color: #60a5fa; }

.result-card:hover .result-icon-wrapper.green-glow {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
    transform: scale(1.05);
}

.result-card:hover .result-icon-wrapper.blue-glow {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
    transform: scale(1.05);
}

.result-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.result-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- TYPOGRAPHY UTILITIES --- */
.h2-large {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: white;
}
.h3-large {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: white;
}
.p-large {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .h2-large { font-size: 2.2rem; }
    .h3-large { font-size: 1.6rem; }
    .p-large  { font-size: 1rem; }
}
@media (max-width: 480px) {
    .h2-large { font-size: 1.9rem; }
}

.big-metric {
    margin-top: auto;
    padding-top: 32px;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Right-side metric cards: tighter typography for visual balance */
.result-card:not(.card-large) h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 8px;
}
.result-card:not(.card-large) .p-large {
    font-size: 1rem;
    line-height: 1.65;
}

/* Comparison Container */
.comparison-container {
    display: flex;
    gap: 28px;
    flex-grow: 1;
    margin-top: 28px;
}

.comparison-column {
    flex: 1;
    background: rgba(0,0,0,0.2);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.03);
}

.comparison-column.before {
    border-top: 3px solid #f87171;
}

.comparison-column.after {
    border-top: 3px solid #4ade80;
    background: rgba(74, 222, 128, 0.03);
}

.comp-header {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-column.before .comp-header { color: #f87171; }
.comparison-column.after .comp-header { color: #4ade80; }

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comp-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.comp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.comparison-column.before .comp-list li::before { background: rgba(248, 113, 113, 0.5); }
.comparison-column.after .comp-list li::before { background: rgba(74, 222, 128, 0.5); }
.comparison-column.after .comp-list li { color: rgba(255,255,255,0.9); }

/* --- BENTO GRID --- */
.section-header { margin-bottom: 70px; max-width: 650px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center p { margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 20px; font-weight: 700; }
.section-header p { color: var(--text-muted); font-size: 1.15rem;}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1px;
    background-color: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
}

/* --- PROBLEM BENTO --- */
.problem-bento {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.problem-card.card-large {
    grid-column: 1;
    grid-row: span 2;
    padding: 44px;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 100%);
}

.problem-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.problem-card:hover .problem-icon-wrapper {
    background: var(--brand-navy);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.problem-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.problem-card.card-large .problem-title {
    font-size: 2rem;
    color: white;
}

.problem-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.problem-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.problem-card.card-large .problem-content h3 {
    font-size: 2rem;
}

.problem-card.card-large .problem-content p {
    font-size: 1.1rem;
    max-width: 100%;
    line-height: 1.65;
}

.problem-metric {
    margin-top: auto;
    padding-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f87171;
    line-height: 1;
    letter-spacing: -0.05em;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    max-width: 100px;
    line-height: 1.3;
}

.card {
    background: var(--bg-card);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: none;
}
.card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(0, 31, 91, 0.25), transparent 40%);
    opacity: 0; transition: opacity 0.5s ease; pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover { 
    background: var(--bg-card-hover);
}

.card-large { grid-column: span 2; }

.card-icon {
    width: 48px; height: 48px; border-radius: 4px; 
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle); 
    display: flex; align-items: center; justify-content: center;
    color: var(--text-main); margin-bottom: auto; font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card-icon { 
    transform: scale(1.05); 
    color: var(--primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.card h3 { font-size: 1.6rem; margin: 24px 0 12px; font-weight: 700; }
.card p { color: var(--text-muted); font-size: 1rem; }

/* --- PRICING --- */
.pricing-section {
    padding: var(--section-padding) 0;
}

.premium-offer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.premium-offer-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.1);
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
}

.offer-left {
    padding: 50px;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.offer-price-placeholder {
    margin-top: 36px;
    background: rgba(0,0,0,0.2);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.06);
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0;
    color: rgba(255,255,255,0.6);
    margin-left: 2px;
}

.price-subtext {
    display: block;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin-top: 6px;
}

.offer-right {
    padding: 50px;
}

.offer-features-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.premium-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.premium-features-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text strong {
    display: block;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 6px;
}

.feature-text span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.offer-footer {
    padding: 32px 50px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.guarantee-badge i {
    color: #a78bfa;
    font-size: 1.2rem;
}

/* --- FAQ --- */
.accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.acc-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.acc-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.acc-header[aria-expanded="true"] {
    color: #fff;
}

.acc-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: inherit;
    padding: 26px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15rem;
    cursor: pointer;
    transition: color 0.3s ease;
    gap: 16px;
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.acc-content p {
    padding: 4px 32px 28px 32px;
    margin: 0;
}

/* --- FAQ CTA --- */
.faq-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 72px;
}

.acc-header i { 
    transition: transform 0.4s ease, color 0.3s ease, background 0.3s ease; 
    font-size: 1rem; 
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.acc-header[aria-expanded="true"] i {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

/* --- CONTACT --- */
.contact-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.contact-subheading {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 1.15rem;
    line-height: 1.65;
    max-width: 500px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-form input, .contact-form textarea {
    width: 100%; padding: 18px; border-radius: 4px; 
    border: 1px solid var(--border-subtle);
    background: rgba(255,255,255,0.02); color: white; 
    font-family: inherit; font-size: 1rem; outline: none; transition: 0.3s ease;
    margin-bottom: 20px;
}
.contact-form input:focus, .contact-form textarea:focus { 
    border-color: var(--primary); 
    background: rgba(255,255,255,0.05); 
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    outline: none;
}
.contact-form .btn-primary {
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
}

/* --- FUNNEL STYLES --- */
.funnel-container {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 44px;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.funnel-progress {
    margin-bottom: 40px;
}

.funnel-step {
    animation: fadeIn 0.4s ease forwards;
}

.funnel-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.funnel-option {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.funnel-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.funnel-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 16px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.funnel-option:has(input:checked) {
    background: rgba(59, 130, 246, 0.08);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.funnel-option:has(input:checked) .radio-custom {
    border-color: var(--primary);
    background: var(--primary);
}

.funnel-option:has(input:checked) .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.funnel-option span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.funnel-option:has(input:checked) span {
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    font-size: 1rem;
    text-align: center;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.funnel-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-group input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.input-group input:focus + i,
.input-group input:not(:placeholder-shown) ~ i {
    color: var(--primary);
}

.funnel-select {
    width: 100%;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.funnel-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.funnel-select option {
    background: #0a0a0a;
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- FOOTER --- */
footer { padding: 100px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 80px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 24px; }
.footer-h4-spacer { margin-top: 44px !important; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 14px; font-size: 0.95rem; transition: all 0.3s; }
.footer-col a:hover { color: var(--primary); transform: translateX(5px); }
.footer-col a.footer-cta { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: white; padding: 14px 28px; border-radius: 4px; font-weight: 600; font-size: 0.95rem; border: 1px solid rgba(255, 255, 255, 0.25); margin-top: 28px; margin-bottom: 20px; }
.footer-col a.footer-cta:hover { background: rgba(255, 255, 255, 0.05); border-color: white; transform: translateY(-2px); color: white; }
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.footer-trust-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; padding: 6px 14px; border: 1px solid var(--border-subtle); border-radius: 20px; background: rgba(255, 255, 255, 0.02); color: var(--text-muted); }
.footer-icon-link { display: flex; align-items: center; gap: 10px; }
.footer-icon-link i { width: 16px; text-align: center; color: var(--text-muted); transition: color 0.3s; }
.footer-col a.footer-icon-link:hover i { color: var(--primary); }
.footer-bottom-text { padding-top: 40px; border-top: 1px solid var(--border-subtle); color: var(--text-muted); font-size: 0.8rem; text-align: center; opacity: 0.6; }

/* --- MOBILE --- */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .bento-grid { grid-template-columns: 1fr; }
    .card-large { grid-column: auto; }
    .hero h1 { font-size: 3.8rem; }
    :root { --section-padding: 80px; }
    .contact-form { padding: 30px 20px; }
    .mobile-menu-btn { display: flex !important; }
    .headline-new { font-size: 2.4rem; }
    .section-header { margin-bottom: 48px !important; }
}

@media (max-width: 992px) {
    .problem-bento {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .problem-card.card-large {
        grid-column: span 2;
        grid-row: auto;
    }
    .problem-card.card-large .problem-content p {
        max-width: 100%;
    }
    .system-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .results-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .result-card.card-large {
        grid-column: span 2;
        grid-row: auto;
    }
    .offer-content {
        grid-template-columns: 1fr;
    }
    .offer-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px;
    }
    .offer-right {
        padding: 40px;
    }
    .offer-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 28px 40px;
    }
    .offer-footer .cta-button-new {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .fullscreen-section {
        min-height: unset;
        padding: 52px 0 44px;
    }
    .problem-bento {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .problem-card.card-large {
        grid-column: 1;
        padding: 28px;
    }
    .problem-card {
        padding: 28px;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    .problem-card.card-large .problem-title {
        font-size: 1.55rem;
    }
    .problem-icon-wrapper {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .problem-content p {
        font-size: 1rem;
    }
    .problem-card.card-large .problem-content p {
        font-size: 1rem;
    }
    .system-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .system-card {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    .system-card-content .problem-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    .system-cta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 56px;
    }
    .system-cta-wrapper .cta-button-new {
        width: 100%;
        max-width: 360px;
    }
    .system-cta-wrapper .btn-demo {
        max-width: 360px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .results-bento {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .result-card {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        padding: 28px;
    }
    .result-card.card-large {
        grid-column: span 1;
        padding: 28px;
    }
    .comparison-container {
        flex-direction: column;
        gap: 32px;
        margin-top: 24px;
    }
    .comparison-column {
        padding: 20px;
    }
    .comp-header {
        font-size: 1.05rem;
        margin-bottom: 16px;
    }
    .comp-list li {
        font-size: 0.95rem;
    }
    .result-icon-wrapper {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .big-metric {
        margin-top: 20px;
        padding-top: 16px;
    }
    .acc-header {
        padding: 20px 24px;
        font-size: 1.05rem;
    }
    .faq-cta-wrapper {
        margin-top: 56px;
    }
    .faq-cta-wrapper .cta-button-new {
        width: 100%;
        max-width: 400px;
    }

    .hero-grid {
        gap: 20px !important;
    }
    .contact-heading {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    .contact-subheading {
        font-size: 0.95rem;
        margin-bottom: 24px;
        max-width: 100%;
    }
    .h2-large {
        font-size: 1.85rem !important;
    }
    .p-large {
        font-size: 1rem !important;
    }
    .pill-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    .section-header.center {
        margin-bottom: 40px !important;
    }
    .trust-badges-vertical {
        gap: 12px;
        margin-bottom: 0;
    }
    /* Overrides for inline font-sizes */
    h2[style*="font-size: 3.2rem"],
    div[style*="font-size: 3.2rem"] { font-size: 2.2rem !important; }
    p[style*="font-size: 1.15rem"] { font-size: 1rem !important; }
    p[style*="font-size: 1.1rem"] { font-size: 0.95rem !important; }
    a[style*="font-size: 1.1rem"] { font-size: 1rem !important; padding: 14px 24px !important; }
    button[style*="font-size: 1.1rem"] { font-size: 1rem !important; padding: 14px 24px !important; }
    div[style*="font-size: 1.5rem"] { font-size: 1.3rem !important; }
    div[style*="font-size: 1.4rem"] { font-size: 1.2rem !important; }
    div[style*="font-size: 1.8rem"] { font-size: 1.5rem !important; }
    h3[style*="font-size: 2rem"] { font-size: 1.6rem !important; }
    .big-metric[style*="font-size: 2.2rem"] { font-size: 1.8rem !important; }
    .big-metric { font-size: 2.2rem; }
    .step-number { font-size: 2.2rem !important; left: 20px !important; }
    .contact-heading[style*="font-size: 3.5rem"] { font-size: 2.5rem !important; }
    
    /* Fix System Section Overflow */
    .system-card-visual {
        padding: 16px !important;
        height: auto !important;
        min-height: 100px;
    }
    .system-card-content {
        padding: 28px 20px !important;
    }
    .mock-ui-window, .mock-lead-alert {
        max-width: 100% !important;
    }

    .funnel-container {
        padding: 30px !important;
        max-width: 100%;
    }
    .funnel-option {
        padding: 16px !important;
    }
    .funnel-option span {
        font-size: 1rem !important;
    }
    .input-group input {
        padding: 16px 16px 16px 48px !important;
        font-size: 16px !important; /* prevent iOS auto-zoom on focus */
    }
    
    .logo-img { height: 36px !important; } 
    header.scrolled .logo-img { height: 30px !important; }
    
    .header-btn { display: none !important; }
    
    .hero { padding-top: 140px; min-height: auto; padding-bottom: 60px; }
    .hero h1 { font-size: 2.5rem; margin-bottom: 16px; }
    .hero p { font-size: 1.05rem; margin-bottom: 32px; }
    
    .hero-metrics { flex-direction: column; gap: 20px; border-top: none; padding-top: 0; margin-top: 32px; }
    .metric-divider { display: none; }
    .metric { align-items: center; text-align: center; background: rgba(255,255,255,0.03); padding: 16px; border-radius: 4px; border: 1px solid var(--border-subtle); }
    
    .section-header h2 { font-size: 2.2rem; }
    .section-header p { font-size: 1rem; }
    
    .card { padding: 24px; }
    .card h3 { font-size: 1.35rem; }
    
    .pricing-amount { font-size: 3.5rem; }
    .pricing-amount span { font-size: 1rem; }
    
    .receipt-header { padding: 30px 20px; }
    .receipt-body { padding: 30px 20px; }
    
    .acc-content p { padding: 0 20px 20px; }
    .contact-subheading { font-size: 1rem; }
    
    .hero-btns { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-outline { width: 100%; }
    .floating-badge { display: none; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 48px; margin-bottom: 60px; }
    .footer-col a.footer-cta { width: 100%; text-align: center; }
    .footer-badges { flex-direction: column; gap: 10px; }
    .footer-bottom-text { font-size: 0.75rem; padding-top: 32px; }

    /* Pricing section mobile */
    .offer-left {
        padding: 28px 24px;
    }
    .offer-right {
        padding: 28px 24px;
    }
    .offer-price-placeholder {
        margin-top: 24px;
        padding: 28px 24px;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
    .offer-features-title {
        text-align: left;
    }
    .premium-features-list {
        gap: 24px;
    }
    .offer-footer {
        padding: 24px;
    }
    .offer-footer .cta-button-new {
        max-width: 100%;
    }
    /* Kontakt: Formular vor Trust-Badges auf Mobile */
    #kontakt .hero-grid {
        display: flex;
        flex-direction: column;
    }
    #kontakt .hero-grid .contact-form {
        order: -1;
    }

    /* Hero: kein Fullscreen auf Mobile – nächster Abschnitt sichtbar */
    .hero-section-new {
        min-height: unset;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    /* Anchor-Links: scroll-margin-top an echte Header-Höhe anpassen */
    section { scroll-margin-top: 70px; }
}

@media (max-width: 480px) {
    :root { --section-padding: 64px; }
    .hero h1 { font-size: 2rem; }
    .headline-new { font-size: 1.9rem !important; }
    .subheadline-new { font-size: 1rem !important; }
    .section-header h2 { font-size: 1.7rem; }
    .h2-large { font-size: 1.7rem !important; }
    .pricing-amount { font-size: 3rem; }
    .problem-card {
        padding: 20px;
        max-width: 100%;
    }
    .problem-title { font-size: 1.05rem; }
    .problem-card.card-large .problem-title { font-size: 1.2rem; }
    .contact-heading { font-size: 1.7rem !important; }
    .acc-header { font-size: 0.95rem; padding: 18px 20px; }
    .metric-value { font-size: 2rem; }

    /* Overrides for inline font-sizes */
    h2[style*="font-size: 3.2rem"],
    div[style*="font-size: 3.2rem"] { font-size: 1.7rem !important; }
    .contact-heading[style*="font-size: 3.5rem"] { font-size: 1.7rem !important; }
}


/* Hero price hint */
.hero-price-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 14px;
    text-align: center;
    line-height: 1.5;
}
.hero-price-hint i {
    color: #4ade80;
    margin-right: 5px;
}

/* Footer WhatsApp link */
.footer-whatsapp-link {
    color: #25D366;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* WhatsApp contact link in trust badges */
.whatsapp-contact-link {
    color: #25D366;
    text-decoration: none;
}
.whatsapp-contact-link:hover {
    text-decoration: underline;
}

/* --- HERO TRUST BADGES --- */
.hero-trust-elements {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.trust-badges {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 0;
}
.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.trust-badges span i {
    font-size: 0.7rem;
    opacity: 0.6;
}

/* --- TRUST PILL SMALL (hero inline) --- */
.trust-pill-small {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 8px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    flex-wrap: wrap;
    justify-content: center;
}

/* --- CONTACT TRUST BADGES (vertikal) --- */
.trust-badges-vertical {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 0;
}
.trust-item-v {
    display: flex;
    align-items: center;
    gap: 18px;
}
.trust-icon-v {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.trust-icon-v.blue  { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.trust-icon-v.green { background: rgba(16, 185, 129, 0.1); color: #34d399; }
.trust-icon-v.yellow { background: rgba(245, 158, 11, 0.1); color: #fbbf24; }
.trust-info-v {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.trust-title-v {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}
.trust-subtitle-v {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --- FUNNEL: FRAGEN & BUTTONS --- */
.funnel-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.funnel-question-large {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.funnel-buttons {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    align-items: center;
}
.funnel-buttons .btn-primary { flex: 1; justify-content: center; }
.funnel-buttons .btn-outline { flex-shrink: 0; }
@media (max-width: 480px) {
    .funnel-buttons { flex-direction: column; }
    .funnel-buttons .btn-primary,
    .funnel-buttons .btn-outline { width: 100%; flex: none; }
    .funnel-question { font-size: 1.1rem; }
    .funnel-question-large { font-size: 1.2rem; }
}

/* --- FUNNEL: PROGRESS LABELS --- */
.progress-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.progress-percentage-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- FUNNEL: SUCCESS SCREEN --- */
.success-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: #34d399;
}

/* --- FUNNEL: DATA SECURITY NOTE --- */
.data-security-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

/* =====================================================
   MOBILE-FIXES
   ===================================================== */

/* CTA-Button volle Breite auf Mobile */
@media (max-width: 600px) {
    .cta-button-new {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 16px 24px;
    }
    .subheadline-new {
        width: 100%;
    }
    /* Funnel-Container kein horizontales Padding-Overflow */
    .funnel-container {
        padding: 28px 20px !important;
    }
}

/* Accordion-Cursor auf Touch-Geräten */
@media (max-width: 900px) {
    .acc-header {
        cursor: pointer !important;
    }
}

/* --- MOBILE: GSAP animations skipped, keep elements visible --- */
@media (max-width: 899px) {
    .reveal-up {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --- ACCESSIBILITY: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto !important; }
    .reveal-up { opacity: 1 !important; transform: none !important; }
    .floating-lead-card { animation: none !important; }
    body { animation: none !important; }
}
