/* ============================================
   FINAN LANDING PAGE - CSS
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #0a6173;
    --primary-light: #0d8fa8;
    --primary-lighter: #11b4c6;
    --primary-dark: #084d5e;
    --primary-darker: #063a48;
    --primary-bg: #e8f6f9;
    --primary-bg-light: #f0f7f9;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --page-bg: #f8fbfc;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --navbar-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background-color: var(--page-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Cursor Glow (Desktop) --- */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,97,115,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
.cursor-glow.active { opacity: 1; }

/* --- Floating Circles Background --- */
.floating-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--primary);
    animation: floatAutonomous 20s ease-in-out infinite;
}
.floating-circle:nth-child(1) { width: 400px; height: 400px; top: -100px; left: -100px; animation-delay: 0s; }
.floating-circle:nth-child(2) { width: 300px; height: 300px; top: 50%; right: -80px; animation-delay: -5s; }
.floating-circle:nth-child(3) { width: 200px; height: 200px; bottom: 10%; left: 10%; animation-delay: -10s; }
.floating-circle:nth-child(4) { width: 350px; height: 350px; top: 30%; left: 40%; animation-delay: -15s; opacity: 0.03; }
.floating-circle:nth-child(5) { width: 250px; height: 250px; bottom: -50px; right: 20%; animation-delay: -8s; }

@keyframes floatAutonomous {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    transition: color var(--transition);
}
.navbar.scrolled .navbar-brand { color: var(--primary); }
.navbar-brand svg { width: 36px; height: 36px; }

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.navbar-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
    position: relative;
}
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}
.navbar-links a:hover::after { width: 100%; }
.navbar-links a:hover { color: var(--white); }
.navbar.scrolled .navbar-links a { color: var(--gray-600); }
.navbar.scrolled .navbar-links a:hover { color: var(--primary); }

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245,158,11,0.3);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.navbar.scrolled .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}
.navbar.scrolled .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
}
.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Pulse animation for CTA */
.btn-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 14px rgba(245,158,11,0.3); }
    50% { box-shadow: 0 4px 30px rgba(245,158,11,0.5); }
}

/* Mobile menu toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.navbar.scrolled .navbar-toggle span { background: var(--gray-700); }
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu - hidden by default */
.navbar-mobile {
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a6173 0%, #0d8fa8 50%, #11b4c6 100%);
    overflow: hidden;
    padding-top: var(--navbar-height);
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { color: var(--white); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge svg { width: 16px; height: 16px; }
.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.hero-title span {
    display: block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.hero-trust-item svg { width: 18px; height: 18px; opacity: 0.9; }

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-phone-wrapper {
    position: relative;
    animation: heroFloat 6s ease-in-out infinite;
}
.hero-phone-wrapper img {
    max-height: 550px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
}
/* Placeholder when image is missing */
.hero-phone-placeholder {
    width: 280px;
    height: 550px;
    background: rgba(255,255,255,0.1);
    border-radius: 2rem;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.hero-phone-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.4;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    z-index: 1;
}
.partners-label {
    text-align: center;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-300);
    transition: color var(--transition);
    filter: grayscale(100%);
    opacity: 0.5;
}
.partner-logo:hover {
    color: var(--gray-600);
    filter: grayscale(0%);
    opacity: 1;
}
.partner-logo svg { width: 28px; height: 28px; }

/* Marquee for mobile */
@media (max-width: 640px) {
    .partners-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        animation: marquee 15s linear infinite;
        gap: 3rem;
    }
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}
.section-alt { background: var(--primary-bg-light); }
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: var(--primary-bg);
    color: var(--primary);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}
.feature-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(16.66% + 1rem);
    right: calc(16.66% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
    z-index: 0;
}
.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(10,97,115,0.25);
}
.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.step-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   APP PREVIEW SECTION
   ============================================ */
.app-preview {
    text-align: center;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    background: var(--primary-bg-light);
}
.app-preview-image {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.app-preview-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}
.app-preview-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-bg), var(--white));
    border-radius: var(--radius-2xl);
    border: 2px dashed var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gray-400);
}
.app-preview-placeholder svg { width: 64px; height: 64px; }
.app-preview-placeholder span { font-size: 0.875rem; }

