/**
 * Skoolie School Landing Theme
 * Premium UI/UX Design System with Modern Animations
 * @version 9.0.0
 */

/* Google Fonts loaded via <link> in header.php for better performance */

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ========================================
   MODERN ANIMATION KEYFRAMES
   ======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
    50% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.5); }
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 0.5; }
    100% { transform: scale(4); opacity: 0; }
}

@keyframes slideInFromRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutToLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100%); opacity: 0; }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

@keyframes checkmark {
    0% { stroke-dashoffset: 50; }
    100% { stroke-dashoffset: 0; }
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

:root {
    /* ============================================
       COLOR SYSTEM - Consistent Hierarchy
       ============================================ */
    
    /* Primary Palette */
    --primary: #111111;
    --primary-dark: #0a0a0a;
    --navy: #1e293b;
    --navy-light: #334155;
    
    /* Brand Accent (Gold) */
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-dark: #b45309;
    --accent-light: #fef3c7;
    --accent-muted: rgba(245, 158, 11, 0.15);
    
    /* Semantic Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f97316;
    --warning-light: #ffedd5;
    --danger: #dc2626;
    --danger-light: #fee2e2;
    --info: #3b82f6;
    --info-light: #dbeafe;
    
    /* Neutral Scale */
    --white: #ffffff;
    --off-white: #fafaf9;
    --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;
    
    /* Text Color Hierarchy (for light backgrounds) */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-700);
    --text-tertiary: var(--gray-500);
    --text-muted: var(--gray-400);
    --text-inverse: var(--white);
    
    /* Text Color Hierarchy (for dark backgrounds) */
    --text-dark-primary: rgba(255, 255, 255, 0.95);
    --text-dark-secondary: rgba(255, 255, 255, 0.80);
    --text-dark-tertiary: rgba(255, 255, 255, 0.60);
    --text-dark-muted: rgba(255, 255, 255, 0.40);
    
    /* ============================================
       TYPOGRAPHY SYSTEM
       ============================================ */
    
    /* Font Families */
    --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-heading: 'Oswald', 'Bebas Neue', system-ui, sans-serif;
    --font-signature: 'Great Vibes', 'Allura', cursive;
    --font: var(--font-body);
    
    /* Font Sizes - Mobile First (fluid) */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Line Heights */
    --leading-tight: 1.2;
    --leading-snug: 1.35;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 1.8;
    
    /* Letter Spacing */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.02em;
    --tracking-wider: 0.05em;
    
    /* ============================================
       SPACING & LAYOUT
       ============================================ */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* ============================================
       SHADOWS & EFFECTS
       ============================================ */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 6px 12px -2px rgba(0,0,0,0.12), 0 3px 6px -3px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.12), 0 8px 10px -6px rgba(0,0,0,0.08);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-form: 0 25px 60px -15px rgba(0,0,0,0.3), 0 0 40px rgba(245, 158, 11, 0.08);
    --shadow-accent: 0 10px 30px -5px rgba(245, 158, 11, 0.25);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-bg-dark: rgba(17, 17, 17, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(16px);
    
    /* ============================================
       TRANSITIONS & TIMING
       ============================================ */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* ============================================
       MODERN TECH AESTHETIC
       ============================================ */
    --glow-accent: 0 0 20px rgba(245, 158, 11, 0.4);
    --glow-success: 0 0 20px rgba(16, 185, 129, 0.4);
    --glow-info: 0 0 20px rgba(59, 130, 246, 0.4);
    --gradient-tech: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    --gradient-dark: linear-gradient(180deg, var(--gray-900) 0%, #0a0a0a 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--off-white);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
    font-weight: var(--font-normal);
    font-size: var(--text-base);
    padding-top: 56px; /* Account for fixed header on mobile */
}

@media (min-width: 768px) {
    body {
        padding-top: 64px; /* Taller header on desktop */
    }
}

/* Lock body scroll when menu is open */
body.ss-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Prevent horizontal overscroll on all major wrappers */
.hero,
.hero-container,
.adv-story,
.content-section,
.who-am-i,
.footer {
    max-width: 100%;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

/* Headings - Oswald for impact */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--text-primary);
    margin: 0;
}

h1, .h1 {
    font-size: clamp(2rem, 5vw, var(--text-5xl));
    font-weight: var(--font-extrabold);
}

h2, .h2 {
    font-size: clamp(1.5rem, 4vw, var(--text-4xl));
}

h3, .h3 {
    font-size: clamp(1.25rem, 3vw, var(--text-2xl));
    font-weight: var(--font-semibold);
}

h4, .h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
}

/* Body Text Classes */
.text-lead {
    font-size: clamp(1.125rem, 2.5vw, var(--text-xl));
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

.text-eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--accent);
    margin-bottom: 8px;
}

.text-signature {
    font-family: var(--font-signature);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
}

/* Dark background text utilities */
.on-dark { color: var(--text-dark-primary); }
.on-dark h1, .on-dark h2, .on-dark h3,
.on-dark h4, .on-dark h5, .on-dark h6 { color: var(--text-dark-primary); }
.on-dark p { color: var(--text-dark-secondary); }
.on-dark .text-muted { color: var(--text-dark-tertiary); }

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-hover);
}

/* Strong emphasis */
strong, b {
    font-weight: var(--font-semibold);
}

/* ========================================
   SOCIAL PROOF TOAST - Modern Tech Aesthetic
   ======================================== */
.social-proof-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 14px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255,255,255,0.8) inset;
    z-index: 1000;
    transform: translateX(-120%) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 240px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.social-proof-toast::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-shimmer);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.social-proof-toast.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.social-proof-toast.show::before {
    opacity: 1;
}

.toast-emoji { 
    font-size: 1.25rem;
    animation: bounceIn 0.5s ease-out;
}

.social-proof-toast .toast-content {
    flex: 1;
    min-width: 0;
}

