/* Surmado Main Stylesheet */
/* This file provides the CSS variables and base styles for pages that reference it */

:root {
    /* Design Tokens - Colors */
    --color-primary: #0A0A0A; /* ink */
    --color-surface: #FEFDFB; /* paper */
    --color-border: #E8E4DC; /* concrete */
    --color-text-secondary: #4A5568; /* steel */
    --color-accent: #FFD000; /* warning-yellow */
    --color-accent-bright: #FFDD33;
    --color-brand-ocean: #0057B8;
    --color-brand-ocean-dark: #003D82;
    --color-brand-rust: #B85C38;
    --color-brand-rust-dark: #964A2D;
    --color-sage: #87A96B;
    --color-background-alt: #F7F4F0; /* sand */
    
    /* Design Tokens - Shadows */
    --shadow-sm: rgba(10, 10, 10, 0.08);
    --shadow-md: rgba(10, 10, 10, 0.12);
    --shadow-lg: rgba(10, 10, 10, 0.2);
    
    /* Design Tokens - Spacing Scale (Perfect Fourth - 1.333) */
    --space-0: 0;
    --space-px: 1px;
    --space-0_5: 2px;
    --space-1: 4px;
    --space-1_5: 6px;
    --space-2: 8px;
    --space-2_5: 10px;
    --space-3: 12px;
    --space-3_5: 14px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 28px;
    --space-8: 32px;
    --space-9: 36px;
    --space-10: 40px;
    --space-11: 44px;
    --space-12: 48px;
    --space-14: 56px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-28: 112px;
    --space-32: 128px;
    --space-36: 144px;
    --space-40: 160px;
    --space-44: 176px;
    --space-48: 192px;
    --space-52: 208px;
    --space-56: 224px;
    --space-60: 240px;
    --space-64: 256px;
    --space-72: 288px;
    --space-80: 320px;
    --space-96: 384px;
    
    /* Legacy spacing aliases */
    --space-xs: var(--space-2);
    --space-sm: var(--space-4);
    --space-md: var(--space-6);
    --space-lg: var(--space-8);
    --space-xl: var(--space-12);
    --space-2xl: var(--space-16);
    --space-3xl: var(--space-20);
    --space-4xl: var(--space-24);
    --space-5xl: var(--space-32);
    
    /* Design Tokens - Typography */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;
    --font-size-4xl: 48px;
    
    /* Design Tokens - Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Design Tokens - Brand Gradients (The River's Essence) */
    --bg-gradient-paper: linear-gradient(180deg, var(--color-surface) 0%, var(--color-background-alt) 100%);
    --bg-gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
    --bg-gradient-ocean: linear-gradient(135deg, var(--color-brand-ocean) 0%, var(--color-brand-ocean-dark) 100%);
    --bg-gradient-rust: linear-gradient(135deg, var(--color-brand-rust) 0%, var(--color-brand-rust-dark) 100%);
    --bg-gradient-yellow: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-bright) 100%);
    --bg-gradient-sage: linear-gradient(135deg, var(--color-sage) 0%, #6B8A4F 100%);
    
    /* Design Tokens - Animation Curves (Corporate Flow) */
    --ease-brand: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-sharp: cubic-bezier(0.4, 0, 0.6, 1);
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    
    /* Design Tokens - Durations (Time is Money) */
    --duration-instant: 0ms;
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --duration-slower: 750ms;
    --duration-slowest: 1000ms;
    
    /* Legacy color aliases for backward compatibility */
    --ink: var(--color-primary);
    --paper: var(--color-surface);
    --concrete: var(--color-border);
    --steel: var(--color-text-secondary);
    --warning-yellow: var(--color-accent);
    --warning-yellow-bright: var(--color-accent-bright);
    --ocean: var(--color-brand-ocean);
    --ocean-dark: var(--color-brand-ocean-dark);
    --rust: var(--color-brand-rust);
    --rust-dark: var(--color-brand-rust-dark);
    --sage: var(--color-sage);
    --sage-dark: #6B8E4F;
    --sand: var(--color-background-alt);
    --shadow-soft: var(--shadow-sm);
    --shadow-medium: var(--shadow-md);
    --shadow-hard: var(--shadow-lg);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.95;
    hyphens: manual; /* Disable auto-hyphenation on headings */
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
}

p {
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Desktop padding increase */
@media (min-width: 1025px) {
    .container {
        padding: 0 40px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-family: 'Arial Black', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother easing */
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    transform: translateZ(0); /* Hardware acceleration */
    backface-visibility: hidden; /* Better performance */
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15); /* Slightly more visible */
    transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother, longer sweep */
    z-index: 1;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--warning-yellow) 0%, var(--warning-yellow-bright) 100%);
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.3);
}

.btn-primary:hover {
    background: var(--ink);
    color: var(--warning-yellow);
    border-color: var(--warning-yellow);
    transform: translateY(-3px) scale(1.02); /* Subtle scale + lift */
    box-shadow: 0 8px 30px rgba(255, 208, 0, 0.5); /* Deeper shadow */
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
}

.btn-secondary:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-3px) scale(1.02); /* Consistent with primary */
    box-shadow: 0 6px 20px var(--shadow-hard); /* Deeper shadow */
}

.btn--primary {
    background: linear-gradient(135deg, var(--warning-yellow) 0%, var(--warning-yellow-bright) 100%);
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.3);
}

.btn--primary:hover {
    background: var(--ink);
    color: var(--warning-yellow);
    border-color: var(--warning-yellow);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 208, 0, 0.5);
}

/* Header */
header {
    background: linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
    color: var(--paper);
    padding: 20px 0;
    border-bottom: 4px solid var(--warning-yellow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow-medium);
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-family: 'Arial Black', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    position: relative;
    text-decoration: none;
    color: var(--paper);
}

.logo span {
    color: var(--warning-yellow);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--paper);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warning-yellow);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: var(--color-primary);
    border: 2px solid var(--color-surface);
    color: var(--color-surface);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.mobile-menu-toggle:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: scale(1.05);
}

/* Hamburger Icon Animation */
.mobile-menu-toggle .hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.mobile-menu-toggle .hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-surface);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

/* Hamburger line styles for the new structure */
.mobile-menu-toggle .hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--color-surface);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle:hover .hamburger-line {
    background-color: var(--color-primary);
}

.mobile-menu-toggle .hamburger span:nth-child(1) {
    top: 0px;
}

.mobile-menu-toggle .hamburger span:nth-child(2) {
    top: 8px;
}

.mobile-menu-toggle .hamburger span:nth-child(3) {
    top: 16px;
}

/* Animation when menu is open */
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}


/* ==============================================
   CORE LAYOUT - The Good Bones from Index
   ============================================== */

/* Hero Section - Perfect proportions from index */
.hero {
    background: linear-gradient(180deg, var(--paper) 0%, var(--sand) 100%);
    padding: 100px 20px 80px;
    text-align: center;
    border-bottom: 3px solid var(--ink);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(0, 0, 0, 0.01) 100px,
            rgba(0, 0, 0, 0.01) 200px
        );
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin-bottom: 20px;
    position: relative;
    line-height: 1.1;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .highlight,
.hero-about h1 .highlight {
    background: linear-gradient(transparent 60%, var(--warning-yellow) 60%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    animation: highlightSweep 0.4s ease-in-out 0.3s forwards;
    padding: 0 10px;
    display: inline-block;
    position: relative;
}

@keyframes highlightSweep {
    from { background-size: 0% 100%; }
    to { background-size: 100% 100%; }
}

.hero-subtext {
    font-size: 22px;
    margin: 30px auto 20px auto;
    max-width: 1150px;
    font-weight: 600;
    color: var(--steel);
}

.hero-price {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 40px auto;
    max-width: 1150px;
    text-align: center;
}

/* Section Spacing - Good proportions */
section {
    padding: 35px 20px;
    position: relative;
}

/* Desktop section padding increase */
@media (min-width: 1025px) {
    section {
        padding: 35px 40px;
    }
}

/* Section Titles */
section h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 40px;
    text-align: center;
}

