: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);
    backdrop-filter: blur(20px);
    -webkit-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;
}

.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: border-color 0.3s;
}

.cta-button-secondary:hover {
    border-color: var(--text-white);
}

/* 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);
    backdrop-filter: blur(10px);
    -webkit-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;
    }
}

/* 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;
    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: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .unit {
    position: absolute;
    left: 1rem;
    color: var(--primary-gold);
    font-weight: 800;
}

.input-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    padding-left: 2.5rem;
    color: white;
    font-size: 1.2rem;
    font-family: inherit;
    transition: all 0.3s;
}

.input-group:last-child .input-wrapper input {
    padding-left: 1rem;
    padding-right: 2.5rem;
}

.input-group:last-child .unit {
    left: auto;
    right: 1rem;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 153, 0, 0.05);
}

.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;
}

@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;
    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;
    /* Aligns the value box across cards */
}

.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.5;
}

.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;
    }
}

/* ============================
   VAPI CALL MODAL STYLES
   ============================ */

.vapi-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vapi-modal.active {
    opacity: 1;
    visibility: visible;
}

.vapi-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.vapi-modal-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    max-width: 400px;
    text-align: center;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vapi-modal.active .vapi-modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Agent Avatar Container */
.agent-avatar-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
}

.agent-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--primary-gold);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.3s ease;
    filter: grayscale(30%);
}

.agent-avatar.speaking {
    filter: grayscale(0%);
    box-shadow:
        0 0 30px rgba(255, 153, 0, 0.6),
        0 0 60px rgba(255, 153, 0, 0.4),
        0 0 90px rgba(255, 153, 0, 0.2);
    animation: avatar-pulse 1.5s ease-in-out infinite;
}

@keyframes avatar-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.02);
    }
}

/* Audio Rings (Volume Visualizer) */
.audio-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    --volume: 0;
}

.audio-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.1s ease;
}

.audio-ring.ring-1 {
    width: calc(190px + (var(--volume) * 30px));
    height: calc(190px + (var(--volume) * 30px));
    opacity: calc(0.1 + var(--volume) * 0.4);
}

.audio-ring.ring-2 {
    width: calc(210px + (var(--volume) * 50px));
    height: calc(210px + (var(--volume) * 50px));
    opacity: calc(0.05 + var(--volume) * 0.3);
    border-color: rgba(255, 153, 0, 0.6);
}

.audio-ring.ring-3 {
    width: calc(230px + (var(--volume) * 70px));
    height: calc(230px + (var(--volume) * 70px));
    opacity: calc(0.02 + var(--volume) * 0.2);
    border-color: rgba(255, 153, 0, 0.3);
}

/* Call Status */
.call-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666;
    animation: status-blink 1s ease-in-out infinite;
}

.call-status.live .status-dot {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

@keyframes status-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.status-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-gray);
}

.call-status.live .status-text {
    color: #00ff88;
}

/* Agent Name & Subtitle */
.agent-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    letter-spacing: 3px;
}

.agent-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Live Transcript Display */
.transcript-display {
    min-height: 40px;
    max-width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.4;
    text-align: center;
    transition: all 0.3s ease;
}

.transcript-display:not(:empty) {
    background: rgba(255, 153, 0, 0.05);
    border-color: rgba(255, 153, 0, 0.2);
    color: var(--text-white);
}

/* End Call Button */
.end-call-button {
    background: transparent;
    border: 2px solid #ff4444;
    color: #ff4444;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.end-call-button:hover {
    background: #ff4444;
    color: white;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
}

.end-call-button .icon {
    font-size: 1.1rem;
}

/* Modal Responsive */
@media (max-width: 480px) {
    .vapi-modal-content {
        padding: 2rem;
    }

    .agent-avatar-container {
        width: 160px;
        height: 160px;
    }

    .agent-avatar {
        width: 140px;
        height: 140px;
    }

    .audio-ring.ring-1 {
        width: calc(150px + (var(--volume) * 20px));
        height: calc(150px + (var(--volume) * 20px));
    }

    .audio-ring.ring-2 {
        width: calc(170px + (var(--volume) * 35px));
        height: calc(170px + (var(--volume) * 35px));
    }

    .audio-ring.ring-3 {
        width: calc(190px + (var(--volume) * 50px));
        height: calc(190px + (var(--volume) * 50px));
    }

    .agent-name {
        font-size: 1.5rem;
    }
}