.social-proof-toast .name { 
    font-weight: 600; 
    font-size: 0.75rem; 
    color: var(--gray-900);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-proof-toast .action { 
    font-size: 0.7rem; 
    color: var(--gray-600);
    display: block;
}

.social-proof-toast .time { 
    font-size: 0.65rem; 
    color: var(--accent);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-proof-toast .time::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@media (max-width: 640px) {
    .social-proof-toast {
        left: 12px;
        bottom: 12px;
        max-width: 200px;
        padding: 8px 12px;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: calc(100vh - 56px); /* Account for fixed header */
    min-height: calc(100dvh - 56px);
    display: flex;
    align-items: center;
    padding: 32px 24px;
    background: linear-gradient(160deg, var(--gray-900) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 700px 500px at 15% 15%, rgba(245, 158, 11, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 500px 400px at 85% 85%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
    pointer-events: none;
    transform: translateY(calc(var(--scroll-y, 0) * 0.3));
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
    pointer-events: none;
    transform: translateY(calc(var(--scroll-y, 0) * 0.15));
    will-change: transform;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 64px;
    align-items: center;
}

.hero-content {
    color: var(--white);
    transform: translateY(calc(var(--scroll-y, 0) * -0.08));
    will-change: transform;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--accent);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
    margin-bottom: 20px;
    letter-spacing: var(--tracking-tight);
    color: var(--text-dark-primary);
}

.hero-title .highlight {
    color: var(--accent);
    display: inline;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: var(--font-normal);
    color: var(--text-dark-secondary);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: var(--leading-relaxed);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-300);
}

.trust-emoji { font-size: 1.5rem; }

/* ========================================
   FORM CARD
   ======================================== */
.form-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-form);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transform: translateY(calc(var(--scroll-y, 0) * -0.04));
    will-change: transform;
}

.form-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 28px 32px;
    text-align: center;
    color: var(--white);
}

.form-header-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    letter-spacing: var(--tracking-tight);
    margin-bottom: 4px;
}

.form-header-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    opacity: 0.9;
}

.form-body {
    padding: 32px;
}

.progress-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.progress-step {
    flex: 1;
    height: 6px;
    background: var(--gray-200);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-step::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
}

.progress-step.active {
    background: var(--accent);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.progress-step.active::after {
    animation: shimmer 1.5s ease-in-out infinite;
}

.progress-step.completed {
    background: var(--accent);
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-text:last-child {
    width: 60%;
}

.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.skeleton-card {
    padding: 20px;
    border-radius: var(--radius);
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
}

.form-step.active {
    display: block;
    animation: slideInStep 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInStep {
    from { 
        opacity: 0; 
        transform: translateX(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

/* Step exit animation */
.form-step.exiting {
    animation: slideOutStep 0.3s ease forwards;
}

@keyframes slideOutStep {
    from { 
        opacity: 1; 
        transform: translateX(0); 
    }
    to { 
        opacity: 0; 
        transform: translateX(-30px); 
    }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 24px;
}

.option-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 20px;
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font);
    position: relative;
    overflow: hidden;
}

.option-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.option-btn:hover::before {
    left: 100%;
}

.option-btn:hover {
    background: var(--white);
    border-color: var(--gray-300);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.option-btn:active {
    transform: translateY(-2px) scale(0.99);
}

.option-btn.selected {
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(254, 243, 199, 0.8) 100%);
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2), inset 0 0 0 1px rgba(245, 158, 11, 0.1);
    animation: scaleIn 0.3s ease-out;
}

.option-btn.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 12px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: bounceIn 0.4s ease-out;
}

/* Adult Summer Camp: checkbox/radio option buttons */
.option-btn--checkbox,
.option-btn--radio {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-btn--checkbox input,
.option-btn--radio input {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--accent);
}

.option-btn--checkbox .option-text,
.option-btn--radio .option-text {
    flex: 1;
    font-size: 1rem;
    color: var(--gray-800);
}

.option-btn--checkbox:has(input:checked),
.option-btn--radio:has(input:checked) {
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(254, 243, 199, 0.8) 100%);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.option-btn--checkbox.selected::after,
.option-btn--radio.selected::after {
    content: none;
}

.option-emoji {
    font-size: 2.25rem;
    flex-shrink: 0;
    line-height: 1;
}

.option-text {
    flex: 1;
    min-width: 0;
}

.option-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.option-text span {
    font-size: 0.9rem;
    color: var(--gray-500);
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px 18px;
    font-size: 1rem;
    font-family: var(--font);
    color: var(--gray-900);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input::placeholder {
    color: var(--gray-400);
    transition: opacity 0.2s, transform 0.2s;
}

.form-input:focus::placeholder {
    opacity: 0.5;
    transform: translateX(4px);
}

.form-input:hover:not(:focus) {
    border-color: var(--gray-300);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15), var(--glow-accent);
    transform: translateY(-1px);
}

/* Input with validation states */
.form-input.is-valid {
    border-color: var(--success);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-input.is-valid:focus {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), var(--glow-success);
}

.form-input.is-invalid {
    border-color: var(--danger);
    animation: shake 0.4s ease-in-out;
}

.form-input.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}

/* Floating label effect */
.form-group-float {
    position: relative;
}

.form-group-float .form-input {
    padding-top: 24px;
    padding-bottom: 8px;
}

.form-group-float .form-label-float {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--gray-400);
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-group-float .form-input:focus ~ .form-label-float,
.form-group-float .form-input:not(:placeholder-shown) ~ .form-label-float {
    top: 12px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
}

.consent-box {
    background: var(--gray-50);
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.consent-box p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.consent-box a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* BUTTONS - Modern with Ripple Effect */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 28px;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 1;
}

/* Ripple effect container */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5), var(--glow-accent);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    margin-top: 12px;
}

.btn-secondary:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

.btn-secondary .ripple {
    background: rgba(0, 0, 0, 0.1);
}

.btn-xl {
    padding: 22px 36px;
    font-size: 1.2rem;
}

/* Button Loading State */
.btn.is-loading {
    pointer-events: none;
    position: relative;
}

