/* ===================================================
   FlexHealth Landing - Dark Theme
   Premium SaaS Landing Page
   Inspired by OrganiCode design system

   Brand Colors:
   Primary Blue:  #2563eb
   Primary Dark:  #1d4ed8
   Accent Cyan:   #38bdf8
   Accent Green:  #22c55e
   =================================================== */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
    /* ── Color Palette ── */
    --fh-primary: #2563eb;
    --fh-primary-dark: #1d4ed8;
    --fh-primary-darker: #1e3a8a;
    --fh-primary-light: #93c5fd;
    --fh-primary-subtle: rgba(37, 99, 235, 0.12);
    --fh-primary-glow: rgba(37, 99, 235, 0.25);

    --fh-accent: #22c55e;
    --fh-accent-dark: #16a34a;
    --fh-accent-light: rgba(34, 197, 94, 0.15);
    --fh-accent-cyan: #38bdf8;
    --fh-accent-cyan-glow: rgba(56, 189, 248, 0.15);

    /* ── Status / Badge Colors ── */
    --fh-status-success: #22c55e;
    --fh-status-success-bg: rgba(34, 197, 94, 0.15);
    --fh-status-success-border: rgba(34, 197, 94, 0.25);

    --fh-status-warning: #f59e0b;
    --fh-status-warning-bg: rgba(245, 158, 11, 0.15);
    --fh-status-warning-border: rgba(245, 158, 11, 0.25);

    --fh-status-danger: #ef4444;
    --fh-status-danger-bg: rgba(239, 68, 68, 0.15);
    --fh-status-danger-border: rgba(239, 68, 68, 0.25);

    --fh-status-info: #38bdf8;
    --fh-status-info-bg: rgba(56, 189, 248, 0.15);
    --fh-status-info-border: rgba(56, 189, 248, 0.25);

    /* ── Backgrounds ── */
    --fh-bg-body: #0e1621;
    --fh-bg-darker: #091019;
    --fh-bg-card: #1a2332;
    --fh-bg-card-light: #1e293b;
    --fh-bg-card-hover: #212d3f;
    --fh-bg-elevated: rgba(255, 255, 255, 0.03);
    --fh-bg-overlay: rgba(14, 22, 33, 0.8);
    --fh-bg-overlay-heavy: rgba(9, 16, 25, 0.95);
    --fh-dark: #0f172a;

    /* ── Text ── */
    --fh-text: #e2e8f0;
    --fh-text-light: #94a3b8;
    --fh-text-muted: #94a3b8;
    --fh-text-heading: #f1f5f9;
    --fh-text-inverse: #fff;
    --fh-text-on-primary: #fff;

    /* ── Borders ── */
    --fh-border: rgba(255, 255, 255, 0.08);
    --fh-border-light: rgba(255, 255, 255, 0.05);
    --fh-border-medium: rgba(255, 255, 255, 0.12);
    --fh-border-heavy: rgba(255, 255, 255, 0.15);
    --fh-border-hover: rgba(37, 99, 235, 0.4);
    --fh-border-primary: rgba(37, 99, 235, 0.2);
    --fh-border-subtle: rgba(255, 255, 255, 0.03);

    /* ── Glow / Effects ── */
    --fh-glow: rgba(37, 99, 235, 0.25);
    --fh-glow-strong: rgba(56, 189, 248, 0.15);
    --fh-glow-accent: rgba(34, 197, 94, 0.15);

    /* ── Shadows ── */
    --fh-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.15);
    --fh-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --fh-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --fh-shadow-md: 0 4px 15px rgba(0, 0, 0, 0.25);
    --fh-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
    --fh-shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.5);
    --fh-shadow-2xl: 0 30px 90px rgba(0, 0, 0, 0.55);
    --fh-shadow-primary: 0 8px 30px rgba(37, 99, 235, 0.2);
    --fh-shadow-primary-lg: 0 8px 30px rgba(37, 99, 235, 0.25);
    --fh-shadow-primary-glow: 0 4px 15px rgba(37, 99, 235, 0.25);
    --fh-shadow-primary-hover: 0 8px 25px rgba(37, 99, 235, 0.35);
    --fh-shadow-cyan-glow: 0 0 8px rgba(56, 189, 248, 0.3);
    --fh-shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.25);
    --fh-shadow-card-elevated: 0 12px 35px rgba(0, 0, 0, 0.25);
    --fh-shadow-inset-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --fh-shadow-navbar: 0 4px 30px rgba(0, 0, 0, 0.3);
    --fh-shadow-white-glow: 0 8px 30px rgba(255, 255, 255, 0.2);

    /* ── Border Radius ── */
    --fh-radius-xs: 6px;
    --fh-radius-sm: 8px;
    --fh-radius: 12px;
    --fh-radius-lg: 16px;
    --fh-radius-xl: 20px;
    --fh-radius-2xl: 24px;
    --fh-radius-full: 50px;
    --fh-radius-circle: 50%;

    /* ── Gradients ── */
    --fh-gradient-primary: linear-gradient(135deg, #2563eb, #1d4ed8);
    --fh-gradient-primary-hover: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    --fh-gradient-hero: linear-gradient(160deg, #091019 0%, #0d1a2a 25%, #0f1d35 50%, #0a1a30 70%, #091019 100%);
    --fh-gradient-text: linear-gradient(135deg, #38bdf8 0%, #93c5fd 40%, #2563eb 100%);
    --fh-gradient-accent-bar: linear-gradient(90deg, #2563eb, #38bdf8);
    --fh-gradient-step-number: linear-gradient(135deg, #2563eb, #38bdf8);
    --fh-gradient-cta: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --fh-gradient-card-featured: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, #1a2332 30%);
    --fh-gradient-border-glow: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(56, 189, 248, 0.1));
    --fh-gradient-chart-bar: linear-gradient(180deg, #38bdf8, #2563eb);
    --fh-gradient-chart-bar-active: linear-gradient(180deg, #38bdf8, #93c5fd);
    --fh-gradient-avatar: linear-gradient(135deg, #2563eb, #38bdf8);

    /* ── Feature Icon Gradients ── */
    --fh-gradient-icon-primary: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(56, 189, 248, 0.08));
    --fh-gradient-icon-accent: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(56, 189, 248, 0.08));
    --fh-gradient-icon-warning: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    --fh-gradient-icon-danger: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));

    /* ── Form Colors ── */
    --fh-form-bg: rgba(255, 255, 255, 0.05);
    --fh-form-bg-focus: rgba(255, 255, 255, 0.08);
    --fh-form-border: rgba(255, 255, 255, 0.15);
    --fh-form-border-focus: #2563eb;
    --fh-form-focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.2), 0 0 12px rgba(37, 99, 235, 0.1);
    --fh-form-placeholder: #94a3b8;
    --fh-form-error: #ef4444;
    --fh-form-error-bg: rgba(239, 68, 68, 0.08);
    --fh-form-success: #22c55e;
    --fh-form-success-bg: rgba(34, 197, 94, 0.08);
    --fh-form-disabled-bg: rgba(255, 255, 255, 0.02);
    --fh-form-disabled-text: rgba(148, 163, 184, 0.5);

    /* ── Spacing (reference) ── */
    --fh-space-xs: 4px;
    --fh-space-sm: 8px;
    --fh-space-md: 16px;
    --fh-space-lg: 24px;
    --fh-space-xl: 32px;
    --fh-space-2xl: 48px;
    --fh-space-3xl: 64px;
    --fh-space-4xl: 80px;

    /* ── Transition & Animation ── */
    --fh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --fh-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --fh-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --fh-ease: cubic-bezier(0.4, 0, 0.2, 1);

    /* ── Typography ── */
    --fh-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --fh-font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    --fh-font-size-xs: 0.75rem;
    --fh-font-size-sm: 0.85rem;
    --fh-font-size-base: 0.95rem;
    --fh-font-size-md: 1rem;
    --fh-font-size-lg: 1.1rem;
    --fh-font-size-xl: 1.25rem;
    --fh-font-size-2xl: 1.5rem;
    --fh-font-size-3xl: 2.2rem;
    --fh-font-size-4xl: 2.8rem;

    /* ── Z-index Scale ── */
    --fh-z-base: 1;
    --fh-z-dropdown: 100;
    --fh-z-sticky: 500;
    --fh-z-navbar: 1000;
    --fh-z-modal: 1500;
    --fh-z-toast: 2000;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--fh-font);
    color: var(--fh-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--fh-bg-body);
}