/* Floating UI elements */
.floating-element {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    animation: floatElement 4s ease-in-out infinite;
}
.floating-element:nth-child(2) { animation-delay: -1s; }
.floating-element:nth-child(3) { animation-delay: -2s; }
.floating-element:nth-child(4) { animation-delay: -3s; }
.fe-top-left { top: 10%; left: -5%; }
.fe-top-right { top: 5%; right: -5%; }
.fe-bottom-left { bottom: 15%; left: -8%; }
.fe-bottom-right { bottom: 10%; right: -8%; }

@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: linear-gradient(135deg, #0a6173 0%, #0d8fa8 50%, #11b4c6 100%);
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    color: var(--white);
}
.stat-item h3 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.375rem;
}
.stat-item p {
    font-size: 0.9375rem;
    opacity: 0.8;
    color: var(--white);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: 100%;
    padding: 0 1rem;
}
.testimonial-inner {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    text-align: center;
}
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
}
.testimonial-stars svg { width: 20px; height: 20px; }
.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    overflow: hidden;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
}
.testimonial-info p {
    font-size: 0.8125rem;
    color: var(--gray-400);
}
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.testimonials-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #0a6173 0%, #0d8fa8 50%, #11b4c6 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}
.newsletter-inner {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-inner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.newsletter-inner p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 440px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition);
    min-width: 0;
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form button {
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 0;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-brand svg { width: 32px; height: 32px; }
.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-400);
    max-width: 300px;
}
.footer h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--gray-400);
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.8125rem;
}
.footer-bottom-links a:hover { color: var(--gray-300); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #0a6173 0%, #0d8fa8 50%, #11b4c6 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.page-header h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.page-header p {
    font-size: 1.0625rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
}
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error {
    font-size: 0.8125rem;
    color: #dc2626;
    margin-top: 0.375rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg { width: 24px; height: 24px; }
.contact-info-text h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}
.contact-info-text p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Flash messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    position: relative;
    z-index: 1;
}
.legal-content {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    padding: 3rem 0 5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.legal-toc {
    position: sticky;
    top: calc(var(--navbar-height) + 2rem);
    align-self: start;
}
.legal-toc h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 1rem;
}
.legal-toc ul li { margin-bottom: 0.5rem; }
.legal-toc ul a {
    font-size: 0.875rem;
    color: var(--gray-500);
    display: block;
    padding: 0.25rem 0;
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
    transition: all var(--transition);
}
.legal-toc ul a:hover,
.legal-toc ul a.active {
    color: var(--primary);
    border-left-color: var(--primary);
}
.legal-body {
    max-width: 700px;
}
.legal-update {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}
.legal-body h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}
.legal-body h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.legal-body p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-body ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-body ul li {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ============================================
   WAITLIST PAGE
   ============================================ */

/* Hero variant: centered single-column */
.hero--waitlist .container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 720px;
}
.hero--waitlist .hero-description {
    margin: 0 auto 2rem;
    max-width: 560px;
}
.hero--waitlist .hero-buttons {
    justify-content: center;
}
.hero--waitlist .hero-trust {
    justify-content: center;
}

/* Problem cards grid */
.waitlist-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.waitlist-problems-grid .feature-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.waitlist-problems-grid .feature-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}
.waitlist-problems-grid .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
}
.waitlist-problems-grid .feature-card p {
    font-size: 0.875rem;
}

/* Solution benefits list */
.waitlist-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.benefit-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--gray-100);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all var(--transition);
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-bg);
}
.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-card h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}
.benefit-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Social proof mini section */
.waitlist-social-proof {
    text-align: center;
    padding: 3.5rem 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}
.waitlist-social-proof h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.avatar-stack {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.avatar-stack .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-bg);
    border: 3px solid var(--white);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}
