/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Black, White, & Silver Theme)
   ========================================================================== */
:root {
    /* Color Palette */
    --black: #000000;
    --charcoal-100: #050505;
    --charcoal-200: #0a0a0a;
    --charcoal-300: #121212;
    --charcoal-400: #1a1a1a;
    --charcoal-500: #262626;
    
    --white: #ffffff;
    
    --silver-glow: rgba(220, 220, 220, 0.12);
    --silver-glow-strong: rgba(255, 255, 255, 0.25);
    
    /* Silver Tone Palette */
    --silver-light: #f5f5f7;
    --silver-medium: #e5e5ea;
    --silver-dark: #8e8e93;
    --silver-border: rgba(255, 255, 255, 0.08);
    --silver-border-active: rgba(255, 255, 255, 0.25);
    --silver-border-premium: rgba(255, 255, 255, 0.15);
    
    /* Metallic Silver Gradients */
    --metallic-silver: linear-gradient(135deg, #a8b8c8 0%, #ffffff 45%, #f0f3f5 55%, #8c9ba5 100%);
    --metallic-silver-dark: linear-gradient(135deg, #1c1d1f 0%, #2c2d30 50%, #151618 100%);
    --silver-mesh-gradient: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
                            linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    
    /* Status Colors */
    --color-success: #30d158;
    --color-error: #ff453a;
    --color-warning: #ffd60a;
    
    /* Typography */
    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    
    /* Transitions & Shadow */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --card-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
    --glow-shadow: 0 0 30px rgba(255, 255, 255, 0.06);
    --glow-shadow-silver: 0 0 35px rgba(255, 255, 255, 0.12);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    background-color: var(--black);
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--charcoal-400);
    border-radius: 4px;
    border: 2px solid var(--black);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--silver-dark);
}

/* Common Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

/* Typography Utils */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.text-gradient-silver {
    background: var(--metallic-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--silver-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 1px;
    background: var(--silver-dark);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
    color: var(--silver-dark);
    font-weight: 300;
}

.text-center { text-align: center; }
.w-100 { width: 100%; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.ml-auto { margin-left: auto; }
.text-error { color: var(--color-error); }
.text-success { color: var(--color-success); }

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px; /* Exact pill shape from the reference image */
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.btn-sm {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
}

.btn-md {
    padding: 0.95rem 2.2rem;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 1.15rem 2.6rem;
    font-size: 1rem;
}

/* Primary Metallic Silver Button (Glossy Liquid Silver Metal - 3D Glass overlay) */
.btn-primary-metallic {
    background: linear-gradient(135deg, #8c9ba5 0%, #ffffff 40%, #e0e6eb 50%, #8c9ba5 100%);
    color: var(--black);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    
    /* Dual inner glare loops + bottom glass shadow extrusion */
    box-shadow: 
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.8), 
        inset 0 8px 16px rgba(255, 255, 255, 0.7), 
        inset 0 -8px 16px rgba(0, 0, 0, 0.25), 
        0 10px 22px rgba(0, 0, 0, 0.75);
        
    text-shadow: 0 0.5px 1px rgba(255, 255, 255, 0.6);
}

.btn-primary-metallic:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, #a8b8c8 0%, #ffffff 35%, #f0f3f5 45%, #a8b8c8 100%);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 
        inset 0 0 0 2px rgba(255, 255, 255, 0.9), 
        inset 0 10px 20px rgba(255, 255, 255, 0.8), 
        inset 0 -8px 16px rgba(0, 0, 0, 0.35), 
        0 14px 28px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-primary-metallic:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.6), 
        inset 0 4px 8px rgba(255, 255, 255, 0.45), 
        inset 0 -4px 8px rgba(0, 0, 0, 0.2), 
        0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Muted Silver Solid Button (Solid 3D Steel/Titanium Metal) */
.btn-silver {
    background: linear-gradient(135deg, #484c50 0%, #8c9298 50%, #484c50 100%);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    
    box-shadow: 
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.25), 
        inset 0 6px 12px rgba(255, 255, 255, 0.2), 
        inset 0 -6px 12px rgba(0, 0, 0, 0.4), 
        0 8px 18px rgba(0, 0, 0, 0.65);
}

.btn-silver:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, #5c6166 0%, #a2a8af 50%, #5c6166 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.35), 
        inset 0 8px 16px rgba(255, 255, 255, 0.3), 
        inset 0 -6px 12px rgba(0, 0, 0, 0.45), 
        0 12px 24px rgba(0, 0, 0, 0.7);
}