.btn.is-loading .btn-text {
    opacity: 0;
}

.btn.is-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Success State */
.btn.is-success {
    background: var(--success) !important;
    box-shadow: var(--glow-success);
}

.btn.is-success::after {
    content: '✓';
    animation: bounceIn 0.4s ease-out;
}

.loading {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* THANK YOU */
.thank-you {
    text-align: center;
    padding: 16px 0;
}

.thank-you-emoji {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: block;
}

.thank-you h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.thank-you > p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.thank-you-next-steps {
    background: var(--success-light);
    padding: 24px;
    border-radius: var(--radius);
    text-align: left;
}

.thank-you-next-steps .next-steps-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.thank-you-next-steps ul {
    list-style: none;
}

.thank-you-next-steps li {
    padding: 8px 0;
    font-size: 1rem;
    color: var(--gray-700);
}

.form-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
    margin-top: 20px;
}

.form-footer-text {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ========================================
   ADVERTORIAL STORY
   ======================================== */
.adv-story {
    background: var(--gray-900);
    padding: 96px 24px;
    color: var(--gray-200);
}

.adv-story__inner {
    max-width: 720px;
    margin: 0 auto;
}

.adv-story__lead {
    text-align: center;
    margin-bottom: 64px;
}

.adv-story__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.adv-story__headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-extrabold);
    color: var(--text-dark-primary);
    line-height: var(--leading-tight);
    margin-bottom: 20px;
    letter-spacing: var(--tracking-tight);
}

.adv-story__deck {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    color: var(--text-dark-tertiary);
    line-height: var(--leading-relaxed);
    max-width: 560px;
    margin: 0 auto;
}

.adv-story__body {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: var(--leading-loose);
}

.adv-story__body p {
    margin-bottom: 24px;
    color: var(--text-dark-secondary);
}

.adv-story__body em {
    color: var(--gray-400);
    font-style: italic;
}

.adv-story__hook {
    font-size: 1.35rem !important;
    color: var(--white) !important;
    font-weight: 500;
}

.adv-story__emphasis {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
}

.adv-story__section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin: 64px 0 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-700);
}

.adv-story__section-title--hope {
    color: var(--success);
    border-color: var(--success);
}

/* CALLOUTS */
.adv-story__callout {
    background: var(--gray-800);
    border-radius: var(--radius);
    padding: 32px;
    margin: 32px 0;
    border-left: 5px solid var(--gray-600);
}

.adv-story__callout p {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.adv-story__callout p:last-child {
    margin-bottom: 0;
}

.adv-story__callout-lead {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: var(--white) !important;
}

.adv-story__callout--pain {
    border-color: var(--danger);
    background: rgba(220, 38, 38, 0.06);
}

.adv-story__callout--dark {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--gray-700);
}

.adv-story__callout--solution {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.08);
}

/* STATS */
.adv-story__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--gray-800) 0%, rgba(31, 41, 55, 0.8) 100%);
    border-radius: var(--radius);
    border: 1px solid var(--gray-700);
}

.adv-story__stat {
    text-align: center;
}

.adv-story__stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.adv-story__stat-text {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.4;
}

.adv-story__disclaimer {
    font-size: 0.85rem !important;
    color: var(--gray-500) !important;
    text-align: center;
    font-style: italic;
    margin-top: -20px !important;
}

/* MISTAKES */
.adv-story__mistakes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
}

.adv-story__mistake {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--gray-800);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.adv-story__mistake-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.adv-story__mistake strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.adv-story__mistake p {
    margin: 0 !important;
    font-size: 1.05rem !important;
    color: var(--gray-400) !important;
    line-height: 1.6 !important;
}

/* DIVIDER */
.adv-story__divider {
    text-align: center;
    padding: 64px 0;
    font-size: 3rem;
}

/* BENEFITS */
.adv-story__benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
}

.adv-story__benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: var(--radius);
    border-left: 4px solid var(--success);
}

.adv-story__benefit span:first-child {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
}

.adv-story__benefit span:last-child {
    font-size: 1.15rem;
    color: var(--gray-200);
    line-height: 1.5;
}

/* FINAL CTA */
.adv-story__final {
    text-align: center;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-700);
}