::selection {
    background: rgba(37, 99, 235, 0.35);
    color: #fff;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--fh-text-heading);
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; font-weight: 600; }

p {
    color: var(--fh-text-muted);
    line-height: 1.7;
}

a {
    color: var(--fh-primary-light);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--fh-accent-cyan);
}

/* ---- Utility ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--fh-bg-darker);
    border-top: 1px solid var(--fh-border);
    border-bottom: 1px solid var(--fh-border);
}

.section-dark {
    background: var(--fh-bg-darker);
    color: #fff;
    border-top: 1px solid var(--fh-border);
    border-bottom: 1px solid var(--fh-border);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--fh-text-heading);
}

.section-dark p {
    color: var(--fh-text-muted);
}

.section-header {
    max-width: 680px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-header p {
    margin-top: 16px;
    font-size: 1.1rem;
}

.badge-label {
    display: inline-block;
    background: var(--fh-primary-subtle);
    color: var(--fh-primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: var(--fh-radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid var(--fh-border-primary);
}

.text-gradient {
    background: var(--fh-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--fh-radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--fh-transition);
    border: 2px solid transparent;
    text-align: center;
    font-family: var(--fh-font);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--fh-gradient-primary);
    color: var(--fh-text-on-primary);
    border-color: var(--fh-primary);
    box-shadow: var(--fh-shadow-primary-glow);
}

.btn-primary:hover {
    background: var(--fh-gradient-primary-hover);
    border-color: var(--fh-primary-dark);
    color: var(--fh-text-on-primary);
    transform: translateY(-2px);
    box-shadow: var(--fh-shadow-primary-hover);
}

.btn-accent {
    background: var(--fh-gradient-primary);
    color: var(--fh-text-on-primary);
    border-color: var(--fh-primary);
    box-shadow: var(--fh-shadow-primary-glow);
}

.btn-accent:hover {
    background: var(--fh-gradient-primary-hover);
    border-color: var(--fh-primary-dark);
    color: var(--fh-text-on-primary);
    transform: translateY(-2px);
    box-shadow: var(--fh-shadow-primary-hover);
}

.btn-outline {
    background: transparent;
    color: var(--fh-primary-light);
    border-color: var(--fh-primary);
}

.btn-outline:hover {
    background: var(--fh-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--fh-glow);
}

.btn-white {
    background: #fff;
    color: var(--fh-primary-dark);
    border-color: #fff;
    font-weight: 700;
}

.btn-white:hover {
    background: var(--fh-primary-light);
    color: var(--fh-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--fh-shadow-white-glow);
}

.btn-ghost {
    background: var(--fh-bg-elevated);
    color: var(--fh-text);
    border: 1px solid var(--fh-border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--fh-text-inverse);
    border-color: var(--fh-border-heavy);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: var(--fh-z-navbar);
    padding: 20px 0;
    transition: var(--fh-transition);
    background: var(--fh-bg-overlay);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--fh-border);
}

.navbar.scrolled {
    background: var(--fh-bg-overlay-heavy);
    box-shadow: var(--fh-shadow-navbar);
    padding: 12px 0;
    border-bottom-color: rgba(37, 99, 235, 0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    transition: var(--fh-transition);
}

.navbar-logo-text span {
    color: var(--fh-accent-cyan);
}

.navbar-logo {
    text-decoration: none;
}

.navbar-logo:hover {
    color: #fff;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.navbar-nav a {
    color: var(--fh-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--fh-transition);
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--fh-accent-cyan);
    transition: var(--fh-transition);
    transform: translateX(-50%);
    border-radius: 1px;
}

.navbar-nav a:hover {
    color: #fff;
}

.navbar-nav a:hover::after {
    width: 20px;
}

.navbar-nav .btn::after {
    display: none;
}

.navbar-nav .btn {
    padding: 10px 24px;
    background: var(--fh-primary);
    color: #fff;
    border-color: var(--fh-primary);
}

.navbar-nav .btn:hover {
    background: var(--fh-primary-dark);
    border-color: var(--fh-primary-dark);
    box-shadow: 0 4px 15px var(--fh-glow);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fh-text);
    margin: 5px auto;
    transition: var(--fh-transition);
    border-radius: 2px;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--fh-gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

/* Radial glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(
        ellipse at center,
        rgba(37, 99, 235, 0.1) 0%,
        rgba(56, 189, 248, 0.04) 30%,
        transparent 70%
    );
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

/* Particle dot decoration */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(56, 189, 248, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 60px 60px, 90px 90px;
    background-position: 0 0, 30px 30px;
    pointer-events: none;
    opacity: 0.6;
    animation: particleDrift 20s linear infinite;
}

