:root {
    --honey-gold: #F4B400;
    --midnight-navy: #0F1A33;
    --bee-black: #1C1C1C;
    --amber: #FF8F00;
    --slate-gray: #6E7783;
    --soft-white: #F9FAFB;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--soft-white);
    color: var(--bee-black);
    overflow-x: hidden;
}

/* Highlight underline marker for headings */
.underline-highlight {
    background-image: linear-gradient(transparent 70%, var(--honey-gold) 70%);
    background-repeat: no-repeat;
    background-size: 100% 1.1em;
    background-position: 0 0.15em;
    padding: 0 0.1rem;
}

/* Navbar Styles */
.navbar-custom {
    padding: 0.75rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, color 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--midnight-navy) !important;
}

.navbar-brand span {
    color: var(--honey-gold);
}

.nav-link {
    color: var(--bee-black) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--honey-gold) !important;
}

/* Adaptive navbar states */
.navbar-custom.navbar-initial {
    background: var(--midnight-navy);
    box-shadow: 0 2px 12px rgba(15, 26, 51, 0.25);
}

.navbar-custom.navbar-initial .navbar-brand,
.navbar-custom.navbar-initial .nav-link {
    color: #ffffff !important;
}

.navbar-custom.navbar-initial .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
}
.navbar-custom.navbar-initial .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-custom.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 2px 12px rgba(15, 26, 51, 0.08);
}

.navbar-custom.navbar-scrolled .navbar-brand,
.navbar-custom.navbar-scrolled .nav-link {
    color: var(--bee-black) !important;
}

/* Mobile drawer styles */
.navbar-drawer {
    background: inherit;
}

@media (max-width: 991px) {
    .navbar-drawer {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        padding: 1rem;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        box-shadow: 0 16px 40px rgba(15, 26, 51, 0.15);
    }
    .navbar-drawer .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

.btn-primary-custom {
    background-color: var(--honey-gold);
    color: var(--midnight-navy);
    border: none;
    padding: 0.625rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(244, 180, 0, 0.25);
}

.btn-primary-custom:hover {
    background-color: var(--amber);
    color: var(--midnight-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.35);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--soft-white);
    border: 2px solid var(--honey-gold);
    padding: 0.625rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--honey-gold);
    color: var(--midnight-navy);
    border-color: var(--honey-gold);
}

/* Hero Section */
.hero-section {
    background: var(--midnight-navy);
    color: white;
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(20, 35, 70, 0.8), transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

/* Version badge pill */
.version-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(88, 99, 221, 0.18);
    border: 1.5px solid rgba(88, 99, 221, 0.35);
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(15, 26, 51, 0.35);
    margin-bottom: 1rem;
}
.version-pill .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--honey-gold);
    box-shadow: 0 0 0 6px rgba(244, 180, 0, 0.08);
}


/* Comparison section helpers */
.ccp-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.ccp-icon-old {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}
.ccp-icon-new {
    background: rgba(255, 255, 255, 0.1);
    color: var(--honey-gold);
}
.btn-secondary-ghost {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 0.625rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-ghost:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.avatar-stack {
    display: inline-flex;
    align-items: center;
}
.avatar-stack .avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    margin-left: -8px;
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
}
.avatar-stack .avatar:first-child { margin-left: 0; }
.trust-text { color: rgba(255,255,255,0.85); font-weight: 600; }

.video-frame {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 24px 60px rgba(15, 26, 51, 0.45);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    padding-top: 2rem;
    transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
    position: relative;
    overflow: hidden;
}
.video-frame .browser-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 2rem;
    display: flex; align-items: center; gap: 0.5rem; padding: 0 0.75rem;
}
.video-frame .browser-bar span {
    width: 10px; height: 10px; border-radius: 50%; display: inline-block;
    background: rgba(255,255,255,0.6);
}
.video-frame .play-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    color: #ffffff; background: transparent; border: none; font-size: 2rem;
    animation: pulse 2s ease-in-out infinite; cursor: pointer;
}
.video-frame .decor {
    position: absolute; border-radius: 50%; filter: blur(20px); opacity: 0.4;
}
.video-frame .decor-1 { width: 140px; height: 140px; background: var(--honey-gold); top: -20px; right: -20px; }
.video-frame .decor-2 { width: 180px; height: 180px; background: #6B2E8F; bottom: -30px; left: -30px; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }

@keyframes float {
    0% { transform: perspective(1000px) rotateY(-3deg) rotateX(1deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-3deg) rotateX(1deg) translateY(-8px); }
    100% { transform: perspective(1000px) rotateY(-3deg) rotateX(1deg) translateY(0); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

.stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--honey-gold);
}

.stats-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Social Proof */
.social-proof {
    background-color: white;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(110, 119, 131, 0.15);
}

.brand-chip {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--soft-white);
    border: 1px solid rgba(110, 119, 131, 0.2);
    border-radius: 999px;
    margin: 0.5rem;
    font-weight: 600;
    color: var(--slate-gray);
    font-size: 0.875rem;
}

