/* ============================================
   NORTH SIGNAL SYSTEMS - Storm Inspection Booking
   Rugged, contractor-focused design for roofers
   ============================================ */

:root {
    /* Core palette - industrial, roofing contractor feel */
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-card: #1c2128;
    --bg-elevated: #21262d;
    
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    
    /* Contractor accent - steel blue + amber (trust + action) */
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --accent-glow: rgba(245, 158, 11, 0.4);
    --accent-subtle: rgba(245, 158, 11, 0.12);
    --accent-blue: #3b82f6;
    
    /* Utility */
    --success: #22c55e;
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.2);
    
    /* Typography - Bebas for impact, Archivo for body */
    --font-display: 'Bebas Neue', 'Archivo Black', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(245, 158, 11, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 40%, transparent 100%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(to bottom, var(--bg-primary) 0%, transparent 100%);
    backdrop-filter: blur(8px);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--accent);
}

.logo-icon.large {
    width: 60px;
    height: 60px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

.header-cta {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.header-cta:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 100;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    padding: var(--space-3xl) var(--space-xl);
    padding-top: 80px;
    gap: var(--space-lg);
}

.mobile-nav-link {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--accent);
}

.mobile-nav-cta {
    margin-top: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all 0.2s ease;
}

.mobile-nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Funnel Hero Section - contractor-focused */
.funnel-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) var(--space-xl);
    padding-top: 140px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}
.funnel-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -6deg,
        transparent,
        transparent 40px,
        rgba(255, 255, 255, 0.02) 40px,
        rgba(255, 255, 255, 0.02) 80px
    );
    pointer-events: none;
}

.funnel-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.funnel-hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    margin-top: var(--space-xl);
    padding: var(--space-xs) 0;
}

.funnel-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
}

.funnel-hero-title .highlight {
    color: var(--accent);
}

.funnel-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.funnel-hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.funnel-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.funnel-cta-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.funnel-cta-primary svg {
    width: 20px;
    height: 20px;
}

.funnel-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: var(--space-lg) var(--space-2xl);
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.funnel-cta-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Funnel Section Container */
.funnel-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.funnel-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: var(--space-3xl);
}

/* Problem Section */
.funnel-problem {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.problem-item {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}
.problem-item:hover {
    border-left-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.problem-item h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    letter-spacing: 0.03em;
}

.problem-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Solution Section */
.funnel-solution {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-primary);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.solution-item {
    padding: var(--space-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent);
}
.solution-item:hover {
    border-top-color: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.solution-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent);
    background: var(--accent-subtle);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.solution-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.solution-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Process Section */
.funnel-process {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-secondary);
}

.process-timeline-simple {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.process-step-simple {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.step-marker {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-subtle);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-cta-simple {
    text-align: center;
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.process-link-btn {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.process-link-btn:hover {
    color: var(--accent-light);
}

/* Calculator Section - Funnel Style */
.funnel-calculator {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-primary);
}

.funnel-calculator-top {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-3xl);
}

.calculator-header-funnel {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.calculator-header-funnel h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.calculator-header-funnel p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Risk-Free Banner - Full width, high visibility */
.risk-free-banner {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.25) 0%, rgba(34, 197, 94, 0.15) 100%);
    border-bottom: 2px solid var(--success);
    padding: var(--space-md) var(--space-xl);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding-top: calc(60px + var(--space-md));
}
.risk-free-banner-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    letter-spacing: 0.15em;
    color: var(--success);
}
.risk-free-banner-divider {
    color: var(--success);
    opacity: 0.7;
}

.risk-free-banner-audience {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    background: var(--accent-subtle);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
}

.risk-free-banner-page {
    padding-top: var(--space-md);
}

/* Hero risk-free badge - prominent */
.funnel-hero-badge-audience {
    font-size: 0.9375rem !important;
    letter-spacing: 0.12em !important;
    color: var(--accent) !important;
    background: var(--accent-subtle) !important;
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    margin-bottom: var(--space-sm) !important;
}

.funnel-hero-badge-risk {
    font-size: 1rem !important;
    letter-spacing: 0.15em !important;
    color: var(--success) !important;
    background: rgba(34, 197, 94, 0.15) !important;
    border: 1px solid rgba(34, 197, 94, 0.5) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    margin-bottom: var(--space-lg) !important;
}

