/* ===================================
   Sales Bugle Landing Page Styles
   =================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --color-gold: #FDB913;
    --color-dark-brown: #3D3020;
    --color-navy: #0A1628;
    --color-cream: #FAF9F6;
    --color-white: #FFFFFF;
    --color-dark-text: #1A1A1A;
    --color-medium-gray: #666666;
    --color-light-gray: #E5E5E5;
    --color-success: #10B981;
    --color-error: #EF4444;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing (8px base unit) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;

    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-header: 1000;
    --z-mobile-menu: 999;
    --z-modal: 2000;
    --z-overlay: 1500;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    letter-spacing: 0.01em;
    font-weight: 600;
}

h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    letter-spacing: 0;
    font-weight: 500;
}

h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: inherit;
    text-decoration: none;
}

/* Utility: Highlight Text */
.highlight {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-gold);
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ===================================
   Sticky Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background-color: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

@supports not (backdrop-filter: blur(10px)) {
    .header {
        background-color: rgba(10, 22, 40, 0.98);
    }
}

.header.scrolled {
    background-color: rgba(10, 22, 40, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-white);
    font-weight: 700;
    text-decoration: none;
}

.brand-icon {
    font-size: 24px;
}

.brand-name {
    font-size: 18px;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-gold);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 14px;
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: calc(var(--z-header) + 1);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-navy);
    padding: var(--space-lg);
    flex-direction: column;
    gap: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-mobile-menu);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--color-gold);
}

.btn-mobile-cta {
    margin-top: var(--space-sm);
    text-align: center;
}

/* Focus States - Accessibility */
:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

.btn:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--color-gold);
}

/* Primary CTA Button - Premium Gold with Glow */
.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #e5a811 100%);
    color: var(--color-dark-text);
    position: relative;
    box-shadow: 0 4px 15px rgba(253, 185, 19, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(253, 185, 19, 0.5);
}

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

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 20px rgba(253, 185, 19, 0.4);
}

.btn-primary:focus-visible {
    outline-color: var(--color-dark-text);
}

/* Secondary CTA Button - Outline with Glow */
.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--color-navy);
    border-color: var(--color-white);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary:hover::before {
    transform: scaleX(1);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 17px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
        white-space: normal;
        line-height: 1.3;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(253, 185, 19, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(61, 48, 32, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0A1628 0%, #1a2a42 50%, #0A1628 100%);
    color: var(--color-white);
    padding: var(--space-4xl) 0;
    padding-top: calc(var(--space-4xl) + 70px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Subtle grid pattern overlay for depth */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(253, 185, 19, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(253, 185, 19, 0.03) 0%, transparent 30%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 80px 80px, 80px 80px;
    pointer-events: none;
    opacity: 0.8;
}

/* Animated background glow element */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.12) 0%, rgba(253, 185, 19, 0.05) 30%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: heroGlowFloat 12s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes heroGlowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 640px;
    text-align: left;
    padding-right: var(--space-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(10, 22, 40, 0.4);
    border: 1px solid rgba(253, 185, 19, 0.4);
    padding: 10px var(--space-lg);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--color-gold);
    letter-spacing: 0.3px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-badge:hover {
    border-color: rgba(253, 185, 19, 0.6);
    box-shadow: 0 6px 20px rgba(253, 185, 19, 0.2);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 20px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-headline-accent {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    opacity: 0.92;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-start;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: var(--space-lg);
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background-color: rgba(255, 255, 255, 0.04);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(253, 185, 19, 0.15);
    transition: all var(--transition-base);
}

.hero-feature-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(253, 185, 19, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.feature-icon svg {
    stroke: var(--color-gold);
}

.feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.feature-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
}

.feature-text span {
    font-size: 12px;
    opacity: 0.85;
}

/* Hero Visual / Product Mockup */
.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.2) 0%, rgba(253, 185, 19, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
    animation: visualGlow 8s ease-in-out infinite;
}

@keyframes visualGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.product-mockup {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(253, 185, 19, 0.2),
        0 0 80px -20px rgba(253, 185, 19, 0.3);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}

.product-mockup:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-8px);
    box-shadow:
        0 40px 80px -12px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(253, 185, 19, 0.4),
        0 0 120px -20px rgba(253, 185, 19, 0.5);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mockup-dots span:first-child { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27ca40; }

.mockup-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.mockup-content {
    display: flex;
    min-height: 320px;
}

.mockup-sidebar {
    width: 140px;
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-md);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    transition: all var(--transition-fast);
}

.sidebar-item svg {
    stroke: currentColor;
    flex-shrink: 0;
}

.sidebar-item.active {
    background: rgba(253, 185, 19, 0.15);
    color: var(--color-gold);
}

.mockup-main {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mockup-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: var(--space-md);
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.15) 0%, rgba(253, 185, 19, 0.05) 100%);
    border: 1px solid rgba(253, 185, 19, 0.3);
}