/* Section Styles */
.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--midnight-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-gray);
    margin-bottom: 3rem;
}

/* Modern Comparison Section */
.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .comparison-divider {
        display: none;
    }
}

.comparison-side {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(15, 26, 51, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.comparison-side:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(15, 26, 51, 0.12);
}

.problem-side {
    border: 2px solid #FEE2E2;
}

.solution-side {
    border: 2px solid var(--midnight-navy);
}

.comparison-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border-bottom: 2px solid #F3F4F6;
}

.problem-side .comparison-header {
    background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 100%);
}

.solution-side .comparison-header {
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #1a2645 100%);
}

.comparison-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.problem-icon {
    background: linear-gradient(135deg, #FCA5A5 0%, #EF4444 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.comparison-logo {
    margin-bottom: 1.5rem;
}

.comparison-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.problem-side .comparison-title {
    color: #DC2626;
}

.solution-side .comparison-title {
    color: white;
}

.comparison-subtitle {
    font-size: 1rem;
    margin: 0;
}

.problem-side .comparison-subtitle {
    color: #991B1B;
}

.solution-side .comparison-subtitle {
    color: var(--honey-gold);
    font-weight: 600;
}

.comparison-items {
    padding: 2rem;
}

.comparison-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.problem-item {
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
}

.problem-item:hover {
    background: #FEE2E2;
    transform: translateX(8px);
}

.solution-item {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 1px solid #BAE6FD;
}

.solution-item:hover {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    transform: translateX(-8px);
    box-shadow: 0 4px 12px rgba(15, 26, 51, 0.1);
}

.comparison-item .item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.problem-item .item-icon {
    background: linear-gradient(135deg, #FCA5A5 0%, #EF4444 100%);
    color: white;
}

.solution-item .item-icon {
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #1a2645 100%);
    color: var(--honey-gold);
}

.comparison-item:hover .item-icon {
    transform: scale(1.1) rotate(5deg);
}

.comparison-item .item-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.problem-item .item-content h5 {
    color: #DC2626;
}

.solution-item .item-content h5 {
    color: var(--midnight-navy);
}

.comparison-item .item-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--slate-gray);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
}

.vs-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #1a2645 100%);
    color: var(--honey-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(15, 26, 51, 0.25);
    border: 3px solid white;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(15, 26, 51, 0.25);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(15, 26, 51, 0.35);
    }
}

/* Legacy Problem Solution Cards (keeping for backwards compatibility) */
.problem-solution-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 24px rgba(15, 26, 51, 0.08);
    height: 100%;
}

.problem-solution-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.problem-card h3 {
    color: #dc3545;
}

.solution-card h3 {
    color: var(--honey-gold);
}

.bullet-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
}

.bullet-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.problem-card .bullet-icon {
    color: #dc3545;
}

.solution-card .bullet-icon {
    color: var(--honey-gold);
}

/* Feature Cards */
.feature-card {
    background: white;
    border: 1px solid rgba(110, 119, 131, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15, 26, 51, 0.04);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 26, 51, 0.12);
    border-color: var(--honey-gold);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--honey-gold) 0%, var(--amber) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--midnight-navy);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--slate-gray);
    line-height: 1.6;
}

/* Step Cards */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(15, 26, 51, 0.08);
    text-align: center;
    position: relative;
    height: 100%;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--honey-gold) 0%, var(--amber) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(244, 180, 0, 0.3);
}

.step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--midnight-navy);
    margin-bottom: 1rem;
}

/* Use Cases Tabs */
.nav-pills .nav-link {
    color: var(--slate-gray);
    border: 2px solid transparent;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    margin: 0.25rem;
}

.nav-pills .nav-link.active {
    background-color: var(--honey-gold);
    color: var(--midnight-navy);
}

/* Modern Use Case Tabs */
.use-case-tab {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 1rem 1.75rem;
    font-weight: 600;
    color: var(--midnight-navy);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    outline: none;
}

.use-case-tab i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.use-case-tab:hover {
    border-color: var(--midnight-navy);
    background: rgba(15, 26, 51, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 26, 51, 0.1);
}

.use-case-tab:focus-visible {
    outline: 3px solid rgba(15, 26, 51, 0.3);
    outline-offset: 2px;
}

.use-case-tab.active,
.use-case-tab[aria-selected="true"] {
    background: var(--midnight-navy);
    color: white;
    border-color: var(--midnight-navy);
    box-shadow: 0 8px 16px rgba(15, 26, 51, 0.25);
}