@keyframes heroGlow {
    0% {
        opacity: 0.7;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(-2%, 3%) scale(1.05);
    }
}

@keyframes particleDrift {
    0% {
        background-position: 0 0, 30px 30px;
    }
    100% {
        background-position: 60px 60px, 90px 90px;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 3.6rem;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-content h1 span {
    background: var(--fh-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content > p {
    color: var(--fh-text-muted);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    animation: floatUp 1s ease-out;
}

@keyframes floatUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Dashboard Mockup */
.hero-mockup {
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-lg);
    padding: 28px;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow:
        var(--fh-shadow-xl),
        0 0 40px rgba(37, 99, 235, 0.08),
        var(--fh-shadow-inset-highlight);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-mockup:hover {
    transform: translateY(-4px);
    box-shadow:
        var(--fh-shadow-2xl),
        0 0 60px rgba(37, 99, 235, 0.12);
}

.hero-mockup::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--fh-radius-lg);
    padding: 1px;
    background: var(--fh-gradient-border-glow);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--fh-border);
    align-items: center;
}

.mockup-title {
    margin-left: auto;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--fh-text-muted);
    letter-spacing: 0.3px;
}

.hero-mockup-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-mockup-header span:first-child { background: #ef4444; }
.hero-mockup-header span:nth-child(2) { background: #f59e0b; }
.hero-mockup-header span:nth-child(3) { background: #22c55e; }

.mockup-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.mockup-stat {
    background: var(--fh-bg-elevated);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-sm);
    padding: 14px 16px;
    transition: var(--fh-transition);
}

.mockup-stat .stat-label {
    font-size: 0.72rem;
    color: var(--fh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.mockup-stat .stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.mockup-stat .stat-value.blue { color: var(--fh-accent-cyan); }
.mockup-stat .stat-value.green { color: var(--fh-accent); }

.mockup-stat-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mockup-stat-grid-4 .mockup-stat {
    padding: 10px 14px;
}

.mockup-stat-grid-4 .stat-value {
    font-size: 1.15rem;
}

.mockup-label {
    font-size: 0.75rem;
    color: var(--fh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* Wellness Chart */
.mockup-wellness-chart {
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 14px 16px;
    background: var(--fh-bg-elevated);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-sm);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 64px;
    margin-top: 10px;
}

.chart-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    border-radius: 3px 3px 0 0;
    background: var(--fh-gradient-chart-bar);
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.chart-bar.active {
    opacity: 1;
    background: var(--fh-gradient-chart-bar-active);
    box-shadow: var(--fh-shadow-cyan-glow);
}

.chart-bar.upcoming {
    opacity: 0.3;
    background: var(--fh-border);
}

.chart-day {
    font-size: 0.65rem;
    color: var(--fh-text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Goals Section */
.mockup-goals {
    margin-top: 4px;
}

.mockup-goal {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--fh-bg-elevated);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-sm);
    padding: 9px 14px;
    margin-bottom: 6px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--fh-transition);
}

.mockup-goal:last-child {
    margin-bottom: 0;
}

.mockup-goal i.bi-check-circle-fill {
    color: var(--fh-accent);
    font-size: 0.85rem;
}

.mockup-goal i.bi-circle {
    color: var(--fh-text-muted);
    font-size: 0.85rem;
    opacity: 0.5;
}

.mockup-goal .goal-text {
    flex: 1;
}

.mockup-goal .goal-status {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--fh-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mockup-goal .goal-status.done {
    background: var(--fh-status-success-bg);
    color: var(--fh-status-success);
}

.mockup-goal .goal-status.pending {
    background: var(--fh-status-warning-bg);
    color: var(--fh-status-warning);
}

.mockup-appointments {
    margin-top: 4px;
}

.mockup-appointments .mockup-label {
    font-size: 0.75rem;
    color: var(--fh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.mockup-appt {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--fh-bg-elevated);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-sm);
    padding: 10px 14px;
    margin-bottom: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--fh-transition);
}

.mockup-appt:last-child {
    margin-bottom: 0;
}

.mockup-appt i {
    color: var(--fh-primary-light);
    font-size: 0.9rem;
    opacity: 0.7;
}

.mockup-appt .appt-time {
    color: var(--fh-accent-cyan);
    font-weight: 600;
    min-width: 48px;
}

.mockup-appt .appt-status {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--fh-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mockup-appt .appt-status.confirmed {
    background: var(--fh-status-success-bg);
    color: var(--fh-status-success);
}

.mockup-appt .appt-status.pending {
    background: var(--fh-status-warning-bg);
    color: var(--fh-status-warning);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--fh-border);
}

.hero-stat h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.hero-stat p {
    color: var(--fh-text-muted);
    font-size: 0.82rem;
}

/* ---- How It Works ---- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--fh-radius);
    transition: var(--fh-transition);
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fh-gradient-accent-bar);
    opacity: 0;
    transition: opacity 0.3s;
}

.step-card:hover {
    background: var(--fh-bg-card-hover);
    box-shadow: var(--fh-shadow-card-hover), 0 0 30px var(--fh-glow-strong);
    border-color: var(--fh-border-hover);
    transform: translateY(-6px);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: var(--fh-radius-circle);
    background: var(--fh-gradient-step-number);
    color: var(--fh-text-on-primary);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--fh-shadow-primary-glow);
    transition: var(--fh-transition);
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--fh-text-heading);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--fh-text-muted);
}

/* ---- Features Grid ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--fh-bg-card);
    border-radius: var(--fh-radius);
    padding: 36px;
    transition: var(--fh-transition);
    border: 1px solid var(--fh-border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fh-gradient-accent-bar);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--fh-border-hover);
    box-shadow:
        var(--fh-shadow-card-hover),
        0 0 30px var(--fh-glow-strong);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--fh-radius-sm);
    background: var(--fh-gradient-icon-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border: 1px solid var(--fh-border-primary);
    transition: var(--fh-transition);
}

.feature-icon i {
    color: var(--fh-accent-cyan) !important;
}

.feature-icon.accent {
    background: var(--fh-gradient-icon-accent);
    border-color: var(--fh-status-success-border);
}

.feature-icon.accent i {
    color: var(--fh-accent) !important;
}

.feature-icon.warning {
    background: var(--fh-gradient-icon-warning);
    border-color: var(--fh-status-warning-border);
}

.feature-icon.warning i {
    color: var(--fh-status-warning) !important;
}

.feature-icon.danger {
    background: var(--fh-gradient-icon-danger);
    border-color: var(--fh-status-danger-border);
}

.feature-icon.danger i {
    color: var(--fh-status-danger) !important;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
    transform: scale(1.05);
}

.feature-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--fh-text-heading);
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--fh-text-muted);
}

/* ---- Features Disclaimer ---- */
.features-disclaimer {
    margin-top: 36px;
    text-align: center;
}

.features-disclaimer p {
    display: inline-block;
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--fh-text-muted);
    background: rgba(148, 163, 184, 0.06);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-sm);
    padding: 14px 24px;
    max-width: 720px;
}

.features-disclaimer i {
    margin-right: 6px;
    color: var(--fh-accent-cyan);
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: var(--fh-gradient-cta);
    border-radius: var(--fh-radius-lg);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 120%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* ---- Testimonials ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--fh-bg-card);
    border-radius: var(--fh-radius);
    padding: 36px;
    border: 1px solid var(--fh-border);
    transition: var(--fh-transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 3.5rem;
    color: var(--fh-primary);
    opacity: 0.3;
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--fh-border-hover);
    box-shadow: var(--fh-shadow-card-elevated);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--fh-text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--fh-radius-circle);
    background: var(--fh-gradient-avatar);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--fh-text-on-primary);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 0.92rem;
    color: var(--fh-text-heading);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--fh-text-muted);
}