/* Sections that need white text for accessibility */
.problem-section {
    background: linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
    color: var(--paper);
}

.problem-section h2,
.problem-section p,
.problem-section strong,
.problem-section .chatgpt-mock,
.problem-section .chatgpt-mock p,
.problem-section .chatgpt-mock strong,
.problem-section p[style],
.problem-section strong[style] {
    color: var(--paper) !important;
}

/* Override chatgpt-mock styling in problem section */
.problem-section .chatgpt-mock {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--paper) !important;
}

.problem-section .chatgpt-mock p {
    color: var(--paper) !important;
}

.problem-section .chatgpt-mock strong {
    color: var(--warning-yellow) !important;
}

/* Fix problem cards in problem section - ensure proper contrast */
.problem-section .problem-card {
    background: #F7F4F0 !important;
    color: var(--ink) !important;
}

.problem-section .problem-card h3,
.problem-section .problem-card p {
    color: var(--ink) !important;
}

.final-cta {
    color: var(--paper);
}

/* Final CTA padding */
.final-cta {
    padding: 80px 20px !important;
}

.solution-section {
    color: var(--ink) !important; /* Black text for better accessibility */
}

/* Persona section - green background */
.persona-section {
    background: linear-gradient(to bottom, var(--sage), var(--sand));
    padding: 100px 20px;
}

.problem-section h2,
.final-cta h2 {
    color: var(--paper);
}

.solution-section h2 {
    color: var(--ink) !important; /* Black text for better accessibility */
}

/* Stat Box - For problem sections */
.stat-box {
    background: transparent;
    border: 3px solid var(--warning-yellow);
    padding: 40px;
    margin: 50px auto;
    max-width: 700px;
    font-size: 24px;
    font-weight: bold;
    color: var(--warning-yellow);
    position: relative;
    box-shadow: inset 0 0 30px rgba(255, 208, 0, 0.1);
}

.stat-box::before,
.stat-box::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--warning-yellow);
}

.stat-box::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.stat-box::after {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.question-mark {
    font-size: 28px;
    font-weight: bold;
    color: var(--paper);
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Stamp Effect - The Classic Look */
.stamp {
    background: var(--paper);
    border: 4px solid var(--ink);
    padding: 50px;
    text-align: center;
    position: relative;
    transform: rotate(-2deg);
    box-shadow: 
        8px 8px 0 var(--ink),
        12px 12px 30px var(--shadow-hard);
    max-width: 500px;
    margin: 0 auto;
}

.stamp h2 {
    color: var(--ink);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stamp::before {
    content: 'EST. 2025';
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--rust);
    color: var(--paper);
    padding: 8px 20px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Solutions Page Specific Styles */
.chatgpt-mock {
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 30px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 5px 20px var(--shadow-soft);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.chatgpt-mock::before {
    content: 'ChatGPT';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--ocean);
    color: var(--paper);
    padding: 8px 20px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chatgpt-mock p {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.chatgpt-mock strong {
    color: var(--rust);
    font-weight: bold;
}

/* AI Fight Club Section */
.battle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advisor-card {
    background: var(--paper);
    color: var(--ink);
    border: 3px solid var(--ink);
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.advisor-card h3 {
    color: var(--ocean);
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advisor-card .specialty {
    color: var(--rust);
    font-weight: bold;
    font-style: italic;
    margin-bottom: 15px;
    font-size: 14px;
}

.advisor-card p {
    color: var(--ink);
    line-height: 1.6;
}

/* Risk Analysis Section */
.risk-section {
    background: linear-gradient(180deg, var(--paper) 0%, var(--sand) 100%);
    padding: 100px 20px;
}

.risk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 50px auto;
    align-items: center;
}

.risk-content h2 {
    color: var(--ink);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 30px;
}

.risk-content p {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.risk-visual {
    background: var(--paper);
    border: 4px solid var(--ink);
    padding: 40px;
    position: relative;
    box-shadow: 8px 8px 0 var(--ink);
}

.risk-visual h3 {
    color: var(--ocean);
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.risk-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.risk-item {
    text-align: center;
    padding: 20px;
    border: 2px solid var(--ink);
    background: var(--paper);
}

.risk-item h4 {
    color: var(--ink);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.risk-item p {
    color: var(--ink);
    font-size: 16px;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--sage) 0%, #6B8A4F 100%);
    color: var(--paper);
    padding: 100px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9); /* More opaque white background for better contrast */
    border: 2px solid var(--ink); /* Black border for better definition */
    padding: 30px 30px 30px 30px;
    padding-top: 50px; /* Extra space for the quote */
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 80px;
    color: var(--warning-yellow);
    font-family: serif;
    line-height: 1;
    z-index: 1;
}

.testimonial-card p {
    color: var(--ink); /* Better contrast - black text instead of white */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 500; /* Slightly bolder for better readability */
}

.testimonial-card .author {
    color: var(--ocean); /* Better contrast - ocean blue instead of yellow */
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
    color: var(--paper);
    border: 2px solid var(--paper);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--warning-yellow) 0%, var(--warning-yellow-bright) 100%);
    color: var(--ink);
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 208, 0, 0.4);
}

.back-to-top:active {
    transform: translateY(0);
}

/* Mobile adjustments for back to top - moved to main mobile section */

/* About Page - Reuse existing hero styles */
.hero-about {
    padding: 100px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-about h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    margin-bottom: 30px;
    color: var(--ink);
    line-height: 1.05;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-about .tagline {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--ink);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section - Simple and clean */
.story-section {
    padding: 40px 20px;
    text-align: center;
}

.story-section h2 {
    margin-bottom: 20px;
}

.story-section p {
    font-size: 20px;
    color: var(--steel);
    max-width: 600px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 50px auto;
    align-items: center;
}

/* Reuse existing card system for story visual */
.story-visual {
    background: var(--paper);
    border: 4px solid var(--ink);
    padding: 50px;
    position: relative;
    box-shadow: 
        8px 8px 0 var(--ink),
        12px 12px 30px var(--shadow-hard);
}

.story-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 30px;
    color: var(--ocean);
}

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-visual::before {
    content: 'EST. 2025';
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--rust);
    color: var(--paper);
    padding: 8px 20px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--ocean);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--steel);
    margin-top: 10px;
    letter-spacing: 1px;
}

/* Beliefs Section - Reuse existing section and card grid */
.beliefs-section {
    padding: 30px 20px;
    color: var(--paper);
}

.beliefs-section h2 {
    color: var(--paper);
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 50px;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Reuse existing card system with custom styling */
.belief-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--warning-yellow);
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.belief-card:hover {
    transform: translateY(-5px);
    background: var(--rust);
    border-color: var(--rust);
}

.belief-card:hover h3 {
    color: var(--paper);
}

.belief-card:hover p {
    color: var(--paper);
}

.belief-card h3 {
    color: var(--warning-yellow);
    margin-bottom: 20px;
    font-size: 20px;
}

.belief-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--paper);
}

/* Team Section */
.team-section {
    padding: 30px 20px;
    background: var(--paper) !important;
    color: var(--ink) !important;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 30px;
    color: var(--ink) !important;
}

.team-intro p {
    font-size: 20px;
    color: var(--ink) !important;
    line-height: 1.8;
}