.adv-story__final-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.adv-story__final p {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.adv-story__final .btn {
    max-width: 360px;
    margin: 32px auto 0;
}

.adv-story__final-note {
    font-size: 0.95rem !important;
    color: var(--gray-500) !important;
    margin-top: 16px !important;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
    padding: 96px 24px;
    background: var(--off-white);
}

.content-section__inner {
    max-width: 800px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
}

.section-emoji {
    font-size: 2.25rem;
}

/* CHECK LIST */
.check-list {
    list-style: none;
    margin-bottom: 64px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-size: 1.15rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.check-list li span:first-child {
    font-size: 1.75rem;
}

/* CARD GRID */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.info-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), var(--glow-accent);
    border-color: rgba(245, 158, 11, 0.2);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card__emoji {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* FAQ */
.faq-list {
    margin-bottom: 64px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    line-height: var(--leading-snug);
    text-align: left;
    transition: color 0.2s ease;
}

.faq-q:hover {
    color: var(--accent);
}

.faq-q span {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--gray-400);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-q span {
    transform: rotate(45deg);
    color: var(--accent);
}

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

.faq-item.open .faq-a {
    max-height: 300px;
    opacity: 1;
}

.faq-item {
    transition: background 0.2s ease;
    margin: 0 -12px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
}

.faq-item:hover {
    background: rgba(245, 158, 11, 0.03);
}

.faq-a p {
    padding-bottom: 24px;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

/* CTA BOX */
.cta-box {
    background: var(--gray-900);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.cta-box .btn {
    max-width: 300px;
    margin: 0 auto;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary);
    padding: 48px 24px;
    text-align: center;
    color: var(--gray-400);
}

.footer__inner {
    max-width: 640px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-dark-tertiary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.disclaimer {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--text-dark-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: 16px;
}

.copyright {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-dark-muted);
}

/* ========================================
   LIGHTBOX - Enhanced Mobile Support
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 16px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.lightbox.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
}

.lightbox-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.lightbox-close {
    background: var(--gray-100);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
    line-height: 1;
    transition: all 0.2s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lightbox-close:hover,
.lightbox-close:focus {
    background: var(--gray-200);
    color: var(--gray-900);
}

.lightbox-body {
    padding: 24px;
}

.lightbox-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--gray-900);
}

.lightbox-body h4:first-child {
    margin-top: 0;
}

.lightbox-body p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.lightbox-body p:last-child {
    margin-bottom: 0;
}

.lightbox-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.lightbox-body a:hover {
    color: var(--accent-dark);
}

/* Prevent scroll when lightbox is open */
body.ss-lightbox-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Mobile lightbox improvements */
@media (max-width: 640px) {
    .lightbox {
        padding: 12px;
        align-items: flex-end;
    }
    
    .lightbox-content {
        max-height: 90vh;
        border-radius: var(--radius) var(--radius) 0 0;
        margin-bottom: 0;
    }
    
    .lightbox-header {
        padding: 16px 20px;
    }
    
    .lightbox-header h3 {
        font-size: 1.1rem;
    }
    
    .lightbox-body {
        padding: 20px;
    }
    
    .lightbox-body p {
        font-size: 0.9rem;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 560px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .form-card {
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 32px 16px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .form-card {
        max-width: none;
        margin: 0;
    }
    
    .form-header {
        padding: 24px;
    }
    
    .form-body {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .option-btn {
        padding: 16px;
    }
    
    .option-emoji {
        font-size: 2rem;
    }
    
    .adv-story {
        padding: 64px 20px;
    }
    
    .adv-story__headline {
        font-size: 1.75rem;
    }
    
    .adv-story__body {
        font-size: 1.1rem;
    }
    
    .adv-story__stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px;
    }
    
    .adv-story__stat-num {
        font-size: 2.5rem;
    }
    
    .adv-story__mistake {
        flex-direction: column;
        gap: 12px;
    }
    
    .adv-story__mistake-emoji {
        font-size: 2rem;
    }
    
    .adv-story__section-title {
        font-size: 1.5rem;
    }
    
    .adv-story__final-title {
        font-size: 1.75rem;
    }
    
    .content-section {
        padding: 64px 20px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .cta-box {
        padding: 36px 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 24px 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .urgency-badge {
        font-size: 0.75rem;
        padding: 10px 16px;
    }
    
    .form-header {
        padding: 20px;
    }
    
    .form-body {
        padding: 20px;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .adv-story {
        padding: 48px 16px;
    }
    
    .adv-story__headline {
        font-size: 1.5rem;
    }
    
    .adv-story__callout {
        padding: 24px;
    }
    
    .content-section {
        padding: 48px 16px;
    }
    
    .info-card {
        padding: 24px;
    }
}

/* ========================================
   LEGACY MOBILE HEADER (deprecated - using ss-site-header)
   ======================================== */
.ss-mobile-header {
    display: none;
}

.ss-mobile-header-top {
    display: none;
}

/* Menu Backdrop */
.ss-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10000;
}

.ss-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.ss-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Drawer */
.ss-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100%;
    height: 100dvh;
    background: var(--gray-900);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
}

.ss-menu-drawer.active {
    transform: translateX(0);
    opacity: 1;
}

/* Stagger menu items on open */
.ss-menu-drawer.active .ss-drawer-link {
    animation: fadeInRight 0.4s ease forwards;
    opacity: 0;
}

.ss-menu-drawer.active li:nth-child(1) .ss-drawer-link { animation-delay: 0.05s; }
.ss-menu-drawer.active li:nth-child(2) .ss-drawer-link { animation-delay: 0.1s; }
.ss-menu-drawer.active li:nth-child(3) .ss-drawer-link { animation-delay: 0.15s; }
.ss-menu-drawer.active li:nth-child(4) .ss-drawer-link { animation-delay: 0.2s; }
.ss-menu-drawer.active li:nth-child(5) .ss-drawer-link { animation-delay: 0.25s; }

.ss-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--gray-700);
}

.ss-drawer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

/* Drawer Logo Image */
.ss-drawer-logo-link {
    display: flex;
    align-items: center;
}

.ss-drawer-logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
}

@media (min-width: 768px) {
    .ss-drawer-logo-img {
        height: 52px;
        max-width: 220px;
    }
}

.ss-drawer-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.ss-drawer-close:hover {
    color: var(--white);
}

.ss-drawer-nav {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    flex: 1;
}

.ss-drawer-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    color: var(--gray-200);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.ss-drawer-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.ss-drawer-icon {
    font-size: 1.5rem;
    width: 32px;
    text-align: center;
}

.ss-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--gray-700);
}

.ss-drawer-tagline {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    text-align: center;
}

/* Site header is always visible on all devices */

/* ========================================
   FULLSCREEN EXIT BUTTON
   ======================================== */
.ss-fullscreen-exit {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-family: var(--font);
    cursor: pointer;
    z-index: 9999;
    transition: background 0.2s, transform 0.2s;
}

.ss-fullscreen-exit:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: scale(1.02);
}

/* ========================================
   GEO CONSENT UI
   ======================================== */
.ss-geo-consent {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 20px 24px;
    max-width: 400px;
    width: calc(100% - 32px);
    z-index: 1000;
    animation: ssSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ssSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.ss-geo-consent-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin: 0 0 16px;
    line-height: 1.5;
}

.ss-geo-consent-buttons {
    display: flex;
    gap: 12px;
}

.ss-geo-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s;
}

.ss-geo-allow {
    background: var(--accent);
    color: var(--white);
    border: none;
}

.ss-geo-allow:hover {
    background: var(--accent-dark);
}

.ss-geo-deny {
    background: var(--gray-100);
    color: var(--gray-700);
    border: none;
}