.btn-silver:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.2), 
        inset 0 3px 6px rgba(255, 255, 255, 0.15), 
        inset 0 -4px 8px rgba(0, 0, 0, 0.35), 
        0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Minimal Outline Button (Translucent Obsidian Glass) */
.btn-outline {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.08), 
        inset 0 4px 8px rgba(255, 255, 255, 0.08), 
        inset 0 -4px 8px rgba(0, 0, 0, 0.35), 
        0 6px 14px rgba(0, 0, 0, 0.6);
}

.btn-outline:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.15), 
        inset 0 6px 12px rgba(255, 255, 255, 0.15), 
        inset 0 -6px 12px rgba(0, 0, 0, 0.4), 
        0 10px 20px rgba(0, 0, 0, 0.7);
}

.btn-outline:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.05), 
        inset 0 3px 6px rgba(255, 255, 255, 0.05), 
        inset 0 -4px 8px rgba(0, 0, 0, 0.35), 
        0 4px 8px rgba(0, 0, 0, 0.5);
}

.btn-icon {
    margin-left: 0.5rem;
    font-size: 1.1em;
    transition: var(--transition-quick);
}
.btn-icon-left {
    margin-right: 0.5rem;
    font-size: 1.1em;
    transition: var(--transition-quick);
}
.btn:hover .btn-icon {
    transform: translateX(3px);
}
.btn:hover .btn-icon-left {
    transform: translateX(-3px);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--silver-border);
    background: rgba(0, 0, 0, 0.7);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

.nav-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--silver-dark);
    font-weight: 500;
    transition: var(--transition-quick);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1), left 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after {
    width: 100%;
    left: 0;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Dropdown Menu */
.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: var(--charcoal-200);
    border-bottom: 1px solid var(--silver-border);
    padding: 0 2rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                padding 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.35s ease;
}

.mobile-menu.active {
    padding: 1.5rem 2rem;
    max-height: min(480px, calc(100vh - 80px));
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-link {
    font-size: 1.05rem;
    text-decoration: none;
    color: var(--silver-dark);
    font-weight: 500;
    padding: 0.25rem 0;
}
.mobile-nav-link:hover {
    color: var(--white);
}

.mobile-menu-actions {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 5rem 0;
    overflow: hidden;
    z-index: 2;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--silver-mesh-gradient);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    z-index: 0;
    opacity: 0.5;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--silver-border-premium);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--silver-medium);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(5px);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
    70% { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    display: inline-block;
    animation: pulseGlow 2s infinite;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-motto {
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--silver-medium);
    margin-bottom: 1.5rem;
    max-width: 800px;
    font-family: var(--font-serif);
    letter-spacing: 0.01em;
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--silver-dark);
    max-width: 650px;
    margin-bottom: 3rem;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
    max-width: 800px;
    border-top: 1px solid var(--silver-border);
    padding-top: 3rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--silver-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--charcoal-500);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    z-index: 2;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background-color: var(--silver-dark);
    border-radius: 2px;
    animation: scrollScroll 2s infinite ease-in-out;
}