/* Who We Serve - Reuse existing section and card grid */
.serve-section {
    padding: 30px 20px;
    color: var(--paper);
}

.serve-section h2 {
    color: var(--paper);
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 50px;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Reuse existing card system with custom styling */
.serve-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--paper);
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.serve-card:hover {
    transform: scale(1.05);
    background: var(--ocean);
    border-color: var(--ocean);
}

.serve-card:hover h3 {
    color: var(--paper);
}

.serve-card:hover p {
    color: var(--paper);
}

.serve-card h3 {
    color: var(--warning-yellow);
    margin-bottom: 15px;
    font-size: 18px;
}

.serve-card p {
    color: var(--paper);
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    padding: 30px 20px;
}

.comparison-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 50px;
    color: var(--ink);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    align-items: start;
}

/* Reuse existing card system for comparison */
.comparison-card {
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 50px;
    position: relative;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.comparison-card.us {
    border-color: var(--ocean);
    background: linear-gradient(135deg, rgba(0, 87, 184, 0.05) 0%, rgba(0, 61, 130, 0.05) 100%);
}

.comparison-card.them {
    border-color: var(--steel);
    background: var(--concrete);
}

.comparison-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.comparison-card.us h3 {
    color: var(--ocean);
}

.comparison-card.them h3 {
    color: var(--steel);
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid var(--sand);
}

.comparison-card.us .comparison-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ocean);
    font-weight: bold;
    font-size: 18px;
}

.comparison-card.them .comparison-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--rust);
    font-weight: bold;
    font-size: 18px;
}

/* Values Section */
.values-section {
    padding: 30px 20px;
    color: var(--ink); /* Dark text for light background */
}

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

.values-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 40px;
    color: var(--ink); /* Dark text for light background */
}

.values-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--ink); /* Dark text for light background */
}

.values-content .signature {
    font-size: 24px;
    font-weight: bold;
    margin-top: 50px;
    font-style: italic;
    color: var(--color-brand-ocean);
}

/* CTA Section About - Reuse existing stamp system */
.cta-section-about {
    padding: 40px 20px 80px 20px;
    text-align: center;
}

/* Reuse existing stamp system with custom styling */
.cta-box {
    background: var(--paper);
    border: 4px solid var(--ocean);
    padding: 60px 50px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    transform: rotate(-1deg);
    box-shadow: 
        8px 8px 0 var(--ink),
        12px 12px 30px var(--shadow-hard);
}

.cta-box h2 {
    color: var(--ocean);
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 30px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--steel);
}

/* Mobile Responsive for About - moved to main mobile section */

/* Footer Styles */
footer {
    background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    color: var(--paper);
    padding: 40px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0 !important;
}

/* Ensure no white gaps before footer */
.final-cta + footer,
.cta-section + footer,
section:last-of-type + footer {
    margin-top: 0 !important;
}

/* Remove any bottom margin/padding from last sections */
.cta-section:last-of-type,
.final-cta:last-of-type {
    margin-bottom: 0 !important;
}

/* Ensure footer sits directly against content */
footer {
    margin-top: 0 !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--paper);
}

.footer-brand .tagline {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--paper);
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    color: var(--paper);
}

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--warning-yellow);
}

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

.footer-column li {
    margin-bottom: 6px;
}

.footer-column a {
    color: var(--paper);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--warning-yellow);
}

.footer-bottom {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

.footer-bottom p {
    color: var(--paper);
    font-size: 14px;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
}

/* Get Access Page Components */
.page-title {
    text-align: center;
    margin: 60px 0;
}

.page-title h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: var(--color-primary);
}

.page-title p {
    font-size: 18px;
    color: var(--color-text-secondary);
}

/* Access Grid */
.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

/* Access Cards */
.access-card {
    background: var(--color-surface);
    border: 3px solid var(--color-primary);
    padding: 45px;
    position: relative;
    box-shadow: 6px 6px 0 var(--color-primary), 10px 10px 25px var(--shadow-lg);
    transition: transform 0.3s ease;
}

.access-card:hover {
    transform: translateY(-5px);
}

.alpha-card { 
    border-color: var(--color-brand-rust); 
}

.waitlist-card { 
    border-color: var(--color-brand-ocean); 
}

.alpha-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-brand-rust) 0%, var(--color-brand-rust-dark) 100%);
    color: var(--color-surface);
    padding: 6px 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
    border: 2px solid var(--color-primary);
}

.card-icon { 
    font-size: 36px; 
    margin-bottom: 20px; 
}

.card-description {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.card-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-primary);
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-brand-ocean);
    font-weight: bold;
}

.card-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-primary);
    margin: 20px 0;
}

.card-price .currency { 
    font-size: 18px; 
}

.card-price .amount { 
    font-size: 36px; 
}

.card-cta {
    margin-top: 30px;
}

/* Mobile Responsive for Get Access */
/* Waitlist Form Styling */
.waitlist-form {
    margin-top: 30px;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--color-surface);
    color: var(--color-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-brand-ocean);
    box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: var(--color-text-secondary);
    opacity: 0.8;
}

.form-note {
    text-align: center;
    margin-top: 10px;
}

.form-note small {
    color: var(--color-text-secondary);
    font-size: 12px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .access-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .access-card {
        padding: 30px;
    }

    .page-title {
        margin: 40px 0;
    }

    .card-price .amount {
        font-size: 28px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-input {
        width: 100%;
        padding: 18px 20px;
        font-size: 16px;
    }
}

/* Privacy Page Components */
.privacy-page {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Left-justified override for privacy page */
.privacy-left .privacy-header {
    text-align: left;
}

.privacy-left .privacy-header h1 {
    text-align: left;
}

.privacy-left .privacy-meta {
    text-align: left;
}

.privacy-header {
    text-align: center;
    margin-bottom: 30px;
}

.privacy-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: var(--color-primary);
}

.privacy-meta {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.privacy-meta a {
    color: var(--color-brand-ocean);
    text-decoration: none;
}

.privacy-meta a:hover {
    text-decoration: underline;
}

.privacy-highlight {
    background: var(--color-background-alt);
    padding: 25px;
    border-left: 4px solid var(--color-brand-ocean);
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.privacy-highlight h2 {
    color: var(--color-brand-ocean);
    margin-bottom: 20px;
    font-size: 24px;
}

.privacy-highlight p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-primary);
}

.privacy-content {
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    color: var(--color-brand-ocean);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 20px;
}

.privacy-section p {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 15px 0 15px 30px;
    color: var(--color-primary);
}

.privacy-section li {
    margin-bottom: 8px;
}

.privacy-section a {
    color: var(--color-brand-ocean);
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-section strong {
    color: var(--color-primary);
    font-weight: bold;
}

/* Mobile Responsive for Privacy */
@media (max-width: 768px) {
    .privacy-page {
        padding: 60px 20px;
    }
    
    .privacy-highlight {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .privacy-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .privacy-section ul {
        margin-left: 20px;
    }
}

/* Animation Classes for JavaScript triggers - DISABLED */

/* Animation delays removed - elements now display immediately */

/* CTA Link Button Styling */
.cta-link-container {
    text-align: center;
    margin-top: 40px;
}

.cta-link-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
    color: var(--paper);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.3);
    border: 2px solid var(--ocean);
}

.cta-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 87, 184, 0.4);
    color: var(--paper);
    text-decoration: none;
}

/* Integration Section Styling */
.integration-section {
    background: linear-gradient(135deg, var(--sand) 0%, var(--paper) 100%);
    padding: 80px 20px;
    text-align: center;
}

