:root {
    --bg-dark: #050505;
    /* Deep African Night */
    --bg-panel: #111111;
    /* Darker Charcoal */
    --primary-gold: #FF9900;
    /* Sunset Gold */
    --primary-copper: #D2691E;
    /* Copper/Earth */
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --glass-border: rgba(255, 153, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 153, 0, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(5, 5, 5, 0.9);
}

.navbar.scrolled .nav-logo {
    height: 50px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 60px;
    width: auto;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-white);
    text-decoration: none;
}

.brand-name .highlight {
    color: var(--primary-gold);
}

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

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

.cta-button-small {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button-small:hover {
    background: var(--primary-gold);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 0;
    /* Offset for fixed navbar */
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero-video,
stream#hero-video,
iframe#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(10, 14, 26, 0.95) 0%,
            rgba(10, 14, 26, 0.8) 50%,
            rgba(10, 14, 26, 0.4) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    z-index: 10;
    align-items: center;
}

.hero-text .badge {
    display: inline-block;
    background: rgba(255, 153, 0, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.electric-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 153, 0, 0.5);
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.cta-button-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-copper) 100%);
    color: var(--bg-dark);
    padding: 1rem 2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.6);
}

.cta-button-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    border-color: var(--text-white);
    background: rgba(255, 153, 0, 0.08);
}

/* Warrior Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.warrior-frame {
    position: relative;
    border: 1px solid var(--glass-border);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: grayscale(80%) contrast(1.2);
    transition: filter 0.5s;
    display: block;
}

.warrior-frame:hover .hero-image {
    filter: grayscale(0%) contrast(1.1);
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
    opacity: 0.5;
    animation: scan 3s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.sound-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 6px 12px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.sound-toggle:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.5);
    transform: translateY(-2px);
}

.sound-toggle:active {
    transform: translateY(0);
}

.sound-icon {
    font-size: 1rem;
}

.sound-toggle.unmuted {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.sound-toggle.unmuted:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.hud-item {
    position: absolute;
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 5px;
}

.top-left {
    top: 20px;
    left: 20px;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-gray);
}

.scroll-indicator .arrow {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-visual {
        display: none;
        /* Hide image on smaller screens to focus on copy/video */
    }

    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .cta-group .cta-button-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Pricing/Tier Styles */
.pricing-style {
    gap: 2rem;
}

.tier-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-tier {
    border-color: var(--primary-gold);
    transform: scale(1.05);
    /* Make it pop */
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.15);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.tier-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.tier-name {
    color: var(--primary-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.tier-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.tier-card h3 {
    font-size: 1.8rem;
}

.tier-body {
    flex-grow: 1;
}

.sizzle-hook {
    font-style: italic;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    border-left: 2px solid var(--primary-gold);
    padding-left: 1rem;
    background: rgba(255, 153, 0, 0.05);
    padding: 1rem;
}

.tier-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-features li {
    margin-bottom: 1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.market-comparison {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.market-comparison small {
    display: block;
    color: var(--primary-gold);
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.market-comparison p {
    color: var(--text-white);
    font-size: 0.9rem;
    margin: 0;
}

.tier-footer {
    margin-top: 2rem;
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
}

/* Response for featured card on mobile */
@media (max-width: 768px) {
    .featured-tier {
        transform: none;
        margin: 2rem 0;
    }
}

/* Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section-dark {
    padding: var(--spacing-xl) 5%;
    background: var(--bg-dark);
}

.section-light {
    padding: var(--spacing-xl) 5%;
    background: #0a0a0a;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--text-white);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.section-title-small {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--primary-gold);
}

.electric-text-dark {
    color: var(--primary-gold);
    text-shadow: 0 0 15px rgba(255, 153, 0, 0.4);
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: var(--spacing-lg);
    border-radius: 12px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.solution-card:hover {
    border-color: var(--primary-gold);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.solution-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Guide Text */
.guide-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Split Layout (About) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trust-badge {
    border: 2px solid var(--primary-gold);
    padding: 2rem;
    text-align: center;
    color: var(--primary-gold);
    font-weight: 800;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.5rem;
    background: rgba(255, 153, 0, 0.05);
}

/* Calculator Section */
.section-calculator {
    padding: 8rem 5%;
    background: #000;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-panel);
    padding: 4rem;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.calculator-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.05) 0%, transparent 70%);
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calc-result-box {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-gold);
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.1);
}

.result-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.result-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 153, 0, 0.3);
}