.card-icon {
    flex-shrink: 0;
    color: var(--color-gold);
}

.card-icon svg {
    stroke: var(--color-gold);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

.card-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: var(--space-md);
    text-align: center;
}

.stat-card .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.stat-card .stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.mockup-progress {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: var(--space-md);
}

.progress-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-sm);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-fill {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), #f59e0b);
    border-radius: 3px;
}

.progress-stages {
    display: flex;
    justify-content: space-between;
}

.stage {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.stage.completed {
    color: var(--color-success);
}

.stage.active {
    color: var(--color-gold);
    font-weight: 600;
}

/* Report Mockup Styles */
.mockup-report {
    flex-direction: column;
    padding: var(--space-lg);
    min-height: 340px;
}

.report-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
}

.report-score {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gold);
}

.report-summary {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.report-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

.report-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.report-subtitle {
    font-size: 12px;
    color: var(--color-error);
}

.report-sections {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.report-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid;
}

.report-item.critical {
    border-left-color: var(--color-error);
}

.report-item.warning {
    border-left-color: #f59e0b;
}

.report-item.good {
    border-left-color: var(--color-success);
}

.item-status {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.report-item.critical .item-status {
    background: rgba(239, 68, 68, 0.2);
    color: var(--color-error);
}

.report-item.warning .item-status {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.report-item.good .item-status {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-success);
}

.item-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-title {
    font-size: 13px;
    color: var(--color-white);
}

.item-score {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.report-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.2) 0%, rgba(253, 185, 19, 0.1) 100%);
    border: 1px solid rgba(253, 185, 19, 0.3);
    border-radius: 8px;
    margin-top: auto;
}

.cta-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
}

.cta-arrow {
    color: var(--color-gold);
    font-size: 18px;
}

.mockup-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.mockup-badge span:nth-child(2) {
    opacity: 0.4;
}

/* Hero Mockup Image */
.hero-mockup-image {
    max-width: 400px;
    margin: 0 auto;
}

.hero-mockup-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform var(--transition-base);
}

.hero-mockup-image img:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

/* Document-Style Mockup */
.product-mockup-document {
    background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}

.product-mockup-document:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-8px);
    box-shadow:
        0 40px 80px -12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.9),
        0 0 60px -10px rgba(253, 185, 19, 0.2);
}

.mockup-document-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--color-navy) 0%, #0f2744 100%);
    border-bottom: 2px solid var(--color-gold);
}

.document-icon {
    stroke: var(--color-gold);
    flex-shrink: 0;
}

.document-title {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.mockup-document-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    min-height: 380px;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
}

.document-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-medium-gray);
    opacity: 0.7;
}

/* Health Score Display */
.health-score-section {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-light-gray);
}

.health-score-display {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.score-circle {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.score-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark-text);
    line-height: 1;
}

.score-total {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-medium-gray);
}

.score-status {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gold);
}