.integration-header h3 {
    color: var(--ink);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.integration-header p {
    color: var(--ink);
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.comparison-card {
    background: var(--paper);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.comparison-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.without {
    background: var(--steel);
}

.status-indicator.with {
    background: var(--rust);
}

.comparison-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.without-signal .comparison-header h4 {
    color: var(--steel);
}

.with-signal .comparison-header h4 {
    color: var(--rust);
}

.comparison-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    font-style: italic;
    margin: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border-left: 4px solid var(--steel);
}

.with-signal .comparison-content p {
    border-left-color: var(--rust);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    background: rgba(0, 0, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid var(--ink);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .comparison-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .vs-divider {
        transform: none;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .comparison-card {
        min-width: 100%;
    }
}

/* Universal Card Grid - One grid to rule them all */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Elegant Scroll-Triggered Animations - Desktop Only */
@media (min-width: 769px) {
    /* Only subtle button hover effects - no excessive movement */
    .btn, .btn--primary, .btn--secondary, .btn--ocean, .btn--rust, .cta-link-button {
        transition: all 0.3s ease;
    }

    .btn:hover, .btn--primary:hover, .btn--secondary:hover, .btn--ocean:hover, .btn--rust:hover, .cta-link-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    /* Navigation link subtle hover */
    .nav-links a {
        transition: color 0.3s ease;
    }

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

    /* Footer link subtle hover */
    .footer-column a, .footer-section a {
        transition: color 0.3s ease;
    }

    .footer-column a:hover, .footer-section a:hover {
        color: var(--warning-yellow);
    }

    /* Form focus effects */
    input:focus, textarea:focus, select:focus {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

.card-grid--4col {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Universal Card - Works for features, steps, advisors, etc */
.card {
    background: var(--paper);
    padding: 35px;
    border: 2px solid var(--ink);
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

/* Removed duplicate - using universal animation instead */

.card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--ocean);
}

/* Card Variants */
.card--dashed {
    border-style: dashed;
    border-color: var(--steel);
}

.card--dashed:hover {
    border-color: var(--ocean);
}

.card--thick {
    border-width: 3px;
    box-shadow: 
        6px 6px 0 var(--ink),
        8px 8px 20px var(--shadow-hard);
}

.card--thick:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        9px 9px 0 var(--ink),
        12px 12px 25px var(--shadow-hard);
}

.card--checkmark::before {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
    color: var(--paper);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid var(--ink);
    box-shadow: 0 2px 8px var(--shadow-soft);
}

/* Step Numbers */
.step-number {
    position: absolute;
    top: -25px;
    left: 20px;
    background: linear-gradient(135deg, var(--rust) 0%, var(--rust-dark) 100%);
    color: var(--paper);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    transform: rotate(-5deg);
    box-shadow: 0 4px 10px var(--shadow-medium);
}

/* Legacy aliases for existing HTML */
.step-container,
.solution-grid, 
.feature-grid, 
.battle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.battle-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    background: var(--paper);
    padding: 35px;
    border: 2px dashed var(--steel);
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

.step:hover {
    transform: translateY(-3px);
    border-color: var(--ocean);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.feature-card {
    background: var(--paper);
    color: var(--ink); /* Fix white text on white background */
    padding: 35px;
    border: 2px solid var(--ink);
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.feature-card::before {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
    color: var(--paper);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid var(--ink);
    box-shadow: 0 2px 8px var(--shadow-soft);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--ink); /* Make sure h3 is visible on white background */
}

.advisor-card {
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 30px;
    position: relative;
    box-shadow: 
        6px 6px 0 var(--ink),
        8px 8px 20px var(--shadow-hard);
    transition: transform 0.3s ease;
}

.advisor-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        9px 9px 0 var(--ink),
        12px 12px 25px var(--shadow-hard);
}

.advisor-card h3 {
    color: var(--ocean);
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.advisor-card .specialty {
    font-size: 14px;
    color: var(--steel);
    margin-bottom: 15px;
    font-style: italic;
}

/* Pricing Card */
.single-price-card {
    background: var(--paper);
    color: var(--ink);
    max-width: 500px;
    margin: 50px auto;
    padding: 50px 40px;
    border: 4px solid var(--warning-yellow);
    position: relative;
    box-shadow: 
        8px 8px 0 var(--ink),
        12px 12px 30px var(--shadow-hard);
    text-align: center;
}

.price-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--concrete);
}

.price {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-subtitle {
    margin-top: 10px;
    color: var(--steel);
    font-size: 16px;
}

.what-you-get {
    padding: 30px 0;
}

.what-you-get h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--steel);
    margin-bottom: 20px;
}

.what-you-get ul {
    list-style: none;
    padding: 0;
}

.what-you-get li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid var(--sand);
}

.what-you-get li:last-child {
    border-bottom: none;
}

.what-you-get li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--rust);
    font-weight: bold;
}

.btn-large {
    padding: 20px;
    font-size: 16px;
    text-align: center;
}

.btn--ocean {
    background: linear-gradient(135deg, var(--color-brand-ocean) 0%, var(--color-brand-ocean-dark) 100%);
    color: var(--color-surface);
    border-color: var(--color-primary);
}

.btn--ocean:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-bright) 100%);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 var(--color-primary);
}

.btn--rust {
    background: linear-gradient(135deg, var(--color-brand-rust) 0%, var(--color-brand-rust-dark) 100%);
    color: var(--color-surface);
    border-color: var(--color-primary);
}

.btn--rust:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-bright) 100%);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 var(--color-primary);
}

.guarantee {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--steel);
}

/* Background Variants */
.bg-gradient-dark {
    background: linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
}

.bg-gradient-ocean {
    background: linear-gradient(135deg, var(--color-brand-ocean) 0%, var(--color-brand-ocean-dark) 100%);
}

.bg-gradient-rust {
    background: linear-gradient(135deg, var(--color-brand-rust) 0%, var(--color-brand-rust-dark) 100%);
}

.bg-gradient-yellow {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-bright) 100%);
}

.bg-gradient-paper {
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-background-alt) 100%);
}

/* ==============================================
   CORPORATE UTILITIES - The River's Flow
   ============================================== */

/* Spacing Utilities (Cascading Value) */
.p-0 { padding: var(--space-0); }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.p-12 { padding: var(--space-12); }
.p-16 { padding: var(--space-16); }
.p-24 { padding: var(--space-24); }

.m-0 { margin: var(--space-0); }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: var(--space-4); margin-bottom: var(--space-4); }
.my-8 { margin-top: var(--space-8); margin-bottom: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

/* Typography Utilities (Brand Voice) */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-surface { color: var(--color-surface); }
.text-secondary { color: var(--color-text-secondary); }
.text-accent { color: var(--color-accent); }
.text-ocean { color: var(--color-brand-ocean); }
.text-rust { color: var(--color-brand-rust); }

.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }

/* Layout Utilities (Corporate Structure) */
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.w-full { width: 100%; }
.max-w-screen { max-width: 1200px; }
.max-w-prose { max-width: 65ch; }

/* Corporate Effects (Professional Polish) */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }

.transition-brand { transition: all var(--duration-normal) var(--ease-brand); }
.transition-smooth { transition: all var(--duration-normal) var(--ease-smooth); }

/* Accessibility - Hide skip nav from visual users */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: var(--space-2) var(--space-3);
    text-decoration: none;
    font-weight: bold;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-primary);
    z-index: 10000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--duration-normal) var(--ease-brand);
}