.avatar-stack .avatar:first-child { margin-left: 0; }
.avatar-stack .avatar:nth-child(even) { background: #fef3c7; color: #92400e; }
.avatar-stack .avatar:nth-child(3n) { background: #d1fae5; color: #065f46; }

/* Waitlist form section */
.waitlist-form-section {
    background: linear-gradient(135deg, #0a6173 0%, #0d8fa8 50%, #11b4c6 100%);
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}
.waitlist-form-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.waitlist-form-card h2 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.waitlist-form-card .subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}
.waitlist-form-card .form-group input {
    border-radius: var(--radius-full);
    padding: 0.875rem 1.25rem;
}
.waitlist-form-card .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}
.waitlist-privacy-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}
.waitlist-privacy-note svg { width: 14px; height: 14px; flex-shrink: 0; }
.waitlist-privacy-note a {
    color: var(--primary);
    text-decoration: underline;
}

/* Alert info (for duplicate email) */
.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ============================================
   HOME PAGE - HERO VARIANT (centered, no image)
   ============================================ */
.hero--home .container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
}
.hero--home .hero-description {
    margin: 0 auto 2rem;
    max-width: 600px;
}
.hero--home .hero-buttons {
    justify-content: center;
}
.hero--home .hero-trust {
    justify-content: center;
}
.hero--home .hero-content {
    position: relative;
    z-index: 1;
}

/* Subtle dot pattern overlay on home hero */
.hero--home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

/* Animated badge dot */
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Hero inline form */
.hero-inline-form {
    display: flex;
    gap: 0.75rem;
    max-width: 540px;
    margin: 0 auto 1.5rem;
}
.hero-inline-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-family: var(--font-body);
    background: rgba(255,255,255,0.12);
    color: var(--white);
    backdrop-filter: blur(8px);
    outline: none;
    transition: all var(--transition);
    min-width: 0;
}
.hero-inline-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.6);
}
.hero-inline-form input[type="email"]:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.18);
}
.hero-inline-form .btn {
    flex-shrink: 0;
}
.hero-form-error {
    color: #fca5a5;
    font-size: 0.875rem;
    margin-top: -0.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* ============================================
   HOME PAGE - PROBLEMS SECTION
   ============================================ */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.problem-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.25rem 2rem;
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
    opacity: 0.3;
}
.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.problem-card:hover::before {
    transform: scaleX(1);
}
.problem-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.problem-icon svg { width: 28px; height: 28px; }
.problem-icon--red { background: #fef2f2; color: #dc2626; }
.problem-icon--orange { background: #fff7ed; color: #ea580c; }
.problem-icon--yellow { background: #fef9c3; color: #ca8a04; }
.problem-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}
.problem-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   HOME PAGE - SOLUTIONS SECTION
   ============================================ */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.solution-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-100);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all var(--transition);
}
.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-bg);
}
.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.solution-icon svg { width: 24px; height: 24px; }
.solution-card h3 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
}
.solution-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Features grid 2-col variant */
.features-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

/* ============================================
   HOME PAGE - SOCIAL PROOF BANNER
   ============================================ */
.social-proof-banner {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 4.5rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.social-proof-banner h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.social-proof-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    max-width: 440px;
    margin: 0 auto;
}
.social-proof-banner .avatar-stack {
    margin-bottom: 1.5rem;
}
.social-proof-banner .avatar-stack .avatar {
    border-color: rgba(10,97,115,0.4);
    width: 48px;
    height: 48px;
    font-size: 0.875rem;
}

/* ============================================
   WAITLIST NAVBAR (minimal)
   ============================================ */
.navbar--waitlist .navbar-links,
.navbar--waitlist .navbar-toggle {
    display: none;
}
.navbar--waitlist .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar--waitlist .navbar-actions {
    display: flex;
}

/* ============================================
   WAITLIST FOOTER (minimal)
   ============================================ */
.footer--waitlist {
    padding: 2.5rem 0;
    border-top: 1px solid var(--gray-100);
    background: var(--white);
}
.footer-waitlist-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}
.footer-waitlist-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.footer-waitlist-bottom p {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin: 0;
}