.use-case-tab.active i,
.use-case-tab[aria-selected="true"] i {
    transform: scale(1.1);
}

/* Modern Use Case Content */
.use-case-content-modern {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
    border: 1px solid #E5E7EB;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.use-case-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #1a2645 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 26, 51, 0.2);
}

.use-case-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--honey-gold);
}

.use-case-title {
    color: var(--midnight-navy);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.use-case-description {
    color: var(--slate-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Modern Benefit Cards */
.benefit-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    cursor: pointer;
}

.benefit-card:hover {
    border-color: var(--midnight-navy);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 26, 51, 0.15);
}

.benefit-card:focus-within {
    border-color: var(--midnight-navy);
    outline: 3px solid rgba(15, 26, 51, 0.2);
    outline-offset: 2px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #1a2645 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--honey-gold);
}

.benefit-card h5 {
    color: var(--midnight-navy);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--slate-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Legacy styles (keeping for backwards compatibility) */
.use-case-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(15, 26, 51, 0.08);
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--bee-black);
}

.benefit-item i {
    color: var(--honey-gold);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border: 2px solid rgba(110, 119, 131, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 26, 51, 0.12);
}

.pricing-card.featured {
    border-color: var(--honey-gold);
    border-width: 3px;
    box-shadow: 0 8px 32px rgba(244, 180, 0, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--honey-gold) 0%, var(--amber) 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-navy);
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--honey-gold);
    line-height: 1;
}

.pricing-period {
    color: var(--slate-gray);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--bee-black);
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--honey-gold);
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

.pricing-toggle {
    background: white;
    border-radius: 999px;
    padding: 0.5rem;
    display: inline-flex;
    box-shadow: 0 2px 8px rgba(15, 26, 51, 0.08);
    margin-bottom: 3rem;
}

.pricing-toggle button {
    background: transparent;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--slate-gray);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-toggle button.active {
    background-color: var(--honey-gold);
    color: var(--midnight-navy);
}

/* FAQ Accordion */
.accordion-item {
    background: white;
    border: 1px solid rgba(110, 119, 131, 0.15);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--midnight-navy);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.5rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--soft-white);
    color: var(--honey-gold);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F4B400'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--slate-gray);
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #0f1a33 100%);
    padding: 3rem 0; /* outer spacing around the golden box */
    position: relative;
    overflow: hidden;
}

/* Inner golden box */
.cta-box {
    background: linear-gradient(135deg, var(--honey-gold) 0%, var(--amber) 100%);
    border-radius: 24px;
    padding: 50px 100px; /* 50px top/bottom, 100px left/right */
    margin: 50px auto; /* 50px margin around the box */
    box-shadow: 0 24px 60px rgba(15, 26, 51, 0.45);
    position: relative;
    z-index: 1;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.cta-banner h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
}

.btn-cta-banner {
    background-color: var(--midnight-navy);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(15, 26, 51, 0.35);
}

.btn-cta-banner:hover {
    background-color: var(--bee-black);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 26, 51, 0.5);
}

/* Add-ons & Integrations Section */
.addon-integration-wrapper {
    height: 100%;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--slate-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.addon-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.addon-description {
    font-size: 1.1rem;
    color: var(--slate-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

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

.addon-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.addon-card:hover {
    border-color: var(--midnight-navy);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 26, 51, 0.15);
}

.addon-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #1a2645 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.addon-card:hover .addon-icon {
    transform: scale(1.1) rotate(5deg);
}

.addon-icon i {
    font-size: 1.75rem;
    color: var(--honey-gold);
}

.addon-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--midnight-navy);
    margin-bottom: 0.5rem;
}

.addon-card p {
    font-size: 0.9rem;
    color: var(--slate-gray);
    margin: 0;
    line-height: 1.5;
}

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

@media (max-width: 767px) {
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.integration-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 1;
}

.integration-card:hover {
    border-color: var(--midnight-navy);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(15, 26, 51, 0.12);
}

.integration-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #1a2645 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.integration-card:hover .integration-icon {
    transform: rotate(360deg);
}

.integration-icon i {
    font-size: 1.5rem;
    color: var(--honey-gold);
}

.integration-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--midnight-navy);
}

.addon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--midnight-navy);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: rgba(15, 26, 51, 0.05);
}

.addon-link:hover {
    background: var(--midnight-navy);
    color: white;
    transform: translateX(4px);
}

.addon-link i {
    transition: transform 0.3s ease;
}

.addon-link:hover i {
    transform: translateX(4px);
}

/* Footer */
.footer {
    background-color: var(--midnight-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--honey-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link {
        margin: 0.5rem 0;
    }
}