.skip-nav:focus {
    top: 6px;
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive - Keep good proportions */
@media (max-width: 768px) {
    /* Hero proportions from index */
    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -0.02em;
    }
    
    .hero-subtext {
        font-size: 18px;
    }
    
    /* Section spacing */
    section {
        padding: 30px 15px;
    }
    
    /* Improved Mobile Typography - 15% larger fonts, better line heights */
    body {
        font-size: 18px; /* Increased from 16px */
        line-height: 1.7; /* Better readability */
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1, h2, h3 {
        font-size: clamp(1.8rem, 7vw, 2.8rem); /* Increased minimum from 1.5rem */
        line-height: 1.1; /* Tighter line height for headings */
    }
    
    p {
        line-height: 1.8; /* Improved line height for body text */
        margin-bottom: 1.2em; /* Better paragraph spacing */
    }
    
    .btn {
        padding: 14px 28px; /* Increased from 12px 24px */
        font-size: 13px; /* Increased from 12px */
        min-height: 48px; /* Better touch targets */
        min-width: 120px; /* Consistent button sizing */
    }
    
    .nav-links {
        display: none;
    }
    
    
    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 18px;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    
    .nav-left {
        gap: 20px;
    }
    
    .logo {
        font-size: 24px !important; /* Much larger for mobile */
        line-height: 1.2;
        font-weight: 700 !important;
    }
    
    /* Better mobile text sizes */
    .nav-links a {
        font-size: 16px; /* Increased for better readability */
        line-height: 1.4;
        padding: 20px 0; /* Better touch targets */
    }
    
    /* Mobile Spacing Improvements - More breathing room */
    header {
        padding: 20px 0; /* Slightly reduced header padding for mobile */
    }
    
    /* Hero sections need more space */
    .hero, section {
        padding: 50px 0; /* Increased from typical 40px */
    }
    
    /* Content sections spacing */
    .content-section, .features, .testimonials, .cta-section {
        margin: 60px 0; /* Better section separation */
        padding: 40px 20px; /* Internal padding */
    }
    
    /* Card and component spacing */
    .card, .feature-card, .testimonial, .product-card {
        margin-bottom: 30px; /* Better card separation */
        padding: 25px; /* More internal padding */
    }
    
    /* Form elements breathing room */
    input, textarea, button {
        margin-bottom: 20px; /* Better form spacing */
    }
    
    /* Footer spacing */
    footer {
        padding: 50px 20px 40px; /* More top padding */
    }
    
    /* Performance: Disable heavy animations on mobile */
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Mobile-specific optimizations */
    .hero {
        min-height: 60vh; /* Better mobile hero proportions */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve mobile card readability */
    .card h3 {
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        margin-bottom: 15px !important;
    }
    
    .card p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    /* Better mobile button styling */
    .btn {
        border-radius: 8px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Enhanced mobile form styling */
    input[type="email"], input[type="text"], textarea {
        border-radius: 8px !important;
        border: 2px solid var(--color-border) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
        transition: all 0.3s ease !important;
    }
    
    input[type="email"]:focus, input[type="text"]:focus, textarea:focus {
        border-color: var(--ocean) !important;
        box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.1), 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        transform: translateY(-1px) !important;
    }
}

/* Tablet Responsive (769px - 1024px) - Better intermediate layouts */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px; /* More padding than mobile, less than desktop */
    }
    
    /* Grid systems for tablet */
    .grid-2, .grid-3, .grid-4 {
        display: grid;
        gap: 30px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr); /* 3-col becomes 2-col on tablet */
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr); /* 4-col becomes 2-col on tablet */
    }
    
    /* Product cards and features */
    .product-card, .feature-card {
        padding: 35px; /* Between mobile and desktop */
    }
    
    /* Better button sizing for tablet */
    .btn {
        padding: 15px 30px;
        font-size: 13px;
        min-height: 50px;
    }
    
    /* Typography scaling for tablet */
    h1, h2, h3 {
        font-size: clamp(2rem, 5vw, 3rem); /* Better tablet scaling */
    }
    
    body {
        font-size: 17px; /* Between mobile and desktop */
    }
    
    /* Navigation adjustments */
    .nav-links {
        gap: 20px; /* Tighter spacing than desktop */
    }
    
    .logo {
        font-size: 20px;
    }
    
    /* Section spacing for tablet */
    .hero, section {
        padding: 60px 0;
    }
    
    .content-section, .features, .testimonials, .cta-section {
        margin: 50px 0;
        padding: 35px 30px;
    }
}

/* ====================================
   📝 BLOG STYLES
   ==================================== */

/* Blog Layout */
main.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

main.blog-content h1 {
    font-size: 2.5rem;
    color: var(--ink);
    margin-bottom: 2rem;
    text-align: center;
}

/* Blog Posts Grid */
.posts {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.posts article {
    background: var(--paper);
    border: 2px solid var(--concrete);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-soft);
}

.posts article:hover {
    border-color: var(--rust);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.posts article h2 {
    margin-bottom: 1rem;
}

.posts article h2 a {
    color: var(--ink);
    text-decoration: none;
    font-size: 1.8rem;
    line-height: 1.2;
}

.posts article h2 a:hover {
    color: var(--rust);
}

.posts article p {
    color: var(--steel);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.posts article time {
    color: var(--steel);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag, .tags a {
    background: var(--rust);
    color: var(--paper);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.tag:hover, .tags a:hover {
    background: var(--rust-dark);
}

/* Blog Post Content */
article h1, article h2, article h3 {
    margin: 2rem 0 1rem 0;
    color: var(--ink);
}

article h2 {
    font-size: 1.8rem;
}

article h3 {
    font-size: 1.4rem;
}

article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

article ul, article ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

article li {
    margin-bottom: 0.5rem;
}

article blockquote {
    border-left: 4px solid var(--rust);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--steel);
}

article code {
    background: var(--sand);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
}

article pre {
    background: var(--sand);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

article pre code {
    background: none;
    padding: 0;
}

/* Tables for blog data */
article table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

article table th,
article table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--concrete);
}

article table th {
    background: var(--sand);
    font-weight: 700;
    color: var(--ink);
    border-bottom: 2px solid var(--rust);
}

article table tbody tr:hover {
    background: var(--sand);
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    main.blog-content {
        padding: 20px 15px;
    }
    
    main.blog-content h1 {
        font-size: 2rem;
    }
    
    .posts article {
        padding: 1.5rem;
    }
    
    .posts article h2 a {
        font-size: 1.5rem;
    }
    
    article table {
        font-size: 0.8rem;
    }
    
    article table th,
    article table td {
        padding: 0.5rem;
    }
}

/* ==============================================
   STANDARDIZED HEADER & FOOTER
   Consistent navigation and footer across all pages
   ============================================== */

/* Active page navigation highlighting */
.page-signal .nav-links a[href="/signal.html"] {
    color: var(--warning-yellow) !important;
    font-weight: bold;
}

.page-solutions .nav-links a[href="/solutions.html"] {
    color: var(--warning-yellow) !important;
    font-weight: bold;
}

.page-about .nav-links a[href="/about.html"] {
    color: var(--warning-yellow) !important;
    font-weight: bold;
}

/* Standardized footer styling */
.standard-footer {
    background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    color: var(--paper);
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--paper);
}

.footer-brand p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--warning-yellow);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--paper);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--warning-yellow);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .standard-footer {
        padding: 40px 20px 30px;
    }
}

/* ==============================================
   FAQ PAGE STYLING
   Professional spacing and layout for FAQ content
   ============================================== */

.faq-section {
    padding: 80px 0 120px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.faq-item {
    background: var(--paper);
    border: 2px solid var(--concrete);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-soft);
}