.ss-geo-deny:hover {
    background: var(--gray-200);
}

/* ========================================
   WHO AM I SECTION
   ======================================== */
.who-am-i {
    padding: 96px 24px;
    background: var(--white);
}

.who-am-i__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.who-am-i__image {
    position: relative;
}

.who-am-i__image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.who-am-i__content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.who-am-i__content p {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.who-am-i__content strong {
    color: var(--gray-900);
}

.who-am-i__signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.who-am-i__signature-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 4px;
}

.who-am-i__signature-title {
    font-size: 1rem;
    color: var(--gray-500);
    margin: 0;
}

@media (max-width: 768px) {
    .who-am-i {
        padding: 64px 20px;
    }
    
    .who-am-i__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .who-am-i__image {
        max-width: 200px;
        margin: 0;
    }
    
    .who-am-i__image img {
        width: 100%;
        height: auto;
        max-width: 200px;
    }
    
    .who-am-i__content {
        text-align: left;
    }
    
    .who-am-i__content h2 {
        font-size: 1.75rem;
        text-align: left;
    }
    
    .who-am-i__signature {
        text-align: left;
    }
}

/* ========================================
   APPLICATION STATUS UI
   ======================================== */
.ss-app-status {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
}

.ss-app-status-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.ss-app-status-header {
    background: var(--gray-900);
    color: var(--white);
    padding: 24px;
}

.ss-app-status-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.ss-app-status-header p {
    font-size: 1rem;
    color: var(--gray-400);
    margin: 0;
}

.ss-app-status-body {
    padding: 24px;
}

.ss-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ss-status-badge.not-started {
    background: var(--gray-100);
    color: var(--gray-600);
}

.ss-status-badge.awaiting {
    background: #fef3c7;
    color: #92400e;
}

.ss-status-badge.processing {
    background: #dbeafe;
    color: #1e40af;
}

.ss-status-badge.verified {
    background: var(--success-light);
    color: #065f46;
}

.ss-status-badge.review {
    background: #fef3c7;
    color: #92400e;
}

.ss-status-badge.action {
    background: #fee2e2;
    color: #991b1b;
}

.ss-app-meta {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.ss-app-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.ss-app-meta-label {
    color: var(--gray-500);
}

.ss-app-meta-value {
    color: var(--gray-900);
    font-weight: 500;
}

.ss-app-cta {
    width: 100%;
}

/* ========================================
   SITE HEADER - ROBUST FIXED HEADER
   ======================================== */
.ss-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.95) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.3s ease,
                box-shadow 0.3s ease;
}

/* Header state when scrolled */
.ss-site-header.is-scrolled {
    background: rgba(17, 17, 17, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Header hidden on scroll down (optional - add .is-hidden class via JS) */
.ss-site-header.is-hidden {
    transform: translateY(-100%);
}

.ss-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    min-height: 56px;
}

/* Logo link - left aligned */
.ss-header-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 10;
}

/* Header logo image */
.ss-header-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
}