/* Bottleneck Section */
.bottleneck-section {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-light-gray);
}

.bottleneck-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.12) 0%, rgba(253, 185, 19, 0.04) 100%);
    border-left: 3px solid var(--color-gold);
    border-radius: 8px;
}

.bottleneck-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-navy);
    border-radius: 50%;
    font-weight: 700;
}

.bottleneck-content {
    flex: 1;
}

.bottleneck-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark-text);
    margin: 0 0 4px 0;
}

.bottleneck-content p {
    font-size: 13px;
    color: var(--color-medium-gray);
    line-height: 1.5;
    margin: 0;
}

/* Quick Win Section */
.quick-win-section {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-light-gray);
}

.quick-win-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.06) 0%, rgba(10, 22, 40, 0.02) 100%);
    border-left: 3px solid var(--color-navy);
    border-radius: 8px;
}

.quick-win-icon {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    color: var(--color-white);
    border-radius: 50%;
}

.quick-win-card p {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-text);
    line-height: 1.5;
    margin: 0;
}

/* Document CTA */
.document-cta {
    margin-top: auto;
    padding-top: var(--space-md);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.1) 0%, rgba(253, 185, 19, 0.05) 100%);
    border-radius: 6px;
    border: 1px solid rgba(253, 185, 19, 0.3);
    transition: all var(--transition-fast);
}

.cta-link:hover {
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.15) 0%, rgba(253, 185, 19, 0.08) 100%);
    border-color: rgba(253, 185, 19, 0.5);
}

/* Staggered Reveal Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge { animation: fadeInUp 0.6s ease forwards; animation-delay: 0.1s; opacity: 0; }
.hero-headline { animation: fadeInUp 0.6s ease forwards; animation-delay: 0.2s; opacity: 0; }
.hero-description { animation: fadeInUp 0.6s ease forwards; animation-delay: 0.3s; opacity: 0; }
.hero-cta { animation: fadeInUp 0.6s ease forwards; animation-delay: 0.4s; opacity: 0; }
.hero-features { animation: fadeInUp 0.6s ease forwards; animation-delay: 0.5s; opacity: 0; }
.hero-visual { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.3s; opacity: 0; }

/* ===================================
   Section Dividers & Transitions
   =================================== */
.section-divider-angled {
    position: relative;
}

.section-divider-angled::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: inherit;
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
    z-index: 2;
}

.section-divider-angled-reverse {
    position: relative;
}

.section-divider-angled-reverse::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: inherit;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.section-divider-wave {
    position: relative;
}

.section-divider-wave::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: inherit;
    clip-path: ellipse(100% 60% at 50% 100%);
    z-index: 2;
}

/* Subtle shadow on dividers for depth */
.section-divider-shadow::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ===================================
   Logo Bar
   =================================== */
.logo-bar {
    background-color: var(--color-white);
    padding: var(--space-2xl) 0;
    padding-bottom: calc(var(--space-2xl) + 80px);
    position: relative;
}

.logo-bar-label {
    text-align: center;
    font-size: 12px;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.logo-item {
    opacity: 0.4;
    transition: opacity var(--transition-fast);
}

.logo-item:hover {
    opacity: 0.7;
}

.logo-item svg {
    height: 28px;
    width: auto;
    color: var(--color-dark-text);
}

/* ===================================
   Achievement Metrics Bar
   =================================== */
.achievement-bar {
    background-color: var(--color-white);
    padding: var(--space-2xl) 0;
    padding-bottom: calc(var(--space-2xl) + 80px);
    position: relative;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    transition: transform var(--transition-medium);
}

.achievement-item:hover {
    transform: translateY(-4px);
}

.achievement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.1) 0%, rgba(253, 185, 19, 0.05) 100%);
    border: 2px solid rgba(253, 185, 19, 0.2);
    margin-bottom: var(--space-sm);
}

.achievement-icon svg {
    color: var(--color-gold);
    stroke: var(--color-gold);
}