.faq-item:hover {
    border-color: var(--warning-yellow);
    box-shadow: 0 4px 16px var(--shadow-medium);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: var(--font-black);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--warning-yellow);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.faq-item p {
    color: var(--steel);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-item li {
    color: var(--steel);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.faq-item strong {
    color: var(--ink);
    font-weight: var(--font-bold);
}

/* Mobile FAQ adjustments */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* ==============================================
   UTILITY CLASSES
   Common patterns to replace inline styles
   ============================================== */

/* Used utility classes only */
.text-yellow { color: var(--warning-yellow); }
.text-ocean { color: var(--ocean); }
.text-steel { color: var(--steel); }
.text-center { text-align: center; }
.text-lg { font-size: 20px; }
.text-xl { font-size: 24px; }
.font-semibold { font-weight: 600; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 20px; }
.mt-50 { margin-top: 50px; }

/* ==============================================
   HERO ANIMATIONS
   Beautiful highlighter effect for hero text
   ============================================== */

.hero .highlight {
    background: linear-gradient(transparent 60%, var(--warning-yellow) 60%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    animation: highlightSweep 0.4s ease-in-out 0.3s forwards;
    padding: 0 10px;
    display: inline-block;
    position: relative;
}

/* Duplicate keyframes removed - using first definition */

/* ==============================================
   STANDARDIZED COMPONENTS
   Reusable components to replace inline styles
   ============================================== */

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--rust) 0%, var(--rust-dark) 100%);
    color: var(--paper);
    padding: 80px 20px 60px 20px;
    text-align: center;
    margin-bottom: 0 !important;
}

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

.cta-box h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

/* Product Cycle Box */
.cycle-box {
    background: var(--sand);
    border: 3px solid var(--ocean);
    padding: 50px;
    margin: 60px auto 0;
    max-width: 1150px;
    text-align: center;
}

.cycle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.cycle-step {
    text-align: center;
    padding: 20px;
}

.cycle-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--ink);
}

.cycle-step p {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.4;
}

/* Journey Container */
.journey-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
}

.journey-card {
    flex: 1;
    text-decoration: none;
    color: inherit;
    display: block;
}

.journey-card-inner {
    text-align: center;
    padding: 20px;
    border: 3px solid var(--ocean);
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.journey-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,87,184,0.2);
}

.journey-card-inner.solutions-card {
    border-color: var(--rust);
}

.journey-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--ocean);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
}

.journey-number.solutions-number {
    background: var(--rust);
}

.journey-title {
    color: var(--ocean);
    margin-bottom: 15px;
    font-size: 24px;
}

.journey-title.solutions-title {
    color: var(--rust);
}

.journey-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.journey-description {
    color: #333333 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin-top: 10px !important;
    font-style: normal !important;
}

/* Problem Grid and Cards */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.problem-card {
    text-align: center;
    padding: 2rem;
    background: var(--paper);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Removed duplicate - using universal animation instead */

.problem-card h3 {
    margin-bottom: 1rem;
    color: var(--ink) !important;
    font-size: 1.5rem;
    font-weight: 700;
}

.problem-card p {
    margin-bottom: 1.5rem;
    color: var(--ink) !important;
    font-size: 1.1rem;
    line-height: 1.6;
}

.problem-card .btn {
    display: inline-block;
    margin: 0 auto;
}

/* Button variants */
.btn-sample {
    margin-right: 20px;
    background: var(--paper);
    color: var(--ink);
}

    /* Mobile journey adjustments */
    @media (max-width: 768px) {
        .hero {
            padding: 60px 20px !important;
        }
        
        .cta-section {
            padding: 60px 20px !important;
        }
        
        .journey-container {
            flex-direction: column;
            gap: 30px;
        }
        
        .journey-card-inner:hover {
            transform: none;
        }
    }

/* Page title utilities */
.page-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: var(--ink);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 40px;
    color: var(--ink);
}

.subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--steel);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Common component classes */
.footer-section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--warning-yellow);
}

.footer-brand-text {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 40px;
}

.section-highlight {
    background: var(--sand);
    padding: 20px;
    border: 2px solid var(--concrete);
}

/* ==============================================
   ABOUT PAGE STYLING
   Specific styles for about page elements
   ============================================== */

.serve-intro {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--paper);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ==============================================
   PRODUCTS PAGE STYLING
   Custom styles for the products flywheel page
   ============================================== */

.flow-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.flow-step {
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 30px;
    text-align: center;
    width: 100%;
    box-shadow: 5px 5px 0 var(--ink);
    color: var(--ink) !important;
}

.flow-step p {
    color: var(--ink) !important;
}

.flow-step ul {
    color: var(--ink) !important;
}

.flow-step li {
    color: var(--ink) !important;
}

.flow-step h3 {
    color: var(--ocean);
    margin-bottom: 15px;
    font-size: 24px;
}

.flow-arrow {
    font-size: 32px;
    font-weight: bold;
    color: var(--warning-yellow);
}

.ai-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.ai-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--concrete);
    position: relative;
    padding-left: 20px;
}

.ai-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ocean);
    font-weight: bold;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.research-card {
    background: var(--paper);
    border: 2px solid var(--ink);
    padding: 25px;
    text-align: center;
    box-shadow: 3px 3px 0 var(--ink);
    color: var(--ink) !important;
}

.research-card p {
    color: var(--ink) !important;
}

.research-card h3 {
    color: var(--ocean);
    margin-bottom: 10px;
    font-size: 18px;
}

/* Flywheel Section */
.flywheel-section {
    background: linear-gradient(to bottom, var(--sage), var(--sand));
    color: var(--paper);
    padding: 80px 20px;
}

.flywheel-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--paper);
    opacity: 0.9;
}

.flywheel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.flywheel-step {
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 30px 25px;
    text-align: center;
    min-width: 200px;
    box-shadow: 8px 8px 0 var(--ink);
    position: relative;
    color: var(--ink) !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.flywheel-step:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 0 var(--ink);
}

.flywheel-step.final-step {
    background: linear-gradient(135deg, var(--warning-yellow) 0%, var(--warning-yellow-bright) 100%);
    border-color: var(--ink);
}

.step-number {
    background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
    color: var(--paper);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.3);
}

.final-step .step-number {
    background: linear-gradient(135deg, var(--ink) 0%, #333 100%);
}

.step-content h3 {
    color: var(--ocean);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-step .step-content h3 {
    color: var(--ink);
}

.step-content p {
    color: var(--ink) !important;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.flywheel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 60px;
}

.flywheel-arrow svg {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.flywheel-arrow svg path {
    stroke: var(--ink) !important;
}

.advantage-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 20px auto;
}

.advantage-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--concrete);
    position: relative;
    padding-left: 30px;
    font-size: 16px;
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ocean);
    font-weight: bold;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .flow-diagram {
        gap: 15px;
    }
    
    .flow-step {
        padding: 20px;
    }
    
    .flywheel-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .flywheel-arrow {
        transform: rotate(90deg);
        min-width: 40px;
    }
    
    .flywheel-step {
        min-width: 250px;
    }
    
    .research-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================
   MOBILE BUG FIXES
   Additional mobile fixes to prevent issues
   ============================================== */