/* ---- Pricing ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--fh-bg-card);
    border-radius: var(--fh-radius);
    padding: 36px 32px;
    border: 1px solid var(--fh-border);
    text-align: center;
    transition: var(--fh-transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--fh-primary);
    border-width: 2px;
    transform: scale(1.04);
    box-shadow:
        var(--fh-shadow-primary),
        0 0 40px rgba(37, 99, 235, 0.08);
    background: var(--fh-gradient-card-featured);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fh-gradient-primary);
    color: var(--fh-text-on-primary);
    font-size: var(--fh-font-size-xs);
    font-weight: 700;
    padding: 5px 22px;
    border-radius: var(--fh-radius-full);
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: var(--fh-shadow-primary-glow);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fh-shadow-card-hover);
    border-color: var(--fh-border-medium);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow:
        0 25px 60px rgba(37, 99, 235, 0.25),
        0 0 60px rgba(56, 189, 248, 0.1);
    border-color: var(--fh-accent-cyan);
}

.pricing-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fh-text-heading);
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--fh-text-muted);
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--fh-text-muted);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--fh-border);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 7px 0;
    font-size: 0.88rem;
    color: var(--fh-text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--fh-border-subtle);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '\2713';
    color: var(--fh-status-success);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 1px;
}

.pricing-features li.unavailable::before {
    content: '\2717';
    color: var(--fh-status-danger);
}

.pricing-card .btn {
    width: 100%;
}

/* ---- Quote ---- */
.quote-section {
    text-align: center;
    padding: 80px 0;
    background: var(--fh-bg-body);
    border-top: 1px solid var(--fh-border);
    border-bottom: 1px solid var(--fh-border);
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--fh-text-heading);
    max-width: 780px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
}