.achievement-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.achievement-number {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.achievement-label {
    font-size: 14px;
    color: var(--color-medium-gray);
    font-weight: 500;
    line-height: 1.4;
}

/* ===================================
   Stats Bar - Premium Editorial Design
   =================================== */
.stats-bar {
    background:
        linear-gradient(90deg, rgba(253, 185, 19, 0.05) 0%, transparent 50%, rgba(253, 185, 19, 0.05) 100%),
        linear-gradient(135deg, var(--color-navy) 0%, #0f2744 100%);
    padding: var(--space-2xl) 0;
    padding-top: calc(var(--space-2xl) + 80px);
    padding-bottom: calc(var(--space-2xl) + 80px);
    color: var(--color-white);
    position: relative;
    margin-top: -80px;
    border-top: 1px solid rgba(253, 185, 19, 0.2);
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(253, 185, 19, 0.6) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(253, 185, 19, 0.4);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
    position: relative;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-md);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: statFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Stagger animation delays for each stat */
.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.25s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }
.stat-item:nth-child(4) { animation-delay: 0.55s; }

/* Divider lines between stats */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(253, 185, 19, 0.2) 20%,
        rgba(253, 185, 19, 0.4) 50%,
        rgba(253, 185, 19, 0.2) 80%,
        transparent 100%
    );
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--color-gold);
    line-height: 1;
    text-shadow:
        0 2px 20px rgba(253, 185, 19, 0.35),
        0 0 40px rgba(253, 185, 19, 0.2);
    margin-bottom: var(--space-xs);
    position: relative;
}

/* Subtle shimmer effect on numbers */
.stat-number::before {
    content: attr(data-value);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 55%,
        transparent 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: shimmer 3s ease-in-out infinite;
    animation-delay: 1s;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

/* Entrance animation for stats */
@keyframes statFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shimmer animation */
@keyframes shimmer {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

/* ===================================
   What You Get Section
   =================================== */
.what-you-get {
    padding: var(--space-3xl) 0;
    padding-top: calc(var(--space-3xl) + 80px);
    padding-bottom: calc(var(--space-3xl) + 80px);
    background-color: var(--color-cream);
    position: relative;
    margin-top: -80px;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.deliverable-card {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.deliverable-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.deliverable-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--color-navy) 0%, #132e52 100%);
    color: var(--color-white);
}

.deliverable-card.featured .deliverable-icon {
    background: rgba(253, 185, 19, 0.2);
    color: var(--color-gold);
}

.deliverable-card.featured .deliverable-icon svg {
    stroke: var(--color-gold);
}

.deliverable-card.featured h3 {
    color: var(--color-white);
}

.deliverable-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.deliverable-card.featured em {
    color: var(--color-gold);
    font-style: normal;
    font-weight: 600;
}

.deliverable-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
}

.deliverable-icon svg {
    stroke: var(--color-gold);
}

.deliverable-content {
    flex: 1;
}

.deliverable-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--color-dark-text);
}

.deliverable-content p {
    color: var(--color-medium-gray);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 15px;
}

.deliverable-content strong {
    color: var(--color-gold);
}

.deliverable-tag {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--color-gold);
    color: var(--color-dark-text);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    padding: var(--space-3xl) 0;
    padding-top: calc(var(--space-3xl) + 80px);
    padding-bottom: calc(var(--space-3xl) + 60px);
    background-color: var(--color-cream);
    position: relative;
    margin-top: -80px;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-light-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(253, 185, 19, 0.15);
    border-color: var(--color-gold);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: var(--color-dark-text);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-lg);
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    margin-bottom: var(--space-lg);
    color: var(--color-gold);
}

.step-visual svg {
    stroke: currentColor;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--color-dark-text);
}