@media (max-width: 768px) {
    /* CRITICAL: Prevent horizontal scroll issues */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Fix viewport constraint issues */
    *, *::before, *::after {
        max-width: 100vw !important;
    }
    
    /* Ensure containers don't break out */
    .container {
        max-width: 100% !important;
        padding: 0 var(--container-padding-mobile, 15px) !important;
    }
    
    /* Fix any elements that might cause overflow */
    img, video, iframe, embed, object {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Improve touch targets */
    .btn {
        min-height: 44px;
        padding: 12px 24px;
    }
    
    /* Better mobile typography */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Prevent mid-word breaks on mobile */
    body, p, h1, h2, h3, h4, h5, h6, a, button, .btn {
        word-break: normal !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -ms-hyphens: none !important;
    }
    
    /* Reduce motion for better performance */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* Fix footer positioning */
    footer {
        margin-top: 2rem;
        padding: 2rem 15px;
    }
    
    /* Ensure proper stacking on mobile */
    .grid, .products-grid, .flex-grid {
        display: block !important;
    }
    
    .grid > *, .products-grid > *, .flex-grid > * {
        width: 100% !important;
        margin-bottom: 1rem;
    }
}

/* ==============================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ============================================== */
@media (max-width: 768px) {
    /* Navigation Improvements */
    .mobile-menu-toggle {
        display: block !important;
        background: #000000 !important;
        border: 2px solid #ffffff !important;
        color: #ffffff !important;
        z-index: 10001 !important;
        position: relative !important;
    }
    
    .mobile-menu-toggle .hamburger-line {
        background-color: #ffffff !important;
        width: 24px !important;
        height: 3px !important;
        margin: 4px 0 !important;
        display: block !important;
    }
    
    /* Remove hover effects on mobile */
    .mobile-menu-toggle:hover {
        background: #000000 !important;
        border-color: #ffffff !important;
        color: #ffffff !important;
        transform: none !important;
    }
    
    .mobile-menu-toggle:hover .hamburger-line {
        background-color: #ffffff !important;
    }
    
    /* Mobile Menu Overlay */
    .nav-links.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #000000 !important;
        background-color: #000000 !important;
        z-index: 10000 !important;
        padding: 100px 30px 30px !important;
        gap: 40px !important;
        align-items: center !important;
        justify-content: flex-start !important;
        opacity: 1 !important;
    }
    
    /* More specific selector for mobile menu */
    @media (max-width: 768px) {
        .nav-links.active {
            background: #000000 !important;
            background-color: #000000 !important;
        }
    }
    
    .nav-links.active a {
        font-size: 28px;
        padding: 20px 0;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        color: #FEFDFB !important;
    }
    
    .nav-links.active a:hover {
        color: #FFD000 !important;
        transform: translateX(10px);
    }
    
    /* Hide desktop nav */
    .nav-links:not(.active) {
        display: none !important;
    }
    
    /* Better spacing */
    .container {
        padding: 0 20px !important;
    }
    
    .hero {
        padding: 100px 20px 80px !important;
    }
    
    .hero h1 {
        font-size: clamp(3rem, 12vw, 5rem) !important;
        line-height: 1.05 !important;
        margin-bottom: 30px !important;
        font-weight: 900 !important;
        letter-spacing: -0.03em !important;
    }
    
    .hero-subtext {
        font-size: 20px !important;
        line-height: 1.5 !important;
        font-weight: 600 !important;
    }
    
    .section {
        padding: 80px 20px !important;
    }
    
    /* Typography improvements */
    body {
        font-size: 17px !important;
        line-height: 1.7 !important;
    }
    
    h2 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        margin-bottom: 25px !important;
    }
    
    h3 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        margin-bottom: 20px !important;
    }
    
    /* Card improvements */
    .card {
        padding: 30px 25px !important;
        margin-bottom: 20px !important;
    }
    
    .card-grid,
    .battle-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* Button improvements */
    .btn {
        padding: 18px 28px !important;
        font-size: 15px !important;
        min-height: 52px !important;
        width: 100% !important;
        margin-bottom: 15px !important;
    }
    
    .btn--large {
        padding: 20px 32px !important;
        font-size: 16px !important;
        min-height: 56px !important;
    }
    
    /* Hide complex animations on mobile */
    .testimonials-strip {
        display: none !important;
    }
    
    .cycle-box {
        display: none !important;
    }
    
    .testimonials-track {
        display: none !important;
    }
    
    /* Form improvements */
    .waitlist-form .form-group {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .waitlist-form input[type="email"] {
        width: 100% !important;
        padding: 18px 20px !important;
        font-size: 16px !important;
    }
    
    /* Footer improvements */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 40px !important;
    }
    
    .footer-column {
        margin-bottom: 30px !important;
    }
    
    .footer-column h4 {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    
    .footer-column a {
        font-size: 16px !important;
        padding: 8px 0 !important;
    }
    
    /* Prevent horizontal scroll */
    * {
        max-width: 100% !important;
    }
    
    /* Better touch targets */
    a, button, input, select, textarea {
        min-height: 44px !important;
    }
    
    /* Hide header CTA button on mobile */
    .nav .btn {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px !important;
    }
    
    .hero {
        padding: 80px 15px 60px !important;
    }
    
    .section {
        padding: 60px 15px !important;
    }
    
    .card {
        padding: 25px 20px !important;
    }
    
    .btn {
        padding: 16px 24px !important;
        font-size: 14px !important;
    }
    
}

/* ==============================================
   MOBILE REFINEMENTS - SECOND PASS
   ============================================== */