/* Menu toggle button - right aligned */
.ss-menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(245, 158, 11, 0.15);
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.ss-menu-toggle:hover,
.ss-menu-toggle:focus {
    background: rgba(245, 158, 11, 0.25);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.ss-menu-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ss-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.ss-hamburger span {
    display: block;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when open */
.ss-menu-toggle[aria-expanded="true"] .ss-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.ss-menu-toggle[aria-expanded="true"] .ss-hamburger span:nth-child(2) {
    opacity: 0;
}
.ss-menu-toggle[aria-expanded="true"] .ss-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .ss-header-inner {
        padding: 12px 24px;
        min-height: 64px;
    }
    
    .ss-header-logo {
        height: 48px;
        max-width: 220px;
    }
    
    .ss-menu-toggle {
        padding: 12px 20px;
    }
    
    .ss-menu-label {
        font-size: 0.9rem;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .ss-header-logo {
        height: 52px;
        max-width: 260px;
    }
}

/* ========================================
   HERO LOGO
   ======================================== */
.hero-logo {
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
}

.ss-logo-link {
    display: inline-block;
}

.hero-logo-img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobile: logo8.webp full-width */
@media (max-width: 767px) {
    .hero-logo {
        padding: 0 16px;
    }
    
    .hero-logo-img {
        width: 100%;
        max-width: 100%;
    }
}

/* Desktop: logo5.png centered at reasonable size */
@media (min-width: 768px) {
    .hero-logo-img {
        max-width: 400px;
    }
}

@media (min-width: 1024px) {
    .hero-logo-img {
        max-width: 450px;
    }
}

/* ========================================
   ADVERTORIAL BUS IMAGE
   ======================================== */
.adv-story__bus-image {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
}

.adv-story__bus-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* ========================================
   MOBILE HERO CLEANUP
   ======================================== */
/* Hide urgency badge on mobile */
@media (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }
    
    .urgency-badge.hide-on-mobile {
        display: none !important;
    }
}

/* Condensed trust indicators */
.trust-indicators--condensed {
    margin-top: 16px;
}

.trust-indicators--condensed .trust-item {
    font-size: 1rem;
    padding: 8px 0;
}

@media (max-width: 767px) {
    .trust-indicators--condensed .trust-item {
        font-size: 0.95rem;
        text-align: center;
        justify-content: center;
    }
}

/* ========================================
   HERO TITLE IMPACT STYLING
   ======================================== */
.hero-title--impact {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .hero-title--impact {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
}

/* ========================================
   HERO BUS IMAGE
   ======================================== */
.hero-bus-image {
    margin: 20px 0 24px;
    text-align: center;
}

.hero-bus-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

@media (max-width: 767px) {
    .hero-bus-image {
        margin: 16px 0 20px;
    }
    
    .hero-bus-img {
        max-width: 280px;
    }
}

@media (min-width: 768px) {
    .hero-bus-img {
        max-width: 360px;
    }
}

/* ========================================
   FORM HINT TEXT
   ======================================== */
.form-hint {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ========================================
   ADULT SUMMER CAMP – Copy & style
   ======================================== */
.trust-indicators--asc .trust-item {
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.step-title--asc {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.asc-step-hint {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 20px !important;
    margin-top: 0;
}

/* Compensation & Structure section */
.asc-compensation {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    padding: 80px 24px 64px;
}

.asc-compensation__inner {
    max-width: 720px;
    margin: 0 auto;
}

.asc-compensation__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.asc-compensation__lead {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 36px;
}

.asc-compensation__grid {
    display: grid;
    gap: 28px;
    margin-bottom: 36px;
}

.asc-compensation__block {
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.asc-compensation__heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 12px;
}

.asc-compensation__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.asc-compensation__list li {
    padding: 6px 0;
    font-size: 1rem;
    color: var(--gray-700);
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.asc-compensation__list--tight li {
    padding: 4px 0;
    font-size: 0.95rem;
}

.asc-compensation__text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.asc-compensation__tagline {
    font-size: 1.05rem;
    color: var(--gray-800);
    line-height: 1.65;
    margin: 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--gray-200);
}

/* Final CTA – Adult Summer Camp */
.asc-cta {
    background: linear-gradient(160deg, var(--gray-900) 0%, var(--primary) 100%);
    padding: 64px 24px 80px;
    text-align: center;
}

.asc-cta__inner {
    max-width: 520px;
    margin: 0 auto;
}

.asc-cta__kicker {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.asc-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 28px;
}

.asc-cta__btn {
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .asc-compensation {
        padding: 56px 20px 48px;
    }
    .asc-compensation__block {
        padding: 18px 20px;
    }
    .asc-cta {
        padding: 48px 20px 64px;
    }
}

/* ========================================
   FORM ERROR MESSAGES
   ======================================== */
.form-input.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.error-message {
    display: block;
    font-size: 0.8rem;
    color: var(--danger);
    margin-top: 6px;
}

/* ========================================
   WHO AM I SIGNATURE SCRIPT FONT (LARGER, PROMINENT)
   ======================================== */
.who-am-i__signature-script {
    font-family: var(--font-signature);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--gray-900);
    margin: 16px 0 8px;
    line-height: 1.1;
    display: block;
}

@media (max-width: 768px) {
    .who-am-i__signature-script {
        font-size: 2.75rem;
    }
}

/* Who Am I Image: Never warp */
.who-am-i__image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ========================================
   LEFT ALIGNMENT ON MOBILE
   ======================================== */
@media (max-width: 767px) {
    /* General content left alignment */
    .hero-content,
    .adv-story__inner,
    .adv-story__lead,
    .adv-story__body,
    .content-section__inner,
    .who-am-i__content {
        text-align: left;
    }
    
    /* Headings left aligned */
    .hero-title,
    .adv-story__headline,
    .adv-story__section-title,
    .section-header h2,
    .who-am-i__content h2 {
        text-align: left;
    }
    
    /* Lists and bullets left aligned */
    .check-list,
    .adv-story__benefits,
    .adv-story__mistakes {
        text-align: left;
    }
    
    /* Trust indicators left on mobile */
    .trust-indicators--condensed .trust-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    /* Who Am I left aligned */
    .who-am-i__inner {
        text-align: left;
    }
    
    .who-am-i__content {
        text-align: left;
    }
    
    .who-am-i__signature {
        text-align: left;
    }
}

/* (Hero logo styles consolidated above) */

/* ========================================
   DRAMATIC HEADLINE STYLING
   ======================================== */
.adv-story__headline--dramatic {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .adv-story__headline--dramatic {
        font-size: 1.75rem;
        font-weight: 800;
    }
}

.adv-story__lead--sub {
    margin-top: 32px;
}

/* ========================================
   SOCIAL PROOF SLOWER ANIMATION
   ======================================== */
.social-proof-toast {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   COMPACT TRUST INDICATOR
   ======================================== */
.trust-indicators--compact {
    margin-top: 16px;
}

.trust-item--single {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 400px) {
    .trust-item--single {
        font-size: 0.9rem;
        white-space: normal;
        text-align: center;
    }
}

/* ========================================
   HEADLINE ACCENT STYLING (RAZZLE DAZZLE)
   ======================================== */
/* Headline Accent - High Visibility on Dark Background */
.ss-headline-accent {
    position: relative;
    display: inline;
    color: #fbbf24 !important;
    -webkit-text-fill-color: #fbbf24 !important;
    text-shadow: 0 2px 20px rgba(251, 191, 36, 0.5), 0 0 40px rgba(251, 191, 36, 0.3);
}

.ss-headline-accent::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    border-radius: 2px;
    animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* ========================================
   TRADEMARK LINK STYLING
   ======================================== */
.ss-trademark-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
    transition: opacity 0.2s;
}

.ss-trademark-link:hover {
    opacity: 0.8;
}

/* ========================================
   APPLICATION PROCESS SECTION
   ======================================== */
.ss-process {
    background: linear-gradient(160deg, var(--gray-900) 0%, var(--primary) 100%);
    padding: 80px 24px;
    color: var(--white);
}

.ss-process__inner {
    max-width: 900px;
    margin: 0 auto;
}

.ss-process__header {
    margin-bottom: 32px;
}

.ss-process__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--white);
}

.ss-process__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 700px;
}

.ss-process__intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.7;
}

/* Process Steps Grid */
.ss-process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.ss-step-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.ss-step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ss-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.ss-step-card:hover::before {
    opacity: 1;
}