.quote-text::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--fh-primary);
    display: block;
    line-height: 0.5;
    margin-bottom: 20px;
    font-style: normal;
}

/* ---- Forms ---- */
.form-page {
    padding-top: 120px;
    min-height: 100vh;
    background: var(--fh-bg-body);
}

.form-container {
    max-width: 580px;
    margin: 0 auto;
    background: var(--fh-bg-card);
    border-radius: var(--fh-radius);
    padding: 48px;
    box-shadow: var(--fh-shadow-lg);
    border: 1px solid var(--fh-border);
}

.form-container h2 {
    margin-bottom: 8px;
    font-size: 1.8rem;
    color: var(--fh-text-heading);
}

.form-container .form-intro {
    color: var(--fh-text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: var(--fh-text-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--fh-form-border);
    border-radius: var(--fh-radius-sm);
    font-size: var(--fh-font-size-base);
    font-family: var(--fh-font);
    transition: var(--fh-transition);
    background: var(--fh-form-bg);
    color: var(--fh-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--fh-form-placeholder);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--fh-form-border-focus);
    box-shadow: var(--fh-form-focus-ring);
    background: var(--fh-form-bg-focus);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group .field-validation-error {
    color: var(--fh-form-error);
    font-size: 0.82rem;
    margin-top: 4px;
    display: block;
}

.form-group input.input-validation-error,
.form-group textarea.input-validation-error {
    border-color: var(--fh-form-error);
}

.form-group input:disabled,
.form-group textarea:disabled,
.form-group select:disabled {
    background: var(--fh-form-disabled-bg);
    color: var(--fh-form-disabled-text);
    cursor: not-allowed;
}

/* Select dropdown arrow for dark background */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

.form-group select option {
    background: var(--fh-bg-card);
    color: var(--fh-text);
}

/* Checkboxes & Radios */
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    height: 18px;
    width: 18px;
    padding: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: var(--fh-form-bg);
    border: 1px solid var(--fh-form-border);
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    flex-shrink: 0;
    transition: var(--fh-transition-fast);
}

.form-group input[type="checkbox"] {
    border-radius: 4px;
}

.form-group input[type="radio"] {
    border-radius: 50%;
}

.form-group input[type="checkbox"]:focus,
.form-group input[type="radio"]:focus {
    border-color: var(--fh-form-border-focus);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2), 0 0 12px rgba(37, 99, 235, 0.1);
}

.form-group input[type="checkbox"]:checked {
    background-color: var(--fh-primary);
    border-color: var(--fh-primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.25);
}

.form-group input[type="radio"]:checked {
    background-color: var(--fh-primary);
    border-color: var(--fh-primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.25);
}

.form-group input[type="checkbox"]:checked:focus,
.form-group input[type="radio"]:checked:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25), 0 0 12px rgba(37, 99, 235, 0.15);
}

/* Checkbox / radio inline layout */
.form-group .checkbox-label,
.form-group .radio-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: var(--fh-font-size-base);
    color: var(--fh-text);
}

/* Enhanced focus glow on all inputs */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2), 0 0 12px rgba(37, 99, 235, 0.1);
}

.plan-badge {
    background: var(--fh-primary-subtle);
    border: 1px solid var(--fh-border-primary);
    border-radius: var(--fh-radius-sm);
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fh-text);
}

.plan-badge strong {
    color: var(--fh-primary-light);
}

.plan-badge span {
    color: var(--fh-text-muted);
}

/* ---- Success Page ---- */
.success-page {
    padding-top: 120px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--fh-bg-body);
}

.success-content {
    max-width: 480px;
    background: var(--fh-bg-card);
    padding: 64px 48px;
    border-radius: var(--fh-radius);
    box-shadow: var(--fh-shadow-lg);
    border: 1px solid var(--fh-border);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--fh-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.2rem;
}

.success-content h2 {
    margin-bottom: 12px;
    font-size: 1.8rem;
    color: var(--fh-text-heading);
}

.success-content p {
    font-size: 1rem;
    margin-bottom: 32px;
    color: var(--fh-text-muted);
}