/* Calculator risk-free box */
.calculator-risk-free-box {
    background: rgba(34, 197, 94, 0.12);
    border: 2px solid var(--success);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: var(--space-2xl);
}

/* Guarantee section - mega risk-free emphasis */
.guarantee-risk-free-mega {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.08em;
    color: var(--success);
    margin-bottom: var(--space-sm);
    line-height: 1;
}
.guarantee-risk-free-tagline {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    margin-bottom: var(--space-xl) !important;
}

/* Risk-free guarantee badge */
.guarantee-risk-free {
    font-family: var(--font-display);
    font-size: 0.875rem;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.modal-risk-free {
    font-size: 1rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* Final CTA Section - Guarantee emphasis for roofers */
.funnel-final-cta {
    padding: var(--space-3xl) var(--space-xl);
    background: linear-gradient(135deg, var(--accent-subtle) 0%, var(--bg-secondary) 100%);
    text-align: center;
    border-top: 2px solid var(--accent);
    position: relative;
}
.funnel-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--accent);
    border-radius: 0 0 4px 4px;
}

.funnel-final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    letter-spacing: 0.03em;
}

.funnel-final-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.funnel-final-cta p strong {
    color: var(--accent);
    font-weight: 600;
}

/* Results CTA - Funnel Style */
.results-cta-funnel {
    text-align: center;
    padding: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.results-risk-free-box {
    background: rgba(34, 197, 94, 0.12);
    border: 2px solid var(--success);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--success);
    margin-bottom: var(--space-xl);
    display: inline-block;
}

.results-cta-funnel h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.results-cta-funnel p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-funnel {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-funnel {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary-funnel:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.cta-primary-funnel svg {
    width: 18px;
    height: 18px;
}

.cta-secondary-funnel {
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-secondary-funnel:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Legacy Hero (keeping for compatibility) */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-3xl);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: var(--accent-subtle);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: var(--space-xl);
}

.hero-cta {
    margin-bottom: var(--space-2xl);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta-btn:hover::before {
    left: 100%;
}

.hero-cta-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow), 0 0 60px var(--accent-glow);
}

.hero-cta-btn:active {
    transform: translateY(0);
}

.hero-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover svg {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Signal Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.signal-rings {
    position: relative;
    width: 400px;
    height: 400px;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.3;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: pulse 3s ease-out infinite;
}

.ring-2 {
    width: 70%;
    height: 70%;
    animation: pulse 3s ease-out infinite 0.5s;
}

.ring-3 {
    width: 40%;
    height: 40%;
    animation: pulse 3s ease-out infinite 1s;
}

.ring-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--accent-glow), 0 0 80px var(--accent-glow);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Trust Funnel Section */
.trust-funnel {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-secondary);
}

.trust-funnel-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.trust-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.trust-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.trust-grid {
    display: none; /* Replaced with simplified layout */
}