.result-breakdown p {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {

    .split-layout,
    .calculator-container {
        grid-template-columns: 1fr;
    }

    .calculator-container {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .result-value {
        font-size: 2.5rem;
    }
}

/* ============================================
   BUNDLE PRICING CARDS
   ============================================ */

.section-sub {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bundle-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.bundle-card:hover {
    border-color: rgba(255, 153, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Featured (Most Popular) Card */
.bundle-card.featured {
    border: 2px solid var(--primary-gold);
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255, 153, 0, 0.15);
    z-index: 2;
}

.bundle-card.featured:hover {
    transform: scale(1.05);
}

/* Premium (Rainmaker) Card */
.bundle-card.premium {
    border-color: rgba(255, 153, 0, 0.4);
    background: linear-gradient(180deg, rgba(40, 30, 20, 0.9) 0%, rgba(15, 10, 5, 1) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-copper) 100%);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.bundle-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bundle-tier {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
}

/* ============================================
   CUSTOM CLASSES FOR REFACTORED PAGES
   ============================================ */

.cta-box-custom {
    background: var(--bg-panel);
    padding: 4rem;
    border: 1px solid var(--primary-gold);
}

.cta-box-description {
    margin-bottom: 3rem;
    color: var(--text-gray);
}

.cta-group-centered {
    justify-content: center;
}

.footer-standard {
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-text {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.footer-services {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.footer-services-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
}

.footer-services-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1.4rem;
}

.footer-services-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.75;
    transition: all 0.25s ease;
}

.footer-services-links a:hover {
    color: var(--primary-gold);
    opacity: 1;
}

.brand-name-large {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
}

.form-title {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
    letter-spacing: 2px;
    color: var(--primary-gold);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.bundle-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.bundle-tagline {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.bundle-pricing {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

.price-setup {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.price-setup span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-monthly {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    text-shadow: 0 0 15px rgba(255, 153, 0, 0.2);
}

.price-monthly span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
}

.bundle-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    min-height: 280px;
    line-height: 1.8;
}
.bundle-features li {
    padding: 0.6rem 0;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
}
.bundle-features li {
    padding: 0.5rem 0;
    line-height: 1.7;
}

.bundle-features li {
    padding: 0.6rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.bundle-features li:last-child {
    border-bottom: none;
}

.bundle-value {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 100px;
    /* Aligns the buttons across cards */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bundle-value small {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.bundle-value p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
}

.bundle-footer {
    margin-top: auto;
    width: 100%;
}

.bundle-footer .cta-button-primary,
.bundle-footer .cta-button-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 55px;
    /* Consistent button height */
    width: 100%;
}

.guarantee-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 153, 0, 0.05);
    border: 1px dashed rgba(255, 153, 0, 0.2);
    border-radius: 8px;
}

/* Bundle Cards Responsive */
@media (max-width: 1200px) {
    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bundle-card.featured {
        transform: none;
    }

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

@media (max-width: 768px) {
    .bundles-grid {
        grid-template-columns: 1fr;
    }

    .bundle-card {
        padding: 1.5rem;
    }

    .bundle-header h3 {
        font-size: 1.3rem;
    }

    .price-monthly {
        font-size: 2rem;
    }
}
/* ============================================
   INDEX PAGE CUSTOM STYLES
   ============================================ */

.story-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.story-lead {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-paragraph {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.quote-margin {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.reasons-text {
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 0.92rem;
}

.quote-margin {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.reasons-text {
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 0.92rem;
}

.quote-italic {
    line-height: 1.8;
    font-style: italic;
}

.why-item p,
.reason-item-title + p {
    line-height: 1.7;
}

.story-section-title {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.boots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

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

.reason-title {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-button-large {
    display: inline-flex;
    font-size: 1.1rem;
}

.boots-on-ground-styled {
    background: rgba(255, 153, 0, 0.05);
    border-left: 3px solid var(--primary-gold);
    padding: 1.5rem;
    border-radius: 4px;
}

.why-section-title {
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reasons-block-styled {
    border: 1px solid var(--primary-gold);
    background: rgba(255, 153, 0, 0.02);
    padding: 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reason-item-title {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-full {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    display: inline-block;
}

/* === TEXT SPACING IMPROVEMENTS === */
.featured-tagline { line-height: 1.7; margin-bottom: 1rem; }
.featured-pricing { line-height: 1.7; margin-bottom: 1.8rem; }
.lead-capture-title { margin-bottom: 0.5rem; }
.lead-capture-sub { line-height: 1.7; margin-bottom: 1.2rem; }
.calculator-intro {
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}
.section-sub { line-height: 1.8; margin-bottom: 1.5rem; }
.reason-item-title { margin-bottom: 0.75rem; }
/* Voice Agent Featured spacing - desktop */
.voice-agent-featured .featured-pricing {
    margin-bottom: 1.8rem;
    line-height: 1.7;
}
.voice-agent-featured .featured-tagline {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
.voice-agent-featured .cta-button-primary {
    margin-top: 0.5rem;
}

/* Lead form spacing */
.calculator-card-sub {
    line-height: 1.7;
    margin-bottom: 1rem;
}
.lead-capture-sub {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Bundle card text */
.bundle-tagline {
    line-height: 1.6;
}
.bundle-header h3 {
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* === FORM INPUT SPACING === */
.lead-capture-card,
.lead-capture-form {
    gap: 1.25rem;
}
.lead-capture-form .form-group,
.lead-capture-form .input-group {
    margin-bottom: 1.25rem;
}
.lead-capture-form input,
.lead-capture-form textarea,
.lead-capture-form select {
    margin-bottom: 0.5rem;
    padding: 1rem;
    line-height: 1.5;
}

/* === Calculator section vertical rhythm === */
.calculator-container {
    row-gap: 2rem;
}
.calc-inputs {
    gap: 2rem;
}

/* === Lead capture title/sub === */
.lead-capture-title {
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.lead-capture-sub {
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* === Calculator section title spacing === */
.section-calculator .section-title {
    margin-bottom: 1.5rem;
}

/* === Mobile form fix === */
@media (max-width: 768px) {
    .input-group { margin-bottom: 1.5rem; }
    .calc-inputs { gap: 1.5rem; }
    .calc-result-box { padding: 2rem 1.5rem; }
    .result-value { font-size: 2.5rem; }
    .result-breakdown p { font-size: 1rem; }
    .section-calculator { padding: 4rem 5%; }
    .calculator-intro { margin-bottom: 2rem; font-size: 1rem; }
}

/* === FORM LAYOUT - Critical Fix === */
.lead-capture-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.lead-capture-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
    margin-top: 1.5rem;
}

/* All form children should fill their column */
.lead-capture-form > * {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* Single column items span full width */
.lead-capture-form > textarea,
.lead-capture-form > .form-message,
.lead-capture-form > .form-consent,
.lead-capture-form > button,
.lead-capture-form > .lead-submit-wrap {
    grid-column: 1 / -1;
}

/* Input fields - clean baseline */
.lead-capture-form input,
.lead-capture-form textarea,
.lead-capture-form select {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: var(--font-body);
    transition: border-color 0.3s, background 0.3s;
}

.lead-capture-form input:focus,
.lead-capture-form textarea:focus,
.lead-capture-form select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 153, 0, 0.04);
}

.lead-capture-form input::placeholder,
.lead-capture-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Labels are gone - using placeholders. If labels exist, style them */
.lead-capture-form label {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

/* Consent checkbox - inline */
.lead-capture-form .form-consent,
.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    grid-column: 1 / -1;
    font-size: 0.9rem;
    color: var(--text-gray);
}
.lead-capture-form .form-consent input[type="checkbox"],
.consent-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary-gold);
}

/* Submit button full width */
.lead-capture-form .cta-button-primary {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
}

/* Mobile: stack to single column */
@media (max-width: 768px) {
    .lead-capture-card { padding: 1.5rem; }
    .lead-capture-form { grid-template-columns: 1fr; gap: 1rem; }
}

/* Title + sub spacing */
.lead-capture-title {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    line-height: 1.4;
}
.lead-capture-sub {
    margin: 0;
    line-height: 1.7;
    color: var(--text-gray);
}

/* === LEAD CAPTURE FORM - Critical Fix === */
.lead-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.lead-form-row:has(.lead-form-full:only-child) {
    grid-template-columns: 1fr;
}

.lead-form-group {
    width: 100%;
    min-width: 0;
}

.lead-form-group input,
.lead-form-group textarea {
    width: 100%;
    display: block;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: var(--font-body);
    box-sizing: border-box;
    margin-bottom: 0;
}

.lead-form-group input::placeholder,
.lead-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.lead-form-group input:focus,
.lead-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 153, 0, 0.04);
}

.lead-form-full {
    grid-column: 1 / -1;
}

.lead-form-checkbox-row {
    display: block !important;
    margin-top: 0.5rem;
}

.lead-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.5;
}

.lead-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-gold);
    cursor: pointer;
}

#lead-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    display: block;
}

@media (max-width: 768px) {
    .lead-form-row { grid-template-columns: 1fr; }
}

/* === LEAD FORM LAYOUT FIX === */
.lead-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    margin-bottom: 0.5rem;
}

.lead-form-row:has(> .lead-form-full:only-child),
.lead-form-row:has(> .lead-form-group.lead-form-full:only-child) {
    grid-template-columns: 1fr;
}

.lead-form-group {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.lead-form-group input,
.lead-form-group textarea {
    width: 100%;
    display: block;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: var(--font-body);
    box-sizing: border-box;
}

.lead-form-group input:focus,
.lead-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 153, 0, 0.04);
}

.lead-form-group input::placeholder,
.lead-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.lead-form-full {
    grid-column: 1 / -1;
}

.lead-form-checkbox-row {
    display: block !important;
    margin: 0.75rem 0;
}

.lead-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.5;
}

.lead-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-gold);
    cursor: pointer;
}

#lead-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .lead-form-row { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* === INPUT GROUP CARD STYLING (matches calc result box) === */
.input-group {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    border: none;
}

.input-group label {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0;
    transition: border-color 0.3s, background 0.3s;
}

.input-wrapper:hover {
    border-color: rgba(255, 153, 0, 0.3);
}

.input-wrapper:focus-within {
    border-color: var(--primary-gold);
    background: rgba(255, 153, 0, 0.05);
}

.input-wrapper .unit {
    position: static;
    flex: 0 0 auto;
    padding: 0 0.75rem;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.input-wrapper input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 1rem 0.5rem 1rem 0;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.input-wrapper input:focus {
    outline: none;
}

/* Keep compact calculator fields readable: the native spinner was covering the value. */
.input-wrapper input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.input-wrapper input[type="number"]::-webkit-inner-spin-button,
.input-wrapper input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-wrapper select {
    flex: 1;
    width: 100%;
    padding: 1rem 1rem 1rem 0;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FF9900' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.input-wrapper select:focus {
    outline: none;
}

.input-wrapper select option {
    background: #1a1a1a;
    color: var(--text-white);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.calc-inputs {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-result-box {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.1);
}

/* === LEAD CAPTURE CARD (matches calc style) === */
.lead-capture-section {
    margin-top: 3rem;
    padding: 3rem;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.lead-capture-card {
    background: transparent;
    border: none;
    padding: 0;
    max-width: 100%;
}

.lead-capture-title {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    font-weight: 700;
}

.lead-capture-sub {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
}

.lead-capture-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
    width: 100%;
}

.lead-form-row {
    display: contents;
}

.lead-form-group {
    width: 100%;
}

.lead-form-group input,
.lead-form-group textarea {
    width: 100%;
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: var(--font-body);
    box-sizing: border-box;
}

.lead-form-group input:focus,
.lead-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 153, 0, 0.04);
}

.lead-form-group input::placeholder,
.lead-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.lead-form-full {
    grid-column: 1 / -1;
}

.lead-form-checkbox-row {
    grid-column: 1 / -1;
    margin: 0.5rem 0;
}

.lead-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.5;
}

.lead-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary-gold);
    cursor: pointer;
}

#lead-submit {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.25rem 2rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .calculator-container { grid-template-columns: 1fr; gap: 1.5rem; }
    .calc-inputs { padding: 1.5rem; }
    .calc-result-box { padding: 2rem 1.5rem; }
    .lead-capture-form { grid-template-columns: 1fr; }
    .lead-capture-section { padding: 1.5rem; }
}

/* ===== Mobile Hamburger Menu ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    line-height: 1;
}
@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; }
    .navbar, .tier-nav, .audit-nav { flex-wrap: wrap; padding: 0.8rem 1rem !important; position: relative; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(5,5,5,0.97); backdrop-filter: blur(20px); flex-direction: column; padding: 1rem; gap: 0.75rem; border-bottom: 2px solid var(--primary-gold); z-index: 999; width: 100%; }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.6rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .brand-name { font-size: 1rem; }
    
    /* Mobile button stacking */
    .cta-group {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    .cta-group > * {
        width: 100% !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        font-size: 0.9rem !important;
        padding: 0.9rem 1rem !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .hero-content,
    .hero-text,
    .about-story,
    .section-text {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .tier-hero {
        padding: 100px 1rem 2rem !important;
    }
    .logo-container .brand-name {
        font-size: 0.95rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 60vw;
    }
    p, h1, h2, h3, h4, h5, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .boots-on-ground,
    .quote-italic,
    .reason-item-title {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    .hero-section {
        padding: 100px 1.5rem 2rem !important;
        height: auto !important;
        min-height: 100vh;
    }
    .hero-content {
        padding: 1rem !important;
        margin: 0 auto !important;
        max-width: 100vw !important;
    }
    .hero-text h1 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }
    .hero-text p {
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }
    section .container,
    .container {
        max-width: 100vw !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin: 0 auto !important;
        overflow: visible !important;
    }
    h1, h2, h3 {
        max-width: 100% !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    p {
        max-width: 100% !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .boots-on-ground,
    .quote-italic,
    .story-paragraph,
    .quote-margin {
        margin-left: 0 !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    [style*="margin-left: 60px"],
    [style*="margin-left:60px"] {
        margin-left: 0 !important;
    }
}

/* ===== Merged from zuluworks_additions.css ===== */
.calculators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: start;
}

.calculator-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.calculator-card-sub {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.lead-capture-wrapper {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

/* ===== get-audit.html page styles ===== */
.audit-nav {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.audit-hero {
    padding: 160px 5% 60px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(5,5,5,0.9), var(--bg-dark));
}
.audit-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.audit-badge {
    display: inline-block;
    background: rgba(255,153,0,0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}
.audit-sub {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.audit-process {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}
.audit-process-step {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}
.audit-process-step .icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.audit-form-wrapper {
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}
.audit-form-box {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    padding: 3rem;
}
.audit-form-box .form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}
.form-section-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin: 2rem 0 1rem;
    font-weight: 700;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
}
.form-note {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}
.checkbox-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.checkbox-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}
.checkbox-chip:hover {
    border-color: var(--primary-gold);
    background: rgba(255,153,0,0.05);
}
.checkbox-chip input[type="checkbox"] {
    accent-color: var(--primary-gold);
    width: 16px;
    height: 16px;
}
.checkbox-copy {
    font-size: 0.85rem;
}
.consent-group {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}
.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.consent-row input[type="checkbox"] {
    accent-color: var(--primary-gold);
    margin-top: 3px;
}
.consent-copy {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
}
.audit-benefits {
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}
.audit-btn {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .audit-hero { padding: 120px 1rem 40px; }
    .audit-process { gap: 1.5rem; }
    .audit-form-box { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-stack { grid-template-columns: 1fr; }
}

.lead-capture-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

.lead-capture-sub {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.submission-status.is-visible {
    display: block;
    background: rgba(0, 200, 0, 0.08);
    border: 1px solid rgba(0, 200, 0, 0.2);
    color: #8f8;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.submission-status.is-error {
    display: block;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #f88;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.submission-status.is-success {
    display: block;
    background: rgba(0, 200, 0, 0.08);
    border: 1px solid rgba(0, 200, 0, 0.3);
    color: #8f8;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.submission-status .success-check {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(5,5,5,0.3);
    border-top-color: #050505;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .calculators-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== Programmatic SEO landing pages ===== */
.seo-hero { padding: 140px 5% 3rem; background: var(--bg-dark); border-bottom: 1px solid var(--glass-border); }
.seo-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -1px; line-height: 1.15; }
.seo-breadcrumb { color: var(--text-gray); font-size: 0.85rem; margin-bottom: 1.2rem; }
.seo-breadcrumb a { color: var(--primary-gold); text-decoration: none; }
.seo-sub { color: var(--text-gray); font-size: 1.15rem; margin-top: 1rem; max-width: 640px; line-height: 1.6; }
.seo-body { padding: 4rem 5%; background: var(--bg-dark); }
.seo-body .container { max-width: 820px; }
.seo-body p { color: var(--text-gray); line-height: 1.8; margin-bottom: 1.2rem; font-size: 1.05rem; }
.seo-body strong { color: var(--text-white); }
.seo-stat { font-size: 1.1rem; }
.seo-lead { font-size: 1.15rem; }
.seo-features { list-style: none; margin: 1.5rem 0 2.5rem; }
.seo-features li { padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text-gray); line-height: 1.7; }
.seo-features li strong { color: var(--text-white); }
.seo-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 1.5rem 0 1rem; }
.seo-price-card { background: var(--bg-panel); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.5rem; }
.seo-price-card h3 { font-family: var(--font-heading); margin-bottom: 0.5rem; }
.seo-price { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--primary-gold); }
.seo-price span { font-size: 0.9rem; color: var(--text-gray); font-weight: 600; }
.seo-price-featured { border-color: var(--primary-gold); box-shadow: 0 0 30px rgba(255,153,0,0.12); }
.seo-price-card p { font-size: 0.85rem; line-height: 1.6; }
.seo-note { font-size: 0.85rem; color: var(--text-gray); }
.seo-related { padding: 4rem 5%; background: #0a0a0a; border-top: 1px solid var(--glass-border); }
.seo-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.6rem; margin-top: 1.5rem; }
.seo-related-grid a { display: block; padding: 0.8rem 1rem; background: var(--bg-panel); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; color: var(--text-gray); text-decoration: none; font-size: 0.9rem; transition: all 0.2s; }
.seo-related-grid a:hover { border-color: var(--primary-gold); color: var(--text-white); }
.seo-cta { padding: 5rem 5%; text-align: center; background: var(--bg-dark); }
.seo-cta h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.seo-cta p { color: var(--text-gray); max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
@media (max-width: 768px) { .seo-pricing-grid { grid-template-columns: 1fr; } }