/* ---- Footer ---- */
.footer {
    background: var(--fh-bg-darker);
    color: rgba(255, 255, 255, 0.65);
    padding: 72px 0 32px;
    border-top: 1px solid var(--fh-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-text span {
    color: var(--fh-accent-cyan);
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
    line-height: 1.6;
}

.footer h4 {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    transition: var(--fh-transition);
}

.footer-links a:hover {
    color: var(--fh-accent-cyan);
}

.footer-bottom {
    border-top: 1px solid var(--fh-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-organicode {
    color: rgba(255, 255, 255, 0.35);
}

.footer-organicode a {
    color: var(--fh-primary);
    font-weight: 600;
}

.footer-organicode a:hover {
    color: var(--fh-accent-cyan);
}

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Scrollbar (WebKit) ---- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--fh-bg-darker);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===================================================
   RESPONSIVE BREAKPOINTS
   Mobile-first approach with progressive enhancement.
   Breakpoints:
     480px  - Extra-small phones (narrow)
     576px  - Small phones
     768px  - Tablets / large phones
     1024px - Desktop transition
   =================================================== */

/* ── ≤ 1024px - Desktop to Tablet ── */
@media (max-width: 1024px) {
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Steps: 2 columns at tablet */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ── ≤ 768px - Tablet to Mobile ── */
@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.25rem; }

    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    /* Navbar: mobile hamburger menu */
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--fh-bg-darker);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--fh-shadow-lg);
        border-top: 1px solid var(--fh-border);
        backdrop-filter: blur(20px);
    }

    .navbar-nav.active {
        display: flex;
    }

    .navbar-nav a {
        color: var(--fh-text) !important;
        padding: 8px 0;
    }

    .navbar-nav a::after {
        display: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-logo-text {
        font-size: 1.3rem;
    }

    /* Grids: all single column */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cta-banner {
        padding: 48px 28px;
        border-radius: var(--fh-radius);
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .cta-banner p {
        font-size: 0.95rem;
    }

    /* Forms: prevent iOS zoom, tighter padding */
    .form-container {
        padding: 32px 24px;
        margin: 0 16px;
    }

    .form-container h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 10px 14px;
    }

    .form-group label {
        font-size: 0.82rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .success-content {
        padding: 48px 28px;
    }

    /* Buttons: mobile sizing */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .btn-sm {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    /* Cards: disable hover lift on touch */
    .feature-card:hover,
    .step-card:hover,
    .testimonial-card:hover,
    .pricing-card:hover {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: none;
    }

    /* Card padding tighter */
    .feature-card {
        padding: 28px;
    }

    .step-card {
        padding: 32px 24px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    /* Simplify particles on mobile for performance */
    .hero::after {
        background-size: 80px 80px, 120px 120px;
        opacity: 0.3;
        animation: none;
    }

    /* Hero glow: disable animation */
    .hero::before {
        animation: none;
    }
}

/* ── ≤ 576px - Small Phones ── */
@media (max-width: 576px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.1rem; }

    .hero-content h1 {
        font-size: 1.85rem;
    }

    .hero-content > p {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero {
        padding: 100px 0 64px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 12px;
        padding-top: 24px;
        margin-top: 32px;
    }

    .hero-stat h3 {
        font-size: 0.95rem;
    }

    /* Section spacing tighter */
    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    /* Form: full width, compact */
    .form-page {
        padding-top: 100px;
    }

    .form-container {
        padding: 24px 20px;
        margin: 0 12px;
        border-radius: var(--fh-radius-sm);
    }

    .form-container h2 {
        font-size: 1.35rem;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .plan-badge {
        font-size: 0.82rem;
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Pricing: tighter */
    .pricing-grid {
        max-width: 100%;
    }

    .pricing-price {
        font-size: 2.2rem;
    }

    /* CTA: compact */
    .cta-banner {
        padding: 36px 20px;
    }

    .cta-banner h2 {
        font-size: 1.35rem;
    }

    /* Quote: smaller */
    .quote-text {
        font-size: 1.05rem;
        padding: 0 8px;
    }

    .quote-text::before {
        font-size: 3rem;
    }

    /* Quote section tighter */
    .quote-section {
        padding: 56px 0;
    }

    /* Success page: compact */
    .success-content {
        padding: 36px 20px;
    }

    .success-content h2 {
        font-size: 1.4rem;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
    }

    /* Navbar: compact */
    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .navbar-logo-text {
        font-size: 1.15rem;
    }

    .navbar-nav {
        padding: 16px;
        gap: 12px;
    }

    /* Footer: compact */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-logo-text {
        font-size: 1.1rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }

    /* Badge label: smaller */
    .badge-label {
        font-size: 0.7rem;
        padding: 5px 14px;
    }

    /* Features disclaimer: full width */
    .features-disclaimer p {
        font-size: 0.72rem;
        padding: 10px 16px;
    }
}

/* ── ≤ 480px - Extra-Small Phones ── */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    .hero-content > p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    /* Mockup stat grid: still 2 columns but tighter */
    .mockup-stat-grid {
        gap: 8px;
    }

    .mockup-stat {
        padding: 10px 12px;
    }

    .mockup-stat .stat-value {
        font-size: 1.15rem;
    }

    /* Feature icon: smaller */
    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    /* Testimonial avatar: smaller */
    .testimonial-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    /* Button: full width */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .pricing-card .btn {
        width: 100%;
    }

    /* Step number: smaller */
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    /* Form inputs: compact */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 9px 12px;
    }
}

/* ── Touch Device Optimizations ── */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover animations on touch devices */
    .feature-card:hover,
    .step-card:hover,
    .testimonial-card:hover,
    .pricing-card:hover,
    .pricing-card.featured:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    .hero-mockup:hover {
        transform: none;
    }

    /* Ensure adequate tap targets (44px min) */
    .navbar-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .navbar-toggle {
        min-height: 44px;
        min-width: 44px;
    }

    .pricing-features li {
        padding: 9px 0;
    }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ---- Print ---- */
@media print {
    body {
        background: #fff;
        color: #000;
    }

    .navbar, .footer, .cta-banner,
    .hero::before, .hero::after {
        display: none;
    }

    .section {
        padding: 20px 0;
    }

    .feature-card, .pricing-card, .step-card, .testimonial-card {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}

/* ══════════════════════════════════════════════════════════════
   Landing rewrite - product-accurate sections
   ══════════════════════════════════════════════════════════════ */

/* ── Hero mockup: AI insight card ── */
.mockup-stat .stat-value.warn { color: var(--fh-status-warning); }

.mockup-insight {
    background: var(--fh-bg-elevated);
    border: 1px solid var(--fh-status-info-border);
    border-radius: var(--fh-radius-sm);
    padding: 14px 16px;
    margin-top: 4px;
}
.mockup-insight-head {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--fh-status-info);
    margin-bottom: 8px;
}
.mockup-insight p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--fh-text-light);
    margin: 0;
}
.mockup-insight-foot {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--fh-border);
    font-size: 0.66rem;
    color: var(--fh-text-muted);
    letter-spacing: 0.2px;
}