/* ============================================
   HOME PAGE - CTA FINAL WITH FORM
   ============================================ */
.cta-final {
    background: linear-gradient(135deg, #0a6173 0%, #0d8fa8 50%, #11b4c6 100%);
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}
.cta-final-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 3.5rem 3rem;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    text-align: center;
}
.cta-final-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.cta-final-subtitle {
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}
.cta-final-form .cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.cta-final-form input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition);
}
.cta-final-form input:focus {
    border-color: var(--primary);
}
.cta-final-form .btn {
    width: 100%;
}
.cta-privacy-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}
.cta-privacy-note a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 1rem;
    pointer-events: none;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.cookie-banner.hiding {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner-inner {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    flex: 1;
    min-width: 0;
}
.cookie-banner-icon {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 0.125rem;
}
.cookie-banner-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--gray-600);
    margin: 0;
}
.cookie-banner-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}
.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.fade-left {
    transform: translateX(-30px);
}
.reveal.fade-right {
    transform: translateX(30px);
}
.reveal.zoom {
    transform: scale(0.9);
}
.reveal.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }
    .hero-content { order: 1; }
    .hero-image { order: 0; }
    .hero-title { font-size: 2.5rem; }
    .hero-description { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-phone-wrapper img { max-height: 350px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .steps-grid::before { display: none; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

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

    .waitlist-problems-grid { grid-template-columns: 1fr; }
    .waitlist-benefits-list { grid-template-columns: 1fr; }

    .problems-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }
    .features-grid--2col { grid-template-columns: 1fr; }
    .cta-final-form .cta-form-row { grid-template-columns: 1fr; }

    .legal-content { grid-template-columns: 1fr; }
    .legal-toc {
        position: static;
        border-bottom: 1px solid var(--gray-200);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --navbar-height: 70px; }

    .navbar-links,
    .navbar-actions { display: none; }
    .navbar-toggle { display: flex; }

    /* Mobile menu */
    .navbar-mobile {
        display: none;
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 1.5rem;
        z-index: 999;
    }
    .navbar-mobile.open { display: block; }
    .navbar-mobile a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
        color: var(--gray-700);
        font-weight: 500;
        border-bottom: 1px solid var(--gray-100);
    }
    .navbar-mobile a:last-child { border-bottom: none; }
    .navbar-mobile .btn {
        width: 100%;
        margin-top: 1rem;
    }

    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.75rem; }

    .hero { min-height: auto; padding: 6rem 0 3rem; }
    .hero-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; gap: 0.75rem; }
    .hero-phone-wrapper img { max-height: 280px; }

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

    .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .newsletter-form { flex-direction: column; }

    .hero-inline-form {
        flex-direction: column;
        max-width: 400px;
    }
    .hero-inline-form .btn {
        width: 100%;
    }

    .problems-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .solutions-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .features-grid--2col { grid-template-columns: 1fr; }

    .social-proof-banner { padding: 3rem 0; }
    .social-proof-banner h3 { font-size: 1.35rem; }

    .cta-final { padding: 3.5rem 0; }
    .cta-final-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    .cta-final-card h2 { font-size: 1.5rem; }
    .cta-final-form .cta-form-row { grid-template-columns: 1fr; }

    .cta-section h2 { font-size: 1.75rem; }

    .page-header { padding: 6rem 0 3rem; }
    .page-header h1 { font-size: 1.75rem; }

    .waitlist-form-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    .waitlist-problems-grid .feature-card {
        flex-direction: column;
    }

    .floating-element { display: none; }
    .cursor-glow { display: none; }

    .footer-waitlist-top {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-waitlist-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .cookie-banner { padding: 0.75rem; }
    .cookie-banner-inner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        text-align: center;
    }
    .cookie-banner-content {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .cookie-banner-actions {
        width: 100%;
    }
    .cookie-banner-actions .btn {
        flex: 1;
    }
}

/* Small mobile */
@media (max-width: 375px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: 1.75rem; }
    .section-title { font-size: 1.5rem; }
}