.step-card p {
    color: var(--color-medium-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    color: var(--color-light-gray);
}

/* ===================================
   Who This Is For Section
   =================================== */
.who-for {
    padding: var(--space-3xl) 0;
    padding-top: calc(var(--space-3xl) + 60px);
    padding-bottom: calc(var(--space-3xl) + 80px);
    background-color: var(--color-white);
    position: relative;
    margin-top: -60px;
}

.who-for-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.who-for-content h2 {
    margin-bottom: var(--space-lg);
}

.who-for-intro {
    font-size: 1.125rem;
    color: var(--color-medium-gray);
    margin-bottom: var(--space-lg);
}

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
}

.criteria-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-light-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.criteria-list li:last-child {
    border-bottom: none;
}

.criteria-list svg {
    flex-shrink: 0;
    stroke: var(--color-success);
    margin-top: 2px;
}

.criteria-list strong {
    color: var(--color-dark-text);
}

.who-for-note {
    font-size: 14px;
    color: var(--color-medium-gray);
    font-style: italic;
    padding: var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-gold);
}

.stats-callout {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.callout-item {
    background: linear-gradient(135deg, var(--color-navy) 0%, #132e52 100%);
    color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
}

.callout-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.callout-label {
    font-size: 14px;
    opacity: 0.8;
}

/* ===================================
   Social Proof Section - Premium Editorial Design
   =================================== */
.social-proof {
    padding: var(--space-4xl) 0;
    padding-top: calc(var(--space-4xl) + 80px);
    padding-bottom: calc(var(--space-4xl) + 80px);
    background:
        linear-gradient(180deg, var(--color-cream) 0%, rgba(250, 249, 246, 0.8) 100%);
    position: relative;
    margin-top: -80px;
    overflow: hidden;
}

/* Parallax Background Pattern */
.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(253, 185, 19, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(61, 48, 32, 0.03) 0%, transparent 40%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(253, 185, 19, 0.02) 60px,
            rgba(253, 185, 19, 0.02) 61px
        );
    background-attachment: fixed;
    background-size: 100% 100%, 100% 100%, 80px 80px;
    pointer-events: none;
    z-index: 0;
}

/* Subtle animated glow */
.social-proof::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.6;
    animation: testimonialGlow 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes testimonialGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: var(--space-3xl) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(253, 185, 19, 0.1);
    border-left: 4px solid var(--color-gold);
    opacity: 0;
    transform: translateY(30px);
    animation: testimonialReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes testimonialReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hidden icon container for structure */
.testimonial-icon {
    display: none;
}

.testimonial blockquote {
    border: none;
    position: relative;
    padding: 0;
    margin: 0;
}

/* Large Decorative Opening Quote Mark */
.testimonial blockquote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: var(--font-serif);
    font-size: 10rem;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.8);
    animation: quoteMarkReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes quoteMarkReveal {
    to {
        opacity: 0.15;
        transform: scale(1);
    }
}

/* Editorial Quote Typography */
.testimonial blockquote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.5rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--color-dark-text);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Gold highlights within quote */
.testimonial blockquote em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* Subtle underline for emphasis */
.testimonial blockquote em::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    opacity: 0.3;
}

/* Decorative Line Separator */
.testimonial blockquote::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), rgba(253, 185, 19, 0.3));
    margin: var(--space-lg) auto;
    box-shadow: 0 0 10px rgba(253, 185, 19, 0.3);
}

/* Attribution Styling */
.testimonial footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: attributionReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes attributionReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial footer strong {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark-text);
    letter-spacing: 0.01em;
}

.testimonial footer span {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 0.02em;
}

/* ===================================
   CTA / Contact Section
   =================================== */
.cta-section {
    padding: var(--space-3xl) 0;
    padding-top: calc(var(--space-3xl) + 80px);
    padding-bottom: calc(var(--space-3xl) + 60px);
    background-color: var(--color-cream);
    position: relative;
    margin-top: -80px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: var(--space-md);
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--color-medium-gray);
    margin-bottom: var(--space-3xl);
}