/* ── Step-card icon variant (problem section) ── */
.step-card .step-number i {
    font-size: 1.15rem;
    line-height: 1;
}

/* ── Free-text parser showcase ── */
.parser-demo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-lg);
    padding: 32px;
    box-shadow: var(--fh-shadow-lg);
}
.parser-side { min-width: 0; }
.parser-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--fh-text-muted);
    margin-bottom: 12px;
}
.parser-input {
    font-family: var(--fh-font-mono);
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--fh-accent-cyan);
    background: var(--fh-bg-darker);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-sm);
    padding: 16px 18px;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: auto;
}
.parser-arrow {
    color: var(--fh-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parser-output {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.parser-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    background: var(--fh-bg-elevated);
    border: 1px solid var(--fh-border);
    border-left: 3px solid var(--fh-accent);
    border-radius: var(--fh-radius-xs);
    padding: 10px 14px;
    font-size: 0.84rem;
}
.parser-row span:first-child {
    font-weight: 700;
    color: var(--fh-text-heading);
    white-space: nowrap;
}
.parser-row span:last-child {
    color: var(--fh-text-muted);
    text-align: right;
    font-size: 0.78rem;
}
.parser-note {
    margin: 14px 0 0;
    font-size: 0.82rem;
    color: var(--fh-text-muted);
    line-height: 1.6;
}

/* ── Comparison table ── */
.compare-table {
    max-width: 940px;
    margin: 0 auto;
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-lg);
    overflow: hidden;
    box-shadow: var(--fh-shadow-lg);
}
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--fh-border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
    padding: 16px 22px;
    font-size: 0.9rem;
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.compare-row > div:first-child {
    color: var(--fh-text-muted);
    border-right: 1px solid var(--fh-border);
}
.compare-row > div:last-child { color: var(--fh-text-light); }
.compare-row > div i { flex-shrink: 0; margin-top: 3px; font-size: 0.95rem; }
.compare-row > div:first-child i { color: var(--fh-status-danger); }
.compare-row > div:last-child i { color: var(--fh-accent); }
.compare-head > div {
    background: var(--fh-bg-elevated);
    font-size: 0.72rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--fh-text-muted) !important;
    padding: 13px 22px;
}

/* ── Three-up feature grid (AI providers) ── */
.features-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ── Honest status grid ── */
.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 940px;
    margin: 0 auto;
}
.status-card {
    background: var(--fh-bg-elevated);
    border: 1px solid var(--fh-border-light);
    border-radius: var(--fh-radius);
    padding: 24px 26px;
}
.status-card h4 {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.status-card h4 i { color: var(--fh-accent); font-size: 1rem; }
.status-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .features-grid-3 { grid-template-columns: 1fr; }
    .parser-demo { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
    .parser-arrow { transform: rotate(90deg); }
    .status-grid { grid-template-columns: 1fr; }
    .compare-row { grid-template-columns: 1fr; }
    .compare-row > div:first-child {
        border-right: none;
        border-bottom: 1px solid var(--fh-border);
        padding-bottom: 12px;
    }
    .compare-head { display: none; }
}

/* ── Proof section: sanitised founder blood-work charts ── */
.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.proof-item {
    margin: 0;
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius);
    padding: 10px 10px 0;
    overflow: hidden;
    box-shadow: var(--fh-shadow-md);
    transition: var(--fh-transition);
}
.proof-item:hover {
    transform: translateY(-3px);
    border-color: var(--fh-border-hover);
    box-shadow: var(--fh-shadow-lg);
}
.proof-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--fh-radius-xs);
}
.proof-item figcaption {
    padding: 12px 6px 14px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--fh-text-muted);
}
.proof-callout {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 28px auto 0;
    background: var(--fh-bg-elevated);
    border: 1px solid var(--fh-border-light);
    border-left: 3px solid var(--fh-accent);
    border-radius: var(--fh-radius);
    padding: 22px 26px;
}
.proof-callout > i {
    color: var(--fh-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.proof-callout p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--fh-text-light);
}
.proof-callout strong { color: var(--fh-text-heading); }
.proof-disclaimer {
    margin-top: 12px !important;
    padding-top: 12px;
    border-top: 1px solid var(--fh-border);
    font-size: 0.8rem !important;
    color: var(--fh-text-muted) !important;
    line-height: 1.6 !important;
}

@media (max-width: 900px) {
    .proof-grid { grid-template-columns: 1fr; }
    .proof-callout { flex-direction: column; gap: 12px; padding: 20px; }
}