@media (max-width: 768px) {
    
    /* Better hero section spacing */
    .hero {
        min-height: 60vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero h1 {
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .hero h1 .highlight,
    .hero h1 span.highlight,
    .hero h1 .highlight *,
    .hero h1 span.highlight *,
    .hero .highlight,
    .hero .highlight * {
        background: none !important;
        background-image: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        -webkit-text-fill-color: unset !important;
        color: var(--ink) !important;
        animation: none !important;
        padding: 0 !important;
        display: inline !important;
        position: static !important;
    }
    
    .hero-subtext {
        text-align: center !important;
        max-width: 90% !important;
        margin: 0 auto 30px !important;
    }
    
    /* Improved section spacing */
    .section {
        margin-bottom: 0 !important;
    }
    
    .section + .section {
        margin-top: 0 !important;
    }
    
    /* Better card styling */
    .card {
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s ease !important;
    }
    
    /* Card hover animations handled by universal rules */
    
    /* Enhanced button styling */
    .btn {
        border-radius: 8px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    .btn:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    }
    
    .btn--primary {
        background: linear-gradient(135deg, var(--warning-yellow) 0%, var(--warning-yellow-bright) 100%) !important;
        color: var(--ink) !important;
        border: 2px solid var(--ink) !important;
    }
    
    .btn--primary:hover {
        background: var(--ink) !important;
        color: var(--warning-yellow) !important;
        border-color: var(--warning-yellow) !important;
    }
    
    /* Better form styling */
    .waitlist-form input[type="email"] {
        border-radius: 8px !important;
        border: 2px solid var(--color-border) !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    }
    
    .waitlist-form input[type="email"]:focus {
        border-color: var(--ocean) !important;
        box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.1), 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        transform: translateY(-1px) !important;
    }
    
    /* Improved typography hierarchy */
    .hero h1 {
        font-weight: 900 !important;
        letter-spacing: -0.02em !important;
    }
    
    h2 {
        font-weight: 800 !important;
        letter-spacing: -0.01em !important;
    }
    
    h3 {
        font-weight: 700 !important;
    }
    
    /* Better spacing between elements */
    .card-grid {
        gap: 30px !important;
        padding: 0 10px !important;
    }
    
    .card + .card {
        margin-top: 0 !important;
    }
    
    /* Enhanced mobile card styling */
    .card {
        padding: 25px 20px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 16px !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s ease !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    
    /* Card hover animations handled by universal rules */
    
    .card h3 {
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    
    .card p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    /* Better feature card styling */
    .feature-card {
        background: var(--paper) !important;
        border: 2px solid var(--color-border) !important;
        padding: 25px 20px !important;
        text-align: center !important;
    }
    
    .feature-card h3 {
        color: var(--ink) !important;
        font-size: 1.2rem !important;
        margin-bottom: 12px !important;
    }
    
    .feature-card p {
        color: var(--ink) !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Better testimonial card styling */
    .testimonial-card {
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        padding: 25px 20px !important;
        border-radius: 16px !important;
    }
    
    .testimonial-card p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
        color: var(--ink) !important;
    }
    
    .testimonial-card .author {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: var(--ocean) !important;
    }
    
    /* Better product card styling */
    .product-card {
        background: var(--paper) !important;
        border: 2px solid var(--color-border) !important;
        padding: 30px 20px !important;
        text-align: center !important;
        border-radius: 16px !important;
    }
    
    .product-card h3 {
        color: var(--ink) !important;
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
    }
    
    .product-card p {
        color: var(--ink) !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }
    
    /* Better section spacing */
    .section {
        padding: 50px 20px !important;
        margin: 0 !important;
    }
    
    /* Reduce spacing between sections on mobile */
    .section + .section {
        margin-top: 20px !important;
    }
    
    .hero + .section {
        margin-top: 20px !important;
    }
    
    .cta-section + .section {
        margin-top: 20px !important;
    }
    
    /* Remove gap between problem-section and cta-section */
    .problem-section + .cta-section {
        margin-top: 0 !important;
    }
    
    .section h2 {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }
    
    .section p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }
    
    /* Enhanced mobile footer */
    footer {
        padding: 30px 15px 20px !important;
        margin-top: 1rem !important;
    }
    
    .footer-content, .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 20px !important;
        padding: 0 !important;
    }
    
    .footer-brand, .footer-column, .footer-section {
        margin-bottom: 15px !important;
    }
    
    .footer-brand h3 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    
    .footer-brand .tagline, .footer-brand p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .footer-column h4, .footer-section h4 {
        color: var(--color-accent) !important;
        font-weight: 700 !important;
        font-size: 16px !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-bottom: 15px !important;
    }
    
    .footer-column a, .footer-section a {
        font-size: 15px !important;
        padding: 8px 0 !important;
        display: block !important;
        transition: color 0.3s ease !important;
    }
    
    .footer-column a:hover, .footer-section a:hover {
        color: var(--color-accent) !important;
    }
    
    .footer-bottom {
        margin-top: 30px !important;
        padding-top: 20px !important;
        font-size: 13px !important;
    }
    
    /* Mobile sticky CTA - show only on mobile */
    .mobile-sticky-cta {
        display: block !important;
    }
    
    /* Hide distracting check marks on mobile */
    .feature-card::before {
        display: none !important;
    }
    
    /* Fix final CTA white space on mobile */
    .final-cta {
        padding: 40px 20px !important;
        margin-bottom: 0 !important;
    }
    
    .final-cta .stamp {
        margin-bottom: 0 !important;
    }
    
    /* Ensure no white gap before footer */
    .final-cta + footer {
        margin-top: 0 !important;
    }
    
    .cta-section + footer {
        margin-top: 0 !important;
    }
    
    /* Better stamp styling */
    .stamp {
        border-radius: 12px !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
        transition: all 0.3s ease !important;
    }
    
    .stamp:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Improved single price card */
    .single-price-card {
        border-radius: 12px !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
    }
    
    .single-price-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Better price styling */
    .price {
        font-size: 3rem !important;
        font-weight: 900 !important;
        color: var(--color-accent) !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Enhanced what-you-get list */
    .what-you-get ul {
        text-align: left !important;
        padding-left: 0 !important;
    }
    
    .what-you-get li {
        padding: 8px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        position: relative !important;
        padding-left: 25px !important;
    }
    
    .what-you-get li:before {
        content: "✓" !important;
        position: absolute !important;
        left: 0 !important;
        color: var(--color-accent) !important;
        font-weight: bold !important;
    }
    
    .what-you-get li:last-child {
        border-bottom: none !important;
    }
    
    /* Better CTA notes */
    .cta-note {
        font-size: 13px !important;
        opacity: 0.8 !important;
        line-height: 1.5 !important;
    }
    
    /* Mobile menu backdrop removed - using click-outside functionality instead */
    
    /* Swipeable carousel for mobile */
    .swipeable-container {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .swipeable-container::-webkit-scrollbar {
        display: none !important;
    }
    
    .swipeable-track {
        display: flex !important;
        gap: 20px !important;
        padding: 0 20px !important;
    }
    
    .swipeable-item {
        flex: 0 0 280px !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
    }
    
    .swipeable-item img {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Swipe indicators */
    .swipe-indicators {
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }
    
    .swipe-indicator {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background: var(--color-border) !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }
    
    .swipe-indicator.active {
        background: var(--ocean) !important;
        transform: scale(1.2) !important;
    }
    
    /* Swipe arrows */
    .swipe-arrow {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border: none !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        color: var(--ink) !important;
        cursor: pointer !important;
        z-index: 10 !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    .swipe-arrow:hover {
        background: var(--ocean) !important;
        color: var(--paper) !important;
        transform: translateY(-50%) scale(1.1) !important;
    }
    
    .swipe-arrow--left {
        left: 10px !important;
    }
    
    .swipe-arrow--right {
        right: 10px !important;
    }
    
    /* Hide arrows on very small screens */
    @media (max-width: 480px) {
        .swipe-arrow {
            display: none !important;
        }
    }
    
    /* Touch optimizations */
    .btn, .mobile-menu-toggle, .card, .swipeable-item {
        -webkit-tap-highlight-color: rgba(255, 208, 0, 0.3) !important;
        touch-action: manipulation !important;
    }
    
    /* Additional mobile performance optimizations */
    .hero::before {
        display: none !important; /* Disable hero background pattern on mobile for performance */
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100% !important;
        height: auto !important;
        loading: lazy !important;
    }
    
    /* Better mobile spacing for sections */
    .section {
        padding: 40px 20px !important;
        margin-bottom: 0 !important;
    }
    
    .section + .section {
        margin-top: 0 !important;
    }
    
    /* Enhanced mobile card styling */
    .card {
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s ease !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    
    .card:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
    }
    
    /* Prevent zoom on form inputs */
    input[type="email"], input[type="text"], input[type="tel"], textarea, select {
        font-size: 16px !important;
        -webkit-appearance: none !important;
        border-radius: 8px !important;
    }
    
    /* Better form mobile UX */
    input[type="email"] {
        inputmode: email !important;
    }
    
    input[type="tel"] {
        inputmode: tel !important;
    }
    
    /* Image lazy loading optimization */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Prevent horizontal scroll */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Enhanced error message visibility */
    .error-message {
        background: rgba(220, 38, 38, 0.1) !important;
        color: #DC2626 !important;
        padding: 8px 12px !important;
        border-radius: 6px !important;
        font-size: 14px !important;
        margin-top: 5px !important;
        border-left: 3px solid #DC2626 !important;
    }
    
    /* Better success message visibility */
    .success-message {
        background: rgba(16, 185, 129, 0.1) !important;
        color: #10B981 !important;
        padding: 8px 12px !important;
        border-radius: 6px !important;
        font-size: 14px !important;
        margin-top: 5px !important;
        border-left: 3px solid #10B981 !important;
    }
    
    /* Back to top button mobile adjustments */
    .back-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        transition: none !important;
    }
    
    /* Prevent color changes on mobile tap */
    .back-to-top:active {
        background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%) !important;
        color: var(--paper) !important;
        border-color: var(--paper) !important;
        transform: none !important;
    }
    
    /* About page mobile styles */
    .story-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .story-visual {
        padding: 30px !important;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr !important;
    }
    
    .serve-grid {
        grid-template-columns: 1fr !important;
    }
    
    .belief-card {
        padding: 30px !important;
    }
    
    .cta-box {
        padding: 40px 30px !important;
        transform: none !important;
    }
}