/* Simplified Trust Section */
.trust-simple {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.testimonials-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.testimonial-carousel-simple {
    position: relative;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: var(--space-xl);
    text-align: center;
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-company {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-name {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.carousel-btn:hover:not(:disabled) {
    border-color: var(--accent);
    background: var(--accent-subtle);
    color: var(--accent);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.carousel-indicator.active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* Results & Stats Section */
.results-stats-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.results-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.result-card-simple {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
}

.result-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.result-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Case Studies Section */
.case-studies-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.case-studies-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.case-study-card {
    padding: var(--space-lg);
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.case-study-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.case-study-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.trust-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.trust-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonial Carousel */
.testimonial-carousel-card {
    grid-column: 1 / -1;
}

.testimonial-carousel {
    position: relative;
    margin-top: var(--space-lg);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.testimonial-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    gap: var(--space-lg);
}

.testimonial-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.testimonial-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.logo-fallback {
    display: none;
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    width: 100%;
}

.testimonial-quote {
    max-width: 600px;
}

.testimonial-quote p {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    border-color: var(--accent);
    background: var(--accent-subtle);
    color: var(--accent);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* Legacy Testimonial Styles (for other pages) */
.testimonial-quote:not(.testimonial-slide .testimonial-quote) {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.testimonial-quote:not(.testimonial-slide .testimonial-quote):last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Results Card */
.results-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.result-metric {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent);
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Client Logos Card */
.client-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.logo-placeholder {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8125rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-md);
}

/* Case Study Card */
.case-study-item {
    margin-bottom: var(--space-lg);
}

.case-study-item:last-child {
    margin-bottom: 0;
}

.case-study-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.case-study-item p {
    font-size: 0.9375rem;
}

/* Stats Card */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.stat-text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* Process Card */
.process-preview {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.process-step-preview {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
}

.step-number {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-subtle);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.step-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.process-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.process-link:hover {
    color: var(--accent-light);
}

/* Guarantee Card */
.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.guarantee-item svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.guarantee-item span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--accent-subtle) 0%, var(--bg-card) 100%);
    border-color: var(--accent);
    text-align: center;
}

.trust-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-cta-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.trust-cta-btn svg {
    width: 18px;
    height: 18px;
}

/* Calculator Section */
.calculator-section {
    padding: var(--space-3xl) var(--space-xl);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 20%);
}

.calculator-container {
    max-width: 700px;
    margin: 0 auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.calculator-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.calculator-header p {
    color: var(--text-secondary);
}

/* Form Styles */
.calculator-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 500;
    font-size: 1rem;
}

.label-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    background: var(--accent-subtle);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-subtle);
}

.select-arrow {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.input-wrapper.currency input {
    padding-left: 2.5rem;
}

.input-wrapper.percentage input {
    padding-right: 2.5rem;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-subtle);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.input-prefix,
.input-suffix {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--text-muted);
}

.input-prefix {
    left: var(--space-md);
}

.input-suffix {
    right: var(--space-md);
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Calculate Button */
.calculate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    margin-top: var(--space-lg);
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calculate-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.calculate-btn svg {
    width: 20px;
    height: 20px;
}

/* Results Section */
.results-section {
    display: none;
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-secondary);
}

.results-section.visible {
    display: block;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-container {
    max-width: 900px;
    margin: 0 auto;
}

.results-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.results-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--accent-subtle);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.results-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-transform: uppercase;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: all 0.2s ease;
    border-left: 4px solid var(--border-strong);
}
.result-card:hover {
    border-left-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.result-card.highlight {
    background: linear-gradient(135deg, var(--accent-subtle) 0%, var(--bg-card) 100%);
    border-color: var(--accent);
    border-left-width: 4px;
    border-left-color: var(--accent);
}

.card-icon {
    width: 44px;
    height: 44px;
    color: var(--accent);
    flex-shrink: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.result-card.highlight .card-value {
    color: var(--accent);
    font-size: 2.75rem;
}

.card-sublabel {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* Results Breakdown */
.results-breakdown {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.results-breakdown h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

.breakdown-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border);
}

.breakdown-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.breakdown-label {
    color: var(--text-secondary);
}

.breakdown-value {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--text-primary);
}

/* Roofing ROI Math Box - bold numbers for contractors */
.roi-math-box {
    margin-top: var(--space-xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--accent-subtle) 0%, var(--bg-secondary) 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.roi-math-box h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.roi-math-lines {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.roi-math-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-md);
}

.roi-math-left {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.roi-math-right {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--accent);
    font-size: 1.25rem;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.roi-math-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* CTA Section */
.results-cta {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2xl);
    align-items: center;
}

.cta-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 450px;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.cta-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.cta-primary svg {
    width: 18px;
    height: 18px;
}

.cta-secondary {
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-secondary:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.cta-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0.5;
}

.cta-logo .logo-text {
    font-size: 0.75rem;
}

/* Lead Capture Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: var(--space-md);
}

.modal-overlay.visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.modal-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--accent-subtle);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.lead-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.lead-form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.lead-form-group label .optional {
    color: var(--text-muted);
    font-weight: 400;
}

.lead-form-group input {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.lead-form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-subtle);
}

.lead-form-group input::placeholder {
    color: var(--text-muted);
}

.lead-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    margin-top: var(--space-sm);
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lead-submit-btn:hover:not(:disabled) {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.lead-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.lead-submit-btn svg {
    width: 18px;
    height: 18px;
}

.lead-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* Modal ROI Snapshot - bold numbers for roofers */
.modal-roi-snapshot {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
    text-align: left;
}

.modal-roi-line {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    align-items: baseline;
    padding: var(--space-sm) 0;
}

.modal-roi-line span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.modal-roi-line strong {
    font-family: var(--font-display);
    color: var(--accent);
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

/* Footer */
.footer {
    padding: var(--space-xl);
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   PAGE STYLES (Process, How to Apply)
   ============================================ */

/* Page Hero */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) var(--space-xl);
    padding-top: 140px;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
}

.page-hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: var(--accent-subtle);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
}

.page-hero-title .highlight {
    color: var(--accent);
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Process Timeline */
.process-section {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-secondary);
}

.process-container {
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    padding-left: var(--space-xl);
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-3xl);
    padding-left: var(--space-2xl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.highlight {
    background: var(--accent-subtle);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--accent);
}

.timeline-marker {
    position: absolute;
    left: -28px;
    top: 0;
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-item.highlight .timeline-marker {
    background: var(--accent);
    border-color: var(--accent);
}

.timeline-day {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.timeline-item.highlight .timeline-day {
    color: var(--bg-primary);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.timeline-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--text-primary);
}

.timeline-duration {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-elevated);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.timeline-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.timeline-list {
    list-style: none;
    margin-bottom: var(--space-md);
}

.timeline-list li {
    padding-left: var(--space-lg);
    position: relative;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.timeline-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.timeline-outcome {
    padding: var(--space-md);
    background: var(--bg-elevated);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.timeline-outcome.highlight-outcome {
    background: var(--bg-primary);
    border-color: var(--success);
}

.timeline-outcome strong {
    color: var(--accent);
}

.timeline-outcome.highlight-outcome strong {
    color: var(--success);
}

/* Ongoing Support Section */
.ongoing-section {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-primary);
}

.ongoing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ongoing-container h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: var(--space-2xl);
}

.ongoing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.ongoing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: left;
    transition: all 0.2s ease;
}

.ongoing-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.ongoing-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.ongoing-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.ongoing-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Process CTA */
.process-cta {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-secondary);
    text-align: center;
}