/* Contact Form */
.contact-form {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark-text);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 16px;
    font-family: var(--font-sans);
    color: var(--color-dark-text);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(253, 185, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    width: 100%;
    margin-top: var(--space-md);
}

.form-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--color-medium-gray);
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* Simplified Form Styles */
.contact-form-simple {
    background-color: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 560px;
    margin: 0 auto var(--space-xl);
}

.form-inline {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.form-inline input {
    flex: 1;
    background-color: var(--color-cream);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 16px;
    font-family: var(--font-sans);
    color: var(--color-dark-text);
    transition: all var(--transition-fast);
}

.form-inline input:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: var(--color-white);
}

.form-inline input::placeholder {
    color: #5A5A5A;
    opacity: 1;
}

.form-inline .btn {
    white-space: nowrap;
    padding: 14px 24px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .form-inline .btn {
        white-space: normal;
        padding: 14px 20px;
        font-size: 15px;
        line-height: 1.3;
    }
}

/* Form Validation States */
.form-inline input.error {
    border-color: var(--color-error);
    background-color: #FEF2F2;
}

.form-inline input.success {
    border-color: var(--color-success);
}

.form-error-message {
    color: var(--color-error);
    font-size: 13px;
    margin-top: calc(-1 * var(--space-md));
    margin-bottom: var(--space-md);
    display: none;
}

.form-error-message.visible {
    display: block;
}

.form-success-message {
    color: var(--color-success);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: var(--space-md);
    background-color: #ECFDF5;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

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

.form-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 13px;
    color: var(--color-medium-gray);
}

.trust-icon {
    color: var(--color-success);
    font-weight: 700;
}

.cta-alternative {
    text-align: center;
}

.cta-reassurance {
    font-size: 14px;
    color: var(--color-medium-gray);
    margin-top: var(--space-lg);
    margin-bottom: 0;
}

/* ===================================
   Stakes Section
   =================================== */
.stakes-section {
    padding: var(--space-3xl) 0;
    padding-top: calc(var(--space-3xl) + 80px);
    padding-bottom: calc(var(--space-3xl) + 80px);
    background:
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(253, 185, 19, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-navy) 0%, #0a1020 100%);
    color: var(--color-white);
    position: relative;
    margin-top: -80px;
}

.stakes-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stakes-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.stakes-intro {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.stakes-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.stake-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-sm);
    text-align: left;
}

.stake-item svg {
    flex-shrink: 0;
    stroke: var(--color-error);
}

.stake-item span {
    font-size: 1rem;
    opacity: 0.9;
}

.stakes-closing {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.stakes-closing strong {
    color: var(--color-gold);
}

/* ===================================
   Why Free Section
   =================================== */
.why-free {
    padding: var(--space-3xl) 0;
    padding-top: calc(var(--space-3xl) + 60px);
    padding-bottom: calc(var(--space-3xl) + 80px);
    background-color: var(--color-cream);
    position: relative;
    margin-top: -60px;
}

.why-free-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-free-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

/* Founder Photo Section */
.founder-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.founder-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.founder-credit {
    font-size: 14px;
    color: var(--color-medium-gray);
    font-style: italic;
    font-family: Georgia, serif;
    margin: 0;
}

.why-free-content > p {
    color: var(--color-medium-gray);
    margin-bottom: var(--space-xl);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: left;
}

.reason {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.reason-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-gold);
    color: var(--color-dark-text);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.reason p {
    margin: 0;
    line-height: 1.6;
    color: var(--color-dark-text);
}

.reason strong {
    color: var(--color-dark-text);
}

.no-pressure {
    font-size: 1.125rem;
    color: var(--color-medium-gray);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.btn-secondary-dark {
    background-color: transparent;
    color: var(--color-dark-text);
    border: 2px solid var(--color-dark-text);
    padding: 10px 24px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(26, 26, 26, 0.1);
}

.btn-secondary-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark-text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary-dark:hover {
    color: var(--color-white);
    border-color: var(--color-dark-text);
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.25);
    transform: translateY(-2px);
}

.btn-secondary-dark:hover::before {
    transform: scaleX(1);
}

.btn-secondary-dark:active {
    transform: translateY(-1px);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-lg);
    padding-top: calc(var(--space-3xl) + 80px);
    position: relative;
    margin-top: -80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-xl);
}