/* Wide proof figure (body measurements - multi-metric overlay) */
.proof-item-wide {
    max-width: 1000px;
    margin: 20px auto 0;
}

/* ── Legal pages (privacy / terms) ── */
.legal-page {
    padding: 140px 0 80px;
    background: var(--fh-bg-body);
    min-height: 100vh;
}
.legal-container {
    max-width: 760px;
    margin: 0 auto;
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-lg);
    padding: 48px 56px 56px;
    box-shadow: var(--fh-shadow-lg);
}
.legal-container h1 {
    font-size: 2.1rem;
    color: var(--fh-text-heading);
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}
.legal-updated {
    font-size: 0.8rem;
    color: var(--fh-text-muted);
    margin: 0 0 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--fh-border);
}
.legal-lead {
    font-size: 1rem;
    color: var(--fh-text-light);
    line-height: 1.75;
    margin: 0 0 8px;
}
.legal-container h2 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--fh-text-heading);
    margin: 34px 0 10px;
    letter-spacing: -0.01em;
}
.legal-container p {
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--fh-text-light);
    margin: 0 0 12px;
}
.legal-container ul {
    margin: 0 0 14px;
    padding-left: 22px;
}
.legal-container li {
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--fh-text-light);
    margin-bottom: 5px;
}
.legal-container strong { color: var(--fh-text-heading); }
.legal-container a {
    color: var(--fh-accent-cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(56, 189, 248, 0.3);
}
.legal-container a:hover { border-bottom-color: var(--fh-accent-cyan); }

@media (max-width: 700px) {
    .legal-page { padding: 110px 0 60px; }
    .legal-container { padding: 32px 24px 40px; }
    .legal-container h1 { font-size: 1.65rem; }
}

/* Honeypot field - must stay visually hidden but focusable-off */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ── Import section ── */
.import-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.import-card {
    background: var(--fh-bg-card);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius);
    padding: 26px 24px;
    transition: var(--fh-transition);
}
.import-card:hover {
    transform: translateY(-3px);
    border-color: var(--fh-border-hover);
    box-shadow: var(--fh-shadow-lg);
}
.import-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: var(--fh-accent-cyan);
    background: var(--fh-accent-cyan-glow);
}
.import-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fh-text-heading);
    margin: 0 0 9px;
}
.import-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--fh-text-muted);
    margin: 0;
}
.import-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 24px auto 0;
    padding: 18px 22px;
    background: var(--fh-bg-elevated);
    border: 1px solid var(--fh-border-light);
    border-left: 3px solid var(--fh-accent);
    border-radius: var(--fh-radius);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--fh-text-light);
}
.import-note > i { color: var(--fh-accent); flex-shrink: 0; margin-top: 3px; font-size: 1.1rem; }

@media (max-width: 900px) {
    .import-grid { grid-template-columns: 1fr; }
}

/* ---- Consent bar (fh-track.js) ---- */
.fh-consent {
    position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
    z-index: 1000; width: calc(100% - 32px); max-width: 760px;
    display: flex; align-items: center; gap: 18px;
    background: #111826; border: 1px solid #1e2838; border-radius: 10px;
    padding: 14px 18px; box-shadow: 0 8px 30px rgba(0,0,0,.45);
}
.fh-consent p { margin: 0; font-size: .85rem; color: #b7c2d4; line-height: 1.5; }
.fh-consent a { color: var(--fh-accent, #34d399); }
.fh-consent-actions { display: flex; gap: 10px; flex: none; }
.fh-consent-btn {
    padding: 8px 16px; border-radius: 6px; font-size: .85rem; cursor: pointer;
    background: none; border: 1px solid #2a3648; color: #b7c2d4;
}
.fh-consent-accept { background: var(--fh-accent, #34d399); border-color: transparent; color: #06251a; font-weight: 700; }
.fh-consent-btn:hover { filter: brightness(1.15); }
@media (max-width: 560px) {
    .fh-consent { flex-direction: column; align-items: stretch; text-align: center; }
}


/* Logo images replace the old text wordmarks. Height driven, width auto, so the
   lockup keeps its aspect ratio at every breakpoint. */
.navbar-logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .navbar-logo-img { height: 30px; }
}

@media (max-width: 576px) {
    .navbar-logo-img { height: 26px; }
    .footer-logo-img { height: 26px; }
}


/* Product screenshots. Bordered and slightly inset so they read as a window onto the real
   app rather than as decorative art. */
.shot-figure {
    margin: 40px 0 0;
    max-width: 100%;
}

.shot-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.shot-figure figcaption {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop beside handset. The phone is intrinsically narrow, so it gets the smaller column. */
.shot-pair {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 40px;
}

.shot-pair .shot-figure {
    margin-top: 0;
}

.shot-phone img {
    border-radius: 20px;
}

@media (max-width: 860px) {
    .shot-pair {
        grid-template-columns: 1fr;
    }
    .shot-phone {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .shot-figure {
        margin-top: 28px;
    }
}


/* Hero visual: a real screen rather than a mocked-up card. Wider than the old mockup
   because it holds a table, and capped so it never outgrows the copy beside it. */
.hero-shot {
    margin: 0;
    width: 100%;
    max-width: 620px;
}

.hero-shot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--fh-radius-lg);
    border: 1px solid var(--fh-border);
    box-shadow:
        var(--fh-shadow-xl),
        0 0 40px rgba(37, 99, 235, 0.10);
}

.hero-shot figcaption {
    margin-top: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    max-width: 52ch;
}

@media (max-width: 992px) {
    .hero-shot {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}