.ss-step-card__number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--gray-900);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.ss-step-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.ss-step-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.ss-step-card__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* Callout Box */
.ss-callout {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.ss-callout__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.ss-callout__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.ss-callout__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.ss-process__compliance {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 32px;
}

.ss-process__cta {
    text-align: center;
}

.ss-process__cta .btn {
    font-size: 1.1rem;
    padding: 16px 32px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .ss-process {
        padding: 60px 20px;
    }
    
    .ss-process__header,
    .ss-process__intro,
    .ss-callout__content {
        text-align: left;
    }
    
    .ss-process__steps {
        grid-template-columns: 1fr;
    }
    
    .ss-callout {
        flex-direction: column;
        text-align: left;
    }
    
    .ss-callout__icon {
        font-size: 2rem;
    }
}

/* (Hero logo styles consolidated in HERO LOGO section above) */

/* ========================================
   ENHANCED MENU UI/UX (consolidated in SITE HEADER section)
   ======================================== */

/* Enhanced drawer styling */
.ss-menu-drawer {
    background: linear-gradient(180deg, var(--gray-900) 0%, #0a0a0a 100%);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.6);
}

.ss-drawer-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ss-drawer-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--accent);
}

.ss-drawer-nav {
    padding: 16px 0;
    flex: 1;
}

.ss-drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.ss-drawer-link:hover,
.ss-drawer-link:focus {
    background: rgba(245, 158, 11, 0.1);
    border-left-color: var(--accent);
    color: var(--white);
    padding-left: 24px;
}

.ss-drawer-icon {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.ss-drawer-footer {
    padding: 20px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
}

.ss-drawer-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-style: italic;
}

/* Drawer close button */
.ss-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ss-drawer-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* ========================================
   MOBILE LOGO FULL WIDTH + MENU INTEGRATION  
   ======================================== */
@media (max-width: 767px) {
    /* Hero already has proper padding from body padding-top */
}

/* ========================================
   DIE IN A DRIVEWAY - HIGH VISIBILITY
   ======================================== */
.adv-story__headline--dramatic {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 28px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure dramatic headline is always visible on dark backgrounds */
.adv-story .adv-story__headline--dramatic {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

@media (max-width: 767px) {
    .adv-story__headline--dramatic {
        font-size: 1.85rem;
        line-height: 1.3;
        padding: 0 12px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }
}

/* ========================================
   APPLICATION PROCESS - BALANCED RESPONSIVE
   ======================================== */
.ss-process {
    padding: 100px 24px;
}

.ss-process__inner {
    max-width: 1100px;
}

.ss-process__header {
    text-align: center;
    margin-bottom: 40px;
}

.ss-process__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.ss-process__subtitle {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ss-process__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
    font-size: 1.1rem;
}

/* Better step cards grid - Desktop: Steps 1-4 in 2x2, Step 5 full width */
.ss-process__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

/* Step card content wrapper - Desktop */
.ss-step-card__content {
    flex: 1;
}

/* Step 5 spans full width on desktop */
.ss-step-card:nth-child(5) {
    grid-column: 1 / -1;
}

@media (max-width: 1024px) {
    .ss-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ss-step-card:nth-child(5) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .ss-process {
        padding: 70px 20px;
    }
    
    .ss-process__header {
        text-align: left;
    }
    
    .ss-process__subtitle {
        text-align: left;
        margin: 0;
    }
    
    .ss-process__intro {
        text-align: left;
        margin-bottom: 40px;
    }
    
    .ss-process__steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Mobile: Horizontal card layout */
    .ss-step-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }
    
    .ss-step-card__number {
        position: static;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        font-weight: 700;
        background: var(--accent);
        color: var(--gray-900);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    }
    
    .ss-step-card__content {
        flex: 1;
        min-width: 0;
    }
    
    .ss-step-card__icon {
        display: none;
    }
    
    .ss-step-card__title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 6px;
    }
    
    .ss-step-card__text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .ss-callout {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    .ss-callout__icon {
        font-size: 2.5rem;
    }
}

/* ========================================
   WHO AM I - ENHANCED DESIGN
   ======================================== */
.who-am-i {
    background: linear-gradient(175deg, var(--off-white) 0%, var(--gray-100) 100%);
    padding: 100px 24px;
}

.who-am-i__inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
}

.who-am-i__image {
    position: sticky;
    top: 100px;
}

.who-am-i__image img {
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
}

.who-am-i__content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.who-am-i__content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 18px;
}

.who-am-i__content p strong {
    color: var(--gray-900);
}

.who-am-i__signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.who-am-i__signature-script {
    font-family: var(--font-signature);
    font-size: 4rem;
    color: var(--gray-800);
    margin-bottom: 8px;
    line-height: 1.1;
    display: block;
}

.who-am-i__signature-title {
    font-size: 0.95rem;
    color: var(--gray-500);
    font-weight: 500;
}

@media (max-width: 767px) {
    .who-am-i {
        padding: 70px 20px;
    }
    
    .who-am-i__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .who-am-i__image {
        position: static;
        display: flex;
        justify-content: flex-start;
    }
    
    .who-am-i__image img {
        width: 140px;
        max-width: 140px;
        height: 140px;
    }
    
    .who-am-i__content {
        text-align: left;
    }
    
    .who-am-i__content h2 {
        font-size: 1.75rem;
    }
    
    .who-am-i__content p {
        font-size: 1rem;
    }
    
    .who-am-i__signature {
        text-align: left;
    }
    
    .who-am-i__signature-script {
        font-size: 3rem;
    }
}

/* ========================================
   ENHANCED ANIMATIONS & MICRO-INTERACTIONS
   ======================================== */

/* Subtle fade-in on scroll for sections */
.content-section,
.who-am-i,
.ss-process {
    animation: ssFadeInUp 0.8s ease-out;
}

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

/* Enhanced button hover states */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(1px) scale(0.98);
}