.process-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.process-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.process-cta-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-size: 1.125rem;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.process-cta-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.process-cta-btn svg {
    width: 20px;
    height: 20px;
}

/* Apply Steps */
.apply-section {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-secondary);
}

.apply-container {
    max-width: 800px;
    margin: 0 auto;
}

.apply-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.apply-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--space-xl);
    position: relative;
}

.apply-step-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-subtle);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.apply-step-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.apply-step-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.apply-list {
    list-style: none;
    margin: var(--space-md) 0;
}

.apply-list li {
    padding-left: var(--space-lg);
    position: relative;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.apply-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.apply-step-action {
    margin-top: var(--space-lg);
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.apply-btn svg {
    width: 18px;
    height: 18px;
}

.apply-note {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--bg-elevated);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
}

.apply-note strong {
    color: var(--accent);
}

/* Requirements Section */
.requirements-section {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-primary);
}

.requirements-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.requirements-container h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.requirements-intro {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.requirement-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: left;
    transition: all 0.2s ease;
}

.requirement-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.requirement-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.requirement-icon.positive {
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
}

.requirement-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.requirement-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: var(--space-md);
}

.faq-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    font-size: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    color: var(--accent);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Apply CTA */
.apply-cta {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-primary);
    text-align: center;
}

.apply-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.apply-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.apply-cta-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-size: 1.125rem;
}