@keyframes scrollScroll {
    0% { transform: translateY(0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ==========================================================================
   PHILOSOPHY COMPARISON SECTION
   ========================================================================== */
.philosophy-section {
    background: var(--charcoal-100);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.comparison-card {
    border-radius: 16px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.card-dark {
    background: var(--charcoal-300);
    border: 1px solid var(--silver-border);
    box-shadow: var(--card-shadow);
}

.card-silver-border {
    background: var(--charcoal-200);
    border: 1px solid var(--silver-border-active);
    box-shadow: var(--glow-shadow-silver);
}
.card-silver-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, var(--white) 0%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.tag-red {
    background: rgba(255, 69, 58, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(255, 69, 58, 0.2);
}

.tag-silver {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid var(--silver-border-active);
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--silver-medium);
    font-size: 1.05rem;
    font-weight: 300;
}

.comp-list li i {
    font-size: 1.25rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ==========================================================================
   HEALTH CHECK WIZARD
   ========================================================================== */
.health-check-section {
    background: var(--black);
}

.wizard-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    background: var(--charcoal-300);
    border: 1px solid var(--silver-border);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
}

/* Wizard Sidebar */
.wizard-sidebar {
    border-right: 1px solid var(--silver-border);
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-counter {
    font-size: 0.85rem;
    color: var(--silver-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.75rem;
}

.step-counter strong {
    color: var(--white);
}

.progress-bar-outer {
    width: 100%;
    height: 4px;
    background: var(--charcoal-500);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.progress-bar-inner {
    height: 100%;
    background: var(--metallic-silver);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.realtime-score-box {
    background: var(--charcoal-200);
    border: 1px solid var(--silver-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.score-circle-container {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem auto;
}

.score-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-bg-circle {
    fill: none;
    stroke: var(--charcoal-500);
    stroke-width: 6;
}

.score-progress-circle {
    fill: none;
    stroke: var(--white);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.4s ease;
}

.score-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.score-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--silver-dark);
}

.risk-badge {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.risk-summary {
    font-size: 0.8rem;
    color: var(--silver-dark);
    line-height: 1.5;
}

.score-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: center;
    flex-grow: 1;
}

/* Wizard Form Area */
.wizard-form-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.form-step {
    display: none;
    opacity: 0;
}

.form-step.active {
    display: block;
}

.form-step.active.slide-next {
    animation: slideNextIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-step.active.slide-prev {
    animation: slidePrevIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideNextIn {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slidePrevIn {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.step-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-icon {
    color: var(--silver-medium);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--silver-dark);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.form-group {
    margin-bottom: 2.25rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--silver-medium);
    margin-bottom: 0.75rem;
}

.form-input {
    width: 100%;
    background: var(--charcoal-200);
    border: 1px solid var(--silver-border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-quick);
}

.form-input::placeholder {
    color: var(--silver-medium);
    opacity: 0.3;
}

.form-input:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

/* Select Styling Override */
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 16L6 10H18L12 16Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 18px;
    padding-right: 3rem;
}

/* Options Grid Layout */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.option-card {
    position: relative;
    background: var(--charcoal-200);
    border: 1px solid var(--silver-border);
    border-radius: 8px;
    padding: 1.25rem;
    cursor: pointer;
    transition: var(--transition-quick);
    display: block;
}

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

.option-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.option-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.option-desc {
    font-size: 0.8rem;
    color: var(--silver-dark);
}

/* Option States */
.option-card:hover {
    border-color: var(--silver-border-premium);
    background: rgba(255, 255, 255, 0.02);
}

.option-card:has(input[type="radio"]:checked) {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.04);
}

/* Options Grid Row Layout (longer options) */
.options-grid-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-card-row {
    position: relative;
    background: var(--charcoal-200);
    border: 1px solid var(--silver-border);
    border-radius: 8px;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    transition: var(--transition-quick);
    display: block;
}

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

.option-row-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--silver-medium);
}

.option-row-content i {
    font-size: 1.2rem;
}

.icon-check { color: var(--silver-dark); opacity: 0.4; }
.icon-cross { color: var(--silver-dark); opacity: 0.4; }
.icon-alert { color: var(--silver-dark); opacity: 0.4; }

.option-card-row:hover {
    border-color: var(--silver-border-premium);
}

.option-card-row:has(input[type="radio"]:checked) {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.option-card-row:has(input[type="radio"]:checked) .option-row-content {
    color: var(--white);
}

.option-card-row:has(input[type="radio"]:checked) .icon-check {
    color: var(--color-success);
    opacity: 1;
}

.option-card-row:has(input[type="radio"]:checked) .icon-cross {
    color: var(--color-error);
    opacity: 1;
}

.option-card-row:has(input[type="radio"]:checked) .icon-alert {
    color: var(--color-warning);
    opacity: 1;
}

/* Multi-select Checkboxes */
.checkbox-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-card {
    position: relative;
    background: var(--charcoal-200);
    border: 1px solid var(--silver-border);
    border-radius: 8px;
    padding: 1.25rem;
    cursor: pointer;
    transition: var(--transition-quick);
    display: block;
}

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

.checkbox-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--silver-medium);
    line-height: 1.4;
}

.checkbox-card-content i {
    font-size: 1.2rem;
    color: var(--silver-dark);
    flex-shrink: 0;
}

.checkbox-card:hover {
    border-color: var(--silver-border-premium);
}

.checkbox-card:has(input[type="checkbox"]:checked) {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.checkbox-card:has(input[type="checkbox"]:checked) .checkbox-card-content {
    color: var(--white);
}

.checkbox-card:has(input[type="checkbox"]:checked) i {
    color: var(--white);
}

/* Wizard Buttons */
.wizard-buttons {
    display: flex;
    border-top: 1px solid var(--silver-border);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Diagnostic Results Box */
.results-container {
    background: var(--charcoal-300);
    border-radius: 16px;
    padding: 4rem;
    margin-top: 4rem;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--silver-border);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

.badge-success {
    background: rgba(48, 209, 88, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(48, 209, 88, 0.2);
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.results-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
}

.results-meta {
    font-size: 0.95rem;
    color: var(--silver-dark);
    margin-top: 0.5rem;
}

.results-meta strong, .results-meta span {
    color: var(--white);
}

.results-score-badge {
    background: var(--charcoal-200);
    border: 1px solid var(--silver-border);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.score-num-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.score-desc-large {
    font-size: 0.7rem;
    color: var(--silver-dark);
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 0.25rem;
}

.results-vulnerability {
    background: rgba(255, 69, 58, 0.05);
    border: 1px solid rgba(255, 69, 58, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.results-vulnerability h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.results-vulnerability h4 i {
    font-size: 1.35rem;
}

.results-vulnerability p {
    color: var(--silver-medium);
    font-size: 1rem;
    font-weight: 300;
}

.results-breakdown h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.recom-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.recom-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--charcoal-200);
    border: 1px solid var(--silver-border);
    border-radius: 8px;
}

.recom-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: -0.1rem;
}

.recom-title {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.recom-text {
    font-size: 0.95rem;
    color: var(--silver-dark);
    font-weight: 300;
    line-height: 1.5;
}

.results-cta-panel {
    border: 1px solid var(--silver-border-active);
    border-radius: 12px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: center;
}

.bg-dark-gradient {
    background: linear-gradient(135deg, var(--charcoal-200) 0%, var(--black) 100%);
}

.cta-panel-text h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.cta-panel-text p {
    color: var(--silver-dark);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

.cta-panel-actions {
    display: flex;
    flex-direction: column;
}

.results-footer {
    border-top: 1px solid var(--silver-border);
    padding-top: 2rem;
    margin-top: 3rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background: var(--charcoal-100);
    overflow: hidden;
}

.services-bg-glow {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    border-radius: 12px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.service-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--silver-border-premium);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: var(--transition-quick);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--silver-dark);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-bullets {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-bullets li {
    font-size: 0.85rem;
    color: var(--silver-medium);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 400;
}

.service-bullets li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-quick);
    align-self: flex-start;
}

.service-link i {
    transition: var(--transition-quick);
}

.service-link:hover {
    color: var(--silver-dark);
}

.service-link:hover i {
    transform: translateX(4px);
}

.hover-effect:hover {
    transform: translateY(-5px);
    border-color: var(--silver-border-active);
    box-shadow: var(--glow-shadow);
}

.hover-effect:hover .service-icon-box {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   MEET THE FOUNDER SECTION
   ========================================================================== */
.founder-section {
    background: var(--black);
}

.founder-grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 5rem;
    align-items: center;
}

.founder-visual {
    position: relative;
}

.founder-visual::before {
    content: '';
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 766 / 952;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--silver-border-active);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.founder-image-wrapper:hover .founder-image {
    transform: scale(1.03);
}

.founder-accent-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    pointer-events: none;
}

.founder-card-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--silver-border);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.badge-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.badge-title {
    font-size: 0.8rem;
    color: var(--silver-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

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

.founder-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--silver-medium);
    margin-bottom: 1rem;
    border-left: 2px solid var(--silver-border-active);
    padding-left: 1.5rem;
}

.founder-signature-box {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1.5rem;
}

.founder-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2.3rem;
    background: var(--metallic-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1.2;
}

.founder-signature-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--silver-dark);
    font-weight: 500;
    margin-top: 0.15rem;
}

.founder-bio {
    color: var(--silver-dark);
    font-weight: 300;
    font-size: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.founder-bio strong {
    color: var(--white);
}

.founder-social-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    border-top: 1px solid var(--silver-border);
    padding-top: 2.5rem;
}

.social-stat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.social-stat i {
    font-size: 1.75rem;
    color: var(--white);
    margin-top: 0.1rem;
}

.social-stat div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.social-stat strong {
    font-size: 1rem;
    color: var(--white);
}

.social-stat span {
    font-size: 0.85rem;
    color: var(--silver-dark);
}

.founder-actions {
    display: flex;
    gap: 1rem;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    background: var(--charcoal-300);
    border: 1px solid var(--silver-border);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--silver-border-premium);
    transform: translateY(-3px);
}

.test-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--white);
    font-size: 0.9rem;
}

.test-text {
    font-size: 0.95rem;
    color: var(--silver-medium);
    font-weight: 300;
    line-height: 1.6;
    flex-grow: 1;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--silver-border);
    padding-top: 1.25rem;
}

.author-avatar {
    width: 38px;
    height: 38px;
    background: var(--charcoal-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-dark);
}

.test-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
}

.test-author span {
    display: block;
    font-size: 0.75rem;
    color: var(--silver-dark);
}

.instagram-cta-banner {
    background: var(--charcoal-200);
    border-radius: 16px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.ig-banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ig-banner-icon {
    font-size: 3rem;
    color: var(--white);
}

.ig-banner-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.ig-banner-content p {
    color: var(--silver-dark);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    background: var(--black);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--silver-border);
    border-radius: 8px;
    background: var(--charcoal-300);
    overflow: hidden;
    transition: var(--transition-quick);
}

.faq-trigger {
    width: 100%;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: var(--transition-quick);
}

.faq-icon {
    font-size: 1.35rem;
    color: var(--silver-dark);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-content p {
    padding-bottom: 1.75rem;
    color: var(--silver-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Open states */
.faq-item.active {
    border-color: var(--silver-border-premium);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--white);
}

/* ==========================================================================
   FINAL CTA SECTION & FOOTER
   ========================================================================== */
.final-cta-section {
    padding: 10rem 0;
    border-top: 1px solid var(--silver-border);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--silver-dark);
    margin-bottom: 3.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer {
    background: var(--charcoal-100);
    border-top: 1px solid var(--silver-border);
    padding: 5rem 0 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--silver-dark);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--silver-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-dark);
    text-decoration: none;
    transition: var(--transition-quick);
}

.footer-socials a:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.footer-links-col h4, .footer-contact-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: var(--silver-dark);
    text-decoration: none;
    transition: var(--transition-quick);
}

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

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    font-size: 0.9rem;
    color: var(--silver-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.contact-detail i {
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-detail a {
    color: var(--silver-dark);
    text-decoration: none;
    transition: var(--transition-quick);
}
.contact-detail a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--silver-border);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--silver-dark);
    margin-bottom: 0.5rem;
}