/* Enhanced card hover effects */
.info-card,
.ss-step-card {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ss-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

/* Enhanced form card glassmorphism */
.form-card {
    position: relative;
}

.form-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Option button enhanced hover */
.option-btn {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.option-btn:hover {
    transform: translateY(-4px) scale(1.01);
}

.option-btn.selected {
    transform: translateY(-2px);
    animation: ssOptionPulse 0.4s ease-out;
}

@keyframes ssOptionPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* FAQ accordion animation */
.faq-a {
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-q {
    transition: color 0.2s, background 0.2s;
}

.faq-q:hover {
    color: var(--accent);
}

/* ========================================
   SCROLL ANIMATIONS & VISIBILITY
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fadeInLeft"] {
    transform: translateX(-30px);
}

[data-animate="fadeInLeft"].is-visible {
    transform: translateX(0);
}

[data-animate="fadeInRight"] {
    transform: translateX(30px);
}

[data-animate="fadeInRight"].is-visible {
    transform: translateX(0);
}

[data-animate="scaleIn"] {
    transform: scale(0.95);
}

[data-animate="scaleIn"].is-visible {
    transform: scale(1);
}

/* Staggered children */
[data-animate-child] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate-child].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    [data-animate],
    [data-animate-child] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Enhanced social proof toast animation */
.social-proof-toast.show {
    animation: ssToastSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ssToastSlide {
    from {
        transform: translateX(-120%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========================================
   ENHANCED GLASSMORPHISM & BOX SHADOWS
   ======================================== */

/* Enhanced glass effect variables */
:root {
    --glass-bg-strong: rgba(255, 255, 255, 0.95);
    --glass-bg-medium: rgba(255, 255, 255, 0.85);
    --glass-bg-light: rgba(255, 255, 255, 0.7);
    --glass-blur-strong: blur(24px);
    --glass-blur-medium: blur(16px);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.1);
    --shadow-elevated: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Header glassmorphism enhancement */
.ss-mobile-header {
    backdrop-filter: var(--glass-blur-medium);
    -webkit-backdrop-filter: var(--glass-blur-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Menu drawer enhanced glass */
.ss-menu-drawer {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Form card enhanced shadows */
.form-card {
    box-shadow: var(--shadow-elevated), 0 0 60px rgba(245, 158, 11, 0.06);
}

/* CTA box enhanced */
.cta-box {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease;
}

.cta-box:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Geo consent enhanced glassmorphism */
.ss-geo-consent {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* ========================================
   UI/UX TIGHTENING & POLISH
   ======================================== */

/* Better focus states for accessibility */
.btn:focus-visible,
.form-input:focus-visible,
.option-btn:focus-visible,
.faq-q:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Smooth page transitions */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Better touch targets on mobile */
@media (max-width: 767px) {
    .btn {
        min-height: 48px;
    }
    
    .option-btn {
        min-height: 56px;
    }
    
    .form-input {
        min-height: 48px;
    }
    
    .faq-q {
        min-height: 48px;
    }
    
    .footer-links a {
        padding: 12px 8px;
        display: inline-block;
    }
}

/* Improved form input states */
.form-input {
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-input:hover:not(:focus) {
    border-color: var(--gray-300);
}

/* Better loading state */
.loading {
    opacity: 0.9;
}

/* Progress bar subtle glow */
.progress-step.active,
.progress-step.completed {
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

/* Footer link underline animation */
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Consent box better visual hierarchy */
.consent-box {
    border-left: 3px solid var(--gray-300);
    transition: border-color 0.2s;
}

.consent-box:hover {
    border-left-color: var(--accent);
}

/* Stats number counter effect */
.adv-story__stat-num {
    transition: transform 0.3s ease;
}

.adv-story__stat:hover .adv-story__stat-num {
    transform: scale(1.05);
}

/* Check list item hover */
.check-list li {
    transition: background 0.2s;
    padding-left: 8px;
    margin-left: -8px;
    border-radius: var(--radius-sm);
}

.check-list li:hover {
    background: rgba(245, 158, 11, 0.05);
}

/* Benefits list item animation */
.adv-story__benefit {
    transition: transform 0.2s, box-shadow 0.2s;
}

.adv-story__benefit:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

/* ============================================
   APPLICATION PROCESS SECTION
   ============================================ */

.ss-application-process {
    background: var(--navy);
    padding: 48px 16px;
    color: var(--white);
}

.ss-application-inner {
    max-width: 960px;
    margin: 0 auto;
}

.ss-application-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: 8px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.ss-application-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    text-align: center;
    color: var(--text-dark-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--leading-relaxed);
}

/* Process Steps */
.ss-application-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .ss-application-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .ss-application-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ss-app-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md, 12px);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ss-app-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.ss-app-step-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    font-size: var(--text-sm);
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-app-step-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.ss-app-step-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.ss-app-step-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* Application Cards */
.ss-application-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .ss-application-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ss-app-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md, 12px);
    padding: 24px;
    transition: border-color 0.2s;
}

.ss-app-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

.ss-app-card--why {
    border-left: 4px solid var(--accent, #f59e0b);
}

.ss-app-card-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.ss-app-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    color: var(--accent, #f59e0b);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.ss-app-card-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.ss-app-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ss-app-card-list li {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.ss-app-card-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent, #f59e0b);
}

.ss-app-card--checks .ss-app-card-list li::before {
    content: '✓';
    color: #10b981;
}

.ss-app-card--not .ss-app-card-list li::before {
    content: '✕';
    color: #ef4444;
}

/* Safety Notice */
.ss-application-safety {
    text-align: center;
    margin-bottom: 32px;
}

.ss-safety-notice {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md, 12px);
    padding: 16px 24px;
    display: inline-block;
    max-width: 600px;
}

/* Pricing Box */
.ss-application-pricing {
    text-align: center;
    margin-bottom: 32px;
}

.ss-pricing-box {
    display: inline-flex;
    flex-direction: column;
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid var(--accent, #f59e0b);
    border-radius: var(--radius-md, 12px);
    padding: 24px 40px;
    margin-bottom: 16px;
}

.ss-pricing-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent, #f59e0b);
}

.ss-pricing-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.ss-pricing-outcome {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.ss-pricing-outcome strong {
    color: var(--white);
}

/* Application CTA */
.ss-application-cta {
    text-align: center;
}

.ss-scroll-to-form {
    display: inline-block;
    background: var(--accent, #f59e0b);
    color: var(--navy, #1e293b);
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-md, 12px);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}

.ss-scroll-to-form:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}