.apply-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-cta-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.apply-cta-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 900px) {
    /* Funnel Hero Mobile */
    .funnel-hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--space-2xl);
    }
    
    .funnel-hero-title {
        font-size: 2rem;
    }
    
    .funnel-hero-subtitle {
        font-size: 1rem;
    }
    
    .funnel-hero-cta {
        flex-direction: column;
    }
    
    .funnel-cta-primary,
    .funnel-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Problem/Solution Mobile */
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .process-timeline-simple {
        gap: var(--space-md);
    }
    
    .process-step-simple {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md);
    }
    
    .step-marker {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .funnel-calculator {
        padding: var(--space-xl) var(--space-md);
    }
    
    .calculator-header-funnel h2 {
        font-size: 1.5rem;
    }
    
    .funnel-final-cta {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .funnel-final-cta h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .signal-rings {
        width: 250px;
        height: 250px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        display: flex;
        justify-content: center;
    }
    
    .hero-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .results-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-logo {
        display: none;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Funnel Hero Mobile */
    .funnel-hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--space-2xl);
    }
    
    .funnel-hero-title {
        font-size: 2rem;
    }
    
    .funnel-hero-subtitle {
        font-size: 1rem;
    }
    
    .funnel-hero-cta {
        flex-direction: column;
    }
    
    .funnel-cta-primary,
    .funnel-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Problem/Solution Mobile */
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .process-timeline-simple {
        gap: var(--space-md);
    }
    
    .process-step-simple {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md);
    }
    
    .step-marker {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .funnel-calculator {
        padding: var(--space-xl) var(--space-md);
    }
    
    .calculator-header-funnel h2 {
        font-size: 1.5rem;
    }
    
    .funnel-final-cta {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .funnel-final-cta h2 {
        font-size: 1.75rem;
    }
    
    .page-hero {
        padding-top: 100px;
        min-height: 50vh;
    }
    
    .process-timeline {
        padding-left: var(--space-lg);
    }
    
    .timeline-item {
        padding-left: var(--space-lg);
    }
    
    .timeline-marker {
        left: -22px;
        width: 44px;
        height: 44px;
    }
    
    .timeline-day {
        font-size: 0.75rem;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ongoing-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .apply-step {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .apply-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Trust Funnel Mobile */
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-carousel-card {
        grid-column: 1;
    }
    
    .trust-card {
        padding: var(--space-lg);
    }
    
    .trust-header h2 {
        font-size: 1.75rem;
    }
    
    .testimonial-slide {
        padding: var(--space-md);
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .testimonial-logo {
        width: 100px;
        height: 60px;
    }
    
    .carousel-nav {
        margin-top: var(--space-md);
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logos {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .calculator-section {
        padding: var(--space-xl) var(--space-md);
    }
    
    .calculator-header h2 {
        font-size: 1.5rem;
    }
    
    .form-group {
        gap: var(--space-md);
    }
    
    .input-wrapper input,
    .select-wrapper select {
        font-size: 1rem;
        padding: var(--space-md);
    }
    
    .calculate-btn {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.9375rem;
    }
}

@media (max-width: 600px) {
    .risk-free-banner {
        padding: var(--space-sm) var(--space-md);
        padding-top: calc(56px + var(--space-sm));
        flex-direction: column;
        gap: var(--space-xs);
    }
    .risk-free-banner-text {
        font-size: 0.9375rem;
    }
    .guarantee-risk-free-mega {
        font-size: 2rem;
    }
    
    .header {
        padding: var(--space-md);
    }
    
    .header-cta {
        display: none;
    }
    
    .hero {
        padding: var(--space-2xl) var(--space-md);
        padding-top: 100px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: var(--space-lg);
    }
    
    .hero-cta-btn {
        width: 100%;
        max-width: none;
        justify-content: center;
        font-size: 0.875rem;
        padding: var(--space-sm) var(--space-lg);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
        margin-top: var(--space-lg);
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .trust-funnel {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .trust-header h2 {
        font-size: 1.5rem;
    }
    
    .trust-header p {
        font-size: 1rem;
    }
    
    .testimonials-section,
    .results-stats-section,
    .case-studies-section {
        padding: var(--space-md);
    }
    
    .testimonials-section h3,
    .case-studies-section h3 {
        font-size: 1.125rem;
    }
    
    .testimonial-item {
        padding: var(--space-md);
    }
    
    .testimonial-company {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9375rem;
    }
    
    .results-grid-simple {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .result-number {
        font-size: 1.5rem;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .calculator-section,
    .results-section {
        padding: var(--space-xl) var(--space-md);
    }
    
    .calculator-header h2 {
        font-size: 1.25rem;
    }
    
    .calculator-header p {
        font-size: 0.9375rem;
    }
    
    .form-label {
        font-size: 0.9375rem;
    }
    
    .input-wrapper input,
    .select-wrapper select {
        font-size: 0.9375rem;
        padding: var(--space-sm) var(--space-md);
    }
    
    .calculate-btn {
        padding: var(--space-md);
        font-size: 0.875rem;
    }
    
    .card-value {
        font-size: 1.5rem;
    }
    
    .breakdown-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
    
    .results-grid {
        gap: var(--space-sm);
    }
    
    .result-card {
        padding: var(--space-md);
    }
    
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
    
    .mobile-nav.active {
        right: 0;
    }
}

/* Hide number input spinners */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