.disclaimer {
    max-width: 900px;
    margin: 1rem auto 0 auto;
    font-size: 0.75rem !important;
    opacity: 0.4;
    line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE DESIGN Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .comparison-grid {
        gap: 2rem;
    }
    
    .wizard-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
    }
    
    .wizard-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--silver-border);
        padding-right: 0;
        padding-bottom: 2.5rem;
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .progress-bar-outer {
        margin-bottom: 0;
    }
    
    .realtime-score-box {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        padding: 1.25rem 2rem;
        text-align: left;
    }
    
    .score-circle-container {
        width: 70px;
        height: 70px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .score-text-group {
        align-items: flex-start;
    }
    
    .score-val {
        font-size: 1.2rem;
    }
    
    .score-label {
        font-size: 0.55rem;
    }
    
    .risk-badge {
        margin-bottom: 0.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .founder-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 3rem;
    }
    
    .ig-banner-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Layout Adjustments */
    .container {
        padding: 0 1.25rem;
    }
    
    .section {
        padding: 4.5rem 0;
    }
    
    .section-title {
        font-size: 2.15rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-actions {
        gap: 0.65rem;
    }
    
    .nav-links, .nav-actions .btn-silver {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.25;
    }
    
    .hero-motto {
        font-size: 1.15rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Comparison Grid */
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card {
        padding: 1.75rem 1.25rem;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-bullets {
        margin-bottom: 1.5rem;
    }
    
    /* Health Check Wizard */
    .wizard-container {
        padding: 1.75rem 1.25rem;
        gap: 1.5rem;
    }
    
    .wizard-sidebar {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .progress-bar-outer {
        margin-top: 0.5rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-options-grid {
        grid-template-columns: 1fr;
    }
    
    /* Diagnostic Results */
    .results-container {
        padding: 2rem 1.25rem;
    }
    
    .results-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .results-score-badge {
        width: 100%;
        align-items: center;
    }
    
    .results-cta-panel {
        grid-template-columns: 1fr;
        padding: 2rem 1.25rem;
        gap: 2rem;
    }
    
    /* Testimonial Cards */
    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }
    
    /* Founder Section */
    .founder-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ANIMATION & UTILS
   ========================================================================== */

/* Fade-in transitions for Scroll & Page Load */
.animate-fade-in {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-in.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger item entrance */
.animate-stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color var(--transition-quick), background var(--transition-quick), box-shadow var(--transition-quick);
}

.animate-stagger-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Expand text reveal details */
.faq-content p {
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

/* ==========================================================================
   PREMIUM EFFECTS (NOISE, ORBS, SCROLL PROGRESS & SPOTLIGHTS)
   ========================================================================== */

/* Fine Grain/Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Scroll-Progress Indicator */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2.5px;
    width: 0%;
    background: var(--metallic-silver);
    z-index: 2000;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: width 0.1s ease-out;
}

/* Ambient Drifting Glow Orbs */
.ambient-orbs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.orb-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.045) 0%, transparent 70%);
    top: -5%;
    left: -15%;
    animation: drift 25s infinite alternate ease-in-out;
}

.orb-2 {
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.035) 0%, transparent 75%);
    bottom: 25%;
    right: -15%;
    animation: drift 32s infinite alternate-reverse ease-in-out;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    top: 45%;
    left: 40%;
    animation: drift-slow 40s infinite alternate ease-in-out;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(80px, -60px) scale(1.08) rotate(180deg); }
    100% { transform: translate(-60px, 90px) scale(0.92) rotate(360deg); }
}

@keyframes drift-slow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.05); }
    100% { transform: translate(50px, -50px) scale(0.95); }
}

/* Mouse-Following Spotlight Card Glows */
.spotlight-card {
    position: relative;
    overflow: hidden;
    /* Clean fallback background, custom property coordinates will be updated by JS */
    background: radial-gradient(600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.035), transparent 40%), var(--charcoal-300);
}

.spotlight-card.card-silver-border {
    background: radial-gradient(600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.045), transparent 40%), var(--charcoal-200);
}

.spotlight-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    /* Draw border using radial gradient spotlight */
    background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.18), transparent 45%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 10;
}

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

/* ==========================================================================
   LIQUID GLASS CUSTOM CURSOR & BACKGROUND TRAIL
   ========================================================================== */



/* Background Liquid Glass Trail */
.liquid-glass-trail-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1; /* In the background, behind text/elements */
    overflow: hidden;
}

.trail-bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translate(-50%, -50%);
    will-change: transform, width, height, opacity;
}

/* Header DM Text Responsiveness */
.show-mobile-text {
    display: none;
}

@media (max-width: 480px) {
    .hide-mobile-text {
        display: none;
    }
    .show-mobile-text {
        display: inline;
    }
}