.footer-brand h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--color-gold);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: var(--space-3xl);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 0;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-xl);
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --space-3xl: 48px;
        --space-4xl: 64px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    /* Adjust divider heights for mobile */
    .section-divider-angled::after,
    .section-divider-angled-reverse::after {
        height: 40px;
    }

    .section-divider-wave::after {
        height: 30px;
    }

    /* Adjust section padding for mobile dividers */
    .logo-bar {
        padding-bottom: calc(var(--space-2xl) + 40px);
    }

    .achievement-bar {
        padding-bottom: calc(var(--space-2xl) + 40px);
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .achievement-number {
        font-size: 32px;
    }

    .achievement-label {
        font-size: 13px;
    }

    .stats-bar {
        padding-top: calc(var(--space-2xl) + 40px);
        padding-bottom: calc(var(--space-2xl) + 40px);
        margin-top: -40px;
    }

    .what-you-get {
        padding-top: calc(var(--space-3xl) + 40px);
        padding-bottom: calc(var(--space-3xl) + 40px);
        margin-top: -40px;
    }

    .how-it-works {
        padding-top: calc(var(--space-3xl) + 40px);
        padding-bottom: calc(var(--space-3xl) + 30px);
        margin-top: -40px;
    }

    .who-for {
        padding-top: calc(var(--space-3xl) + 30px);
        padding-bottom: calc(var(--space-3xl) + 40px);
        margin-top: -30px;
    }

    .social-proof {
        padding-top: calc(var(--space-3xl) + 40px);
        padding-bottom: calc(var(--space-3xl) + 40px);
        margin-top: -40px;
    }

    .stakes-section {
        padding-top: calc(var(--space-3xl) + 40px);
        padding-bottom: calc(var(--space-3xl) + 40px);
        margin-top: -40px;
    }

    .cta-section {
        padding-top: calc(var(--space-3xl) + 40px);
        padding-bottom: calc(var(--space-3xl) + 30px);
        margin-top: -40px;
    }

    .why-free {
        padding-top: calc(var(--space-3xl) + 30px);
        padding-bottom: calc(var(--space-3xl) + 40px);
        margin-top: -30px;
    }

    .footer {
        padding-top: calc(var(--space-3xl) + 40px);
        margin-top: -40px;
    }

    .nav-links {
        display: none;
    }

    .btn-nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .brand-name {
        font-size: 14px;
    }

    .brand-icon {
        font-size: 20px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero {
        padding: var(--space-3xl) 0;
        padding-top: calc(var(--space-3xl) + 70px);
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: var(--space-md);
        justify-content: center;
    }

    .hero-feature-item {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        order: 1;
    }

    .product-mockup {
        transform: none;
    }

    .product-mockup:hover {
        transform: none;
    }

    .mockup-sidebar {
        display: none;
    }

    .mockup-content {
        min-height: 240px;
    }

    .mockup-document-content {
        padding: var(--space-md);
        min-height: 300px;
    }

    .score-circle {
        width: 60px;
        height: 60px;
    }

    .score-number {
        font-size: 20px;
    }

    .health-score-display {
        gap: var(--space-md);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg) var(--space-md);
    }

    .stat-item {
        padding: var(--space-md) var(--space-sm);
    }

    /* Remove right divider on mobile */
    .stat-item:nth-child(odd)::after {
        display: none;
    }

    /* Add bottom divider for first two items */
    .stat-item:nth-child(1)::before,
    .stat-item:nth-child(2)::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 1px;
        background: linear-gradient(to right,
            transparent 0%,
            rgba(253, 185, 19, 0.2) 20%,
            rgba(253, 185, 19, 0.4) 50%,
            rgba(253, 185, 19, 0.2) 80%,
            transparent 100%
        );
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 10px;
        line-height: 1.3;
        letter-spacing: 0.08em;
    }

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

    .logo-grid {
        gap: var(--space-lg);
    }

    .logo-item svg {
        height: 24px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    /* Mobile Testimonial Adjustments */
    .social-proof {
        padding: var(--space-3xl) 0;
        padding-top: calc(var(--space-3xl) + 40px);
        padding-bottom: calc(var(--space-3xl) + 40px);
        margin-top: -40px;
    }

    .social-proof::before {
        background-attachment: scroll;
    }

    .testimonial {
        padding: var(--space-xl) var(--space-lg);
    }

    .testimonial blockquote::before {
        font-size: 6rem;
        top: -20px;
        left: -10px;
    }

    .testimonial blockquote p {
        font-size: 1.75rem;
        line-height: 1.4;
    }

    .testimonial blockquote::after {
        width: 60px;
        margin: var(--space-md) auto;
    }

    .testimonial footer strong {
        font-size: 1rem;
    }

    .testimonial footer span {
        font-size: 14px;
    }

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

    .deliverable-card {
        flex-direction: column;
        text-align: center;
    }

    .deliverable-tag {
        position: static;
        align-self: flex-start;
        margin-top: var(--space-md);
    }

    .who-for-grid {
        grid-template-columns: 1fr;
    }

    .who-for-visual {
        order: 1;
    }

    .stats-callout {
        flex-direction: row;
    }

    .callout-item {
        flex: 1;
    }

    .callout-number {
        font-size: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .form-inline .btn {
        width: 100%;
    }

    .form-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
        text-align: left;
    }

    .form-trust .trust-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .trust-item {
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .btn {
        padding: 12px 24px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    h1 {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .container {
        padding: 0 var(--space-md);
    }
}

/* ===================================
   Generated Image Styles
   =================================== */

/* Hero Background Image */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    right: -5%;
    width: 65%;
    height: 100%;
    background-image: url('../images/tzfRUWIYDzowoSctKnOFv.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Stats Bar Background */
.stats-bar {
    position: relative;
    overflow: hidden;
}

.stats-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/ErEI5wE1CynMdR9UTR-72.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

.stats-bar .container {
    position: relative;
    z-index: 1;
}

/* Growth Illustration */
.growth-illustration {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto var(--space-lg);
    display: block;
    border-radius: var(--radius-md);
    opacity: 0.9;
}

/* Responsive adjustments for images */
@media (max-width: 768px) {
    .hero-background-image {
        width: 60%;
        opacity: 0.1;
    }

    .growth-illustration {
        max-width: 200px;
        margin-bottom: var(--space-md);
    }

    .stats-background-image {
        opacity: 0.1;
    }
}

@media (max-width: 480px) {
    .hero-background-image {
        display: none;
    }
}

/* ===================================
   Scroll-Triggered Entrance Animations
   =================================== */

/* Base animation setup for elements */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Alternative animation directions */
[data-animate="fade-left"] {
    transform: translateX(-30px);
}

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

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

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

/* Scale animation for cards and images */
[data-animate="scale"] {
    opacity: 0;
    transform: scale(0.95);
}

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

/* Staggered delay support */
[data-animate][data-delay="1"] {
    transition-delay: 0.1s;
}

[data-animate][data-delay="2"] {
    transition-delay: 0.2s;
}

[data-animate][data-delay="3"] {
    transition-delay: 0.3s;
}

[data-animate][data-delay="4"] {
    transition-delay: 0.4s;
}

[data-animate][data-delay="5"] {
    transition-delay: 0.5s;
}

/* Reduced motion support - respect user preferences */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
