/* =========================================================================
   Base & Resets
   ========================================================================= */

:root {
    /* Brand Colors */
    --clr-navy: #1B2E4B;
    --clr-mint: #4ECDC4;
    --clr-white: #FFFFFF;

    /* Layout */
    --max-width: 1200px;

    /* Grays & Utilities */
    --clr-gray-50: #f8fafc;
    --clr-gray-100: #f1f5f9;
    --clr-gray-200: #e2e8f0;
    --clr-gray-400: #94a3b8;
    --clr-gray-600: #475569;
    --clr-gray-800: #1e293b;
    --clr-gray-900: #0f172a;

    /* Text Colors */
    --text-main: var(--clr-navy);
    --text-muted: var(--clr-gray-600);

    /* Visual Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(78, 205, 196, 0.4);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--clr-navy);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--clr-gray-50);
}

/* =========================================================================
   Typography & Buttons
   ========================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    user-select: none;
}

.btn-primary {
    background-color: var(--clr-mint);
    color: var(--clr-navy);
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(78, 205, 196, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.5);
    background-color: #3ebcb3;
    /* slightly darker mint */
}

.btn-secondary {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    box-shadow: 0 4px 14px 0 rgba(27, 46, 75, 0.39);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 46, 75, 0.5);
    background-color: #121f33;
    /* darker navy */
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-navy);
    border: 1px solid var(--clr-gray-200);
}

.btn-outline:hover {
    border-color: var(--clr-navy);
    background-color: var(--clr-gray-50);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* =========================================================================
   Navigation
   ========================================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--clr-gray-200);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-navy);
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--clr-mint), #20B2AA);
    border-radius: 8px;
}

.logo-icon.light {
    background: var(--clr-mint);
}

.logo-text {
    font-size: 1.8rem;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #1B2E4B;
    margin-left: 0.25rem;
}

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

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--clr-mint);
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* =========================================================================
   Hero Section
   ========================================================================= */

.hero {
    position: relative;
    padding: 12rem 0 8rem;
    overflow: hidden;
    background-color: #121816;
    /* Dark greenish-black based on image */
}

#floating-lines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    mix-blend-mode: screen;
}

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.badge-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background-color: rgba(78, 205, 196, 0.1);
    color: var(--clr-mint);
    border: 1px solid rgba(78, 205, 196, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.badge-dark svg {
    margin-right: 0.25rem;
}

.headline-dark {
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

[dir="rtl"] .headline-dark {
    line-height: 1.25;
}

.headline-dark .highlight {
    color: var(--clr-mint);
    background: none;
    -webkit-text-fill-color: initial;
}

.subheadline-dark {
    font-size: 1.25rem;
    color: #d0d8e4;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline-dark:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .headline-dark {
        font-size: 3.5rem;
    }

    .hero-container {
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }
}

/* =========================================================================
   How It Works
   ========================================================================= */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    overflow: visible !important;
    padding: 8px 8px;
}

.step-card {
    background: var(--clr-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-sizing: border-box;
    border: 2px solid #e2e8f0;
    margin: 0;
    overflow: visible;
    box-shadow: var(--shadow-sm);
    transition: var(--transition), box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(78, 205, 196, 0.1);
    color: var(--clr-mint);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--clr-navy);
    min-height: 3.5rem;
    display: flex;
    align-items: flex-start;
}

.step-card p {
    color: var(--text-muted);
}

/* MagicBento card effects */
.step-card {
    --glow-x: 50%;
    --glow-y: 50%;
    --glow-intensity: 0;
    --glow-radius: 300px;
    --glow-color: 78, 205, 196;
    position: relative;
    overflow: visible;
    will-change: transform;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--glow-x) var(--glow-y),
            rgba(var(--glow-color), calc(0.12 * var(--glow-intensity))) 0%,
            rgba(var(--glow-color), calc(0.06 * var(--glow-intensity))) 30%,
            transparent 60%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.step-card.magic-glow-active {
    border-color: rgba(var(--glow-color), calc(0.4 * var(--glow-intensity)));
    box-shadow:
        0 0 20px rgba(var(--glow-color), calc(0.1 * var(--glow-intensity))),
        var(--shadow-sm);
}

.step-card .step-icon,
.step-card h3,
.step-card p {
    position: relative;
    z-index: 1;
}

.step-card .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
}

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

.extra-features {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

.extra-features.expanded {
    max-height: 2000px;
    opacity: 1;
    overflow: visible;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.show-more-btn svg {
    transition: transform 0.3s ease;
}

.show-more-btn.active svg {
    transform: rotate(180deg);
}

/* =========================================================================
   Meet Your AI Receptionists
   ========================================================================= */

.receptionists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr; /* Force all rows to have equal height based on tallest item */
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.receptionist-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    text-align: center;
    padding: 3rem 2.5rem;
    border-width: 1.5px;
    box-sizing: border-box;
    min-height: auto;
}

.receptionist-card p {
    flex: 1;
}

.receptionist-card .audio-player {
    margin-top: auto;
}

.receptionist-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.receptionist-info h3 {
    margin-bottom: 0;
    min-height: auto;
}

.sound-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 32px;
    width: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sound-wave.playing {
    opacity: 1;
}

.sound-wave .bar {
    width: 4px;
    height: 4px;
    background-color: var(--clr-mint);
    border-radius: 2px;
    transition: height 0.2s ease;
}

.sound-wave.playing .bar {
    animation: soundWave 1.2s ease-in-out infinite;
}

.sound-wave.playing .bar:nth-child(1) {
    animation-delay: 0.0s;
}

.sound-wave.playing .bar:nth-child(2) {
    animation-delay: 0.2s;
}

.sound-wave.playing .bar:nth-child(3) {
    animation-delay: 0.4s;
}

.sound-wave.playing .bar:nth-child(4) {
    animation-delay: 0.2s;
}

.sound-wave.playing .bar:nth-child(5) {
    animation-delay: 0.0s;
}

@keyframes soundWave {

    0%,
    100% {
        height: 4px;
    }

    50% {
        height: 28px;
    }
}

.audio-player {
    margin-top: 2rem;
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--clr-mint);
    color: var(--clr-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px 0 rgba(78, 205, 196, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px 0 rgba(78, 205, 196, 0.6);
}

.play-btn svg {
    width: 28px;
    height: 28px;
}

.play-btn .icon-play {
    margin-left: 4px;
    /* Optical adjustment for play triangle */
}

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

/* =========================================================================
   Pricing 
   ========================================================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: var(--clr-white);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--clr-gray-200);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.pricing-card.popular {
    border: 2px solid var(--clr-mint);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-mint);
    color: var(--clr-navy);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card.popular .plan-name {
    color: var(--clr-mint);
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 48px;
}

.features {
    margin-bottom: 2.5rem;
}

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

.features svg {
    width: 20px;
    height: 20px;
    stroke: var(--clr-gray-400);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

/* =========================================================================
   Social Proof
   ========================================================================= */

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

.testimonial-card {
    background: var(--clr-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.stars {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--clr-navy);
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--clr-navy);
    font-size: 1.25rem;
}

.author-info strong {
    display: block;
    color: var(--clr-navy);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

/* =========================================================================
   FAQ
   ========================================================================= */

.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* =========================================================================
   Dot Grid Background (Available Voices)
   ========================================================================= */

#dot-grid-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.dot-grid__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.faq-item {
    border: 1px solid var(--clr-gray-200);
    border-radius: 12px;
    overflow: hidden;
    background: var(--clr-white);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(78, 205, 196, 0.4);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--clr-mint);
    transition: transform 0.3s ease;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================================================
   Footer
   ========================================================================= */

.footer {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    padding: 5rem 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    color: var(--clr-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--clr-gray-400);
    margin-bottom: 2rem;
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    color: var(--clr-white);
    opacity: 0.7;
}

.socials a:hover {
    opacity: 1;
    color: var(--clr-mint);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

.link-group a {
    display: block;
    color: var(--clr-gray-400);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--clr-mint);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: var(--clr-gray-400);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

/* =========================================================================
   ROI Calculator
   ========================================================================= */

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.calc-inputs {
    padding: 2.5rem;
    background: var(--clr-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-gray-200);
}

.slider-group {
    margin-bottom: 2rem;
}

.slider-group:last-child {
    margin-bottom: 0;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.75rem;
}

.slider-header label {
    font-weight: 700;
    color: var(--clr-navy);
    font-size: 1.05rem;
}

.slider-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-mint);
    background: rgba(78, 205, 196, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    min-width: 80px;
    text-align: right;
}

/* Range Slider Styling */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    margin: 10px 0;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: var(--clr-gray-200);
    border-radius: 4px;
    transition: background 0.2s;
}

input[type=range]::-webkit-slider-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--clr-mint);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--clr-white);
    transition: transform 0.1s, box-shadow 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(78, 205, 196, 0.3);
}

input[type=range]:active::-webkit-slider-thumb {
    transform: scale(0.95);
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: var(--clr-gray-200);
    border-radius: 4px;
}

input[type=range]::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--clr-mint);
    cursor: pointer;
    border: 3px solid var(--clr-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.slider-hint {
    font-size: 0.85rem;
    color: var(--clr-gray-600);
    margin-top: 0.75rem;
}

/* Results Area */
.loss-box {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 20px 20px 0 0;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.loss-box::before {
    content: '!';
    position: absolute;
    font-size: 18rem;
    font-weight: 900;
    color: rgba(239, 68, 68, 0.04);
    top: -50px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
}

.loss-title {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.loss-amount {
    color: #ef4444;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.loss-yearly {
    color: #991b1b;
    font-weight: 700;
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}

.calc-cta {
    background: linear-gradient(135deg, var(--clr-navy), #121f33);
    color: var(--clr-white);
    padding: 2.5rem;
    border-radius: 0 0 20px 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.calc-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.calc-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--clr-white);
    position: relative;
    z-index: 1;
}

.calc-cta h3 span {
    color: var(--clr-mint);
    border-bottom: 2px solid var(--clr-mint);
}

.calc-cta p {
    color: var(--clr-gray-200);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.cta-list {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-list li {
    margin-bottom: 0.75rem;
    color: #f8fafc;
    font-weight: 600;
}

.cta-offer {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-mint);
    margin-bottom: 2rem;
    background: rgba(78, 205, 196, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px dashed rgba(78, 205, 196, 0.3);
    position: relative;
    z-index: 1;
}

/* =========================================================================
   Cost of Silence Bento Section
   ========================================================================= */

.container-narrow {
    max-width: 1000px;
}

.cost-section {
    background-color: #121816;
    color: var(--clr-white);
    padding: 6rem 0;
}

.cost-header h2 {
    color: var(--clr-white);
    font-size: 2.5rem;
}

.cost-header p {
    color: #a1a1aa;
    font-size: 1.15rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-auto-rows: minmax(auto, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bento-card {
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bento-card-dark {
    background-color: #1f2524;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-card-mint {
    background-color: var(--clr-mint);
    color: var(--clr-navy);
}

.bento-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    opacity: 0.05;
    pointer-events: none;
    color: #fff;
}

.bento-icon {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--clr-navy);
}

.bento-huge-text {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--clr-white);
    z-index: 1;
    position: relative;
}

.bento-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #94a3b8;
    z-index: 1;
    position: relative;
}

.bento-row {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.bento-content {
    flex: 1;
}

.bento-stats {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

.stat-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    width: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.stat-box-mint {
    background: rgba(78, 205, 196, 0.05);
    border-color: rgba(78, 205, 196, 0.2);
}

.stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-box-mint .stat-val {
    color: var(--clr-mint);
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.stat-box-mint .stat-label {
    color: rgba(78, 205, 196, 0.8);
}

.cost-cta {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cost-cta h3 {
    font-size: 1.75rem;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
}

.cost-cta p {
    color: #a1a1aa;
    font-size: 1.15rem;
}

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

    .bento-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .bento-stats {
        width: 100%;
    }

    .stat-box {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .bento-stats {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
    }
}

/* Cost Accordion */
.cost-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.cost-accordion-item {
    background: #1f2524;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.cost-accordion-item:hover {
    border-color: rgba(78, 205, 196, 0.3);
}

.cost-accordion-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-white);
    text-align: left;
    font-family: inherit;
}

.cost-accordion-btn .icon {
    width: 24px;
    height: 24px;
    color: var(--clr-mint);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.cost-accordion-btn.active .plus {
    display: none;
}

.cost-accordion-btn.active .minus {
    display: block !important;
}

.cost-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.cost-accordion-inner {
    padding: 0 2rem 1.5rem 2rem;
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cost-accordion-inner p {
    margin: 0;
}

/* =====================================================
   1) INDIVIDUAL CARDS
===================================================== */

.coverflow-track .step-card {
    width: 300px !important;
    height: 380px !important;
    min-height: unset !important;
    max-height: unset !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    background: var(--clr-white);
    padding: 2rem 1.75rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
    transition: border-color 0.3s ease;
}

.coverflow-track .step-card:hover {
    border-color: rgba(78, 205, 196, 0.45);
}

/* =====================================================
   2) CONTAINER & TRACK
===================================================== */

.coverflow-wrapper {
    width: 100%;
    margin: 3rem 0;
    overflow: visible;
    /* Perspective needs visible overflow for depth to pop */
    padding: 2rem 0;
}

.coverflow-container {
    width: 100%;
    height: 460px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
    user-select: none;
    overflow: hidden;
    /* Contain cards within the wrapper area */
    border-radius: 20px;
}

.coverflow-container:active {
    cursor: grabbing;
}

.coverflow-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* =====================================================
   3) CARD CONTENT STYLING
===================================================== */

.coverflow-track .step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--clr-navy);
    line-height: 1.3;
}

.coverflow-track .step-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.coverflow-track .step-card .step-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(78, 205, 196, 0.1);
    color: var(--clr-mint);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

/* =====================================================
   4) MOBILE RESPONSIVE
===================================================== */

@media (max-width: 768px) {
    .coverflow-container {
        height: 420px;
    }

    .coverflow-track .step-card {
        width: 260px !important;
        height: 340px !important;
        padding: 1.75rem 1.5rem;
    }
}

/* =========================================================================
   Animations Utilities
   ========================================================================= */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Blur + Fade animation (FadeContent style) */
.fade-blur-in {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(12px);
    transition: opacity 1s ease-out, filter 1s ease-out, transform 1s ease-out;
    will-change: opacity, filter, transform;
}

.fade-blur-in.visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* =========================================================================
   Executive Pricing Single Package — VIP Dark Redesign
   ========================================================================= */

.pricing {
    background: #f8fafc;
    color: #334155;
}

.pricing .section-header h2 {
    color: #0f172a;
    font-size: 2.75rem;
}

.pricing .section-header p {
    color: #64748b;
}

.pricing-single-wrapper {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(78, 205, 196, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* ── Hero Banner ── */
.pricing-hero {
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    padding: 4rem 3rem;
    text-align: center;
    color: #0f172a;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
}

.pricing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.15);
    color: #b45309;
    padding: 0.4rem 1.25rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.pricing-badge::before {
    content: '◆';
    font-size: 0.55rem;
}

.pricing-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.pricing-hero-subtitle {
    font-size: 1.05rem;
    color: #475569;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Body ── */
.pricing-content-stacked {
    background: #ffffff;
    padding: 0;
}

.pricing-section {
    padding: 3.5rem 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.centered-title {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--clr-mint);
    margin-bottom: 2.5rem;
}

.bonus-title {
    color: #b45309 !important;
}

/* ── Features: single column vertical rows ── */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(78, 205, 196, 0.08);
    padding-left: 1.5rem;
    transform: none;
    box-shadow: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-mint);
    margin-top: 0.1rem;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 3;
    fill: none;
}

.feature-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.feature-text strong {
    display: block;
    color: #0f172a;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.feature-text span {
    color: #64748b;
}

/* ── Language Switcher Scroll Adaptation ── */
.lang-switch .lang-link,
.lang-switch .lang-sep {
    color: white;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .lang-switch .lang-link,
.navbar.scrolled .lang-switch .lang-sep {
    color: #1e293b;
}

/* ── Mobile Navigation ── */
.pricing-divider {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 0;
}

/* ── Bonuses: vertical stack ── */
.bonuses-section {
    background: #fdfdfd;
}

.bonuses-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus-box {
    background: rgba(78, 205, 196, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.3);
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
    transition: border-color 0.25s ease, transform 0.25s ease;
    backdrop-filter: none;
    box-shadow: none;
}

.bonus-box:hover {
    border-color: rgba(78, 205, 196, 0.7);
    transform: translateX(5px);
    box-shadow: none;
}

.bonus-box h5 {
    color: #0d9488;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.15rem;
    line-height: 1.4;
}

.bonus-value {
    display: inline-block;
    background: rgba(78, 205, 196, 0.15);
    color: #0f766e;
    padding: 0.25rem 0.85rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    width: fit-content;
    border: none;
}

.bonus-box p {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ── Final Block ── */
.pricing-final-block {
    padding: 3.5rem 3rem;
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Value Summary */
.value-summary-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 2rem 2.5rem;
    max-width: none;
    margin: 0;
}

.value-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: right !important;
}

.value-list {
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}

.value-list li {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #475569;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    gap: 1.5rem;
}

.value-list li:last-child {
    border-bottom: none;
}

.value-list li span:first-child {
    text-align: right;
}

.value-list li span:last-child {
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
}

.total-value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    text-align: right !important;
    margin-top: 1rem;
}

.strike-through {
    text-decoration: line-through;
    color: #ef4444;
    font-size: 1.15rem;
    opacity: 0.65;
}

/* Investment Box */
.investment-box {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 2px solid rgba(78, 205, 196, 0.5);
    border-radius: 20px;
    padding: 3rem 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: none;
    margin: 0;
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.12);
    color: #0f172a;
}

.investment-box::before {
    display: none;
}

.investment-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-mint), transparent);
}

.investment-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-mint);
    margin-bottom: 0.75rem;
}

.investment-price {
    font-size: 5.5rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
    margin-top: 0;
}

.investment-price span {
    font-size: 1.4rem;
    color: #4b5563;
    font-weight: 500;
    letter-spacing: 0;
}

.investment-setup {
    font-size: 0.9rem;
    color: #374151;
    font-style: italic;
    margin-top: 0.5rem;
}

/* CTA */
.cta-container {
    text-align: center;
    max-width: none;
    margin: 0;
}

.cta-primary {
    background: linear-gradient(90deg, #ffd700, #f59e0b);
    color: #07090f;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    display: block;
    width: 100%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.cta-primary:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

.pulse-cta {
    animation: pulseGold 2.5s infinite;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Guarantee */
.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(78, 205, 196, 0.03);
    border: 1px solid rgba(78, 205, 196, 0.15);
    padding: 2rem 2.5rem;
    border-radius: 18px;
    max-width: none;
    margin: 0;
    box-shadow: none;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(78, 205, 196, 0.08);
    color: var(--clr-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-content h4 {
    color: var(--clr-mint);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0;
    line-height: 1.7;
}

.guarantee-content strong {
    color: #94a3b8;
}

/* Capacity note */
.capacity-note {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    text-align: center;
    max-width: none;
    margin: 0;
}

.capacity-note p {
    font-size: 0.9rem;
    color: #f87171;
    margin-bottom: 0;
    line-height: 1.6;
}

.capacity-note strong {
    color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon {
        margin: 0 auto;
    }

    .pricing-hero {
        padding: 3rem 1.75rem;
    }

    .pricing-hero-title {
        font-size: 1.85rem;
    }

    .pricing-section,
    .pricing-final-block {
        padding: 2.5rem 1.5rem;
    }

    .investment-price {
        font-size: 3.75rem;
    }

    .value-summary-box {
        padding: 1.5rem;
    }
}

/* Misc helpers */
.text-center {
    text-align: center;
}

.hero-gradient {
    background: linear-gradient(145deg, #0a0f24 0%, #0d1f3c 55%, #0a1f2e 100%);
}

.glass-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-2px);
}

/* ── Compatible With Section (original — kept for reference) ── */
.compatible-section {
    padding: 1.5rem 0 2.5rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.compatible-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--clr-gray-400);
    margin-bottom: 1.75rem;
}

.compatible-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.compatible-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0.65;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.compatible-logo-item:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.18);
    border-color: rgba(78, 205, 196, 0.3);
}

.compatible-logo-item img {
    height: 34px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
}

@media (max-width: 600px) {
    .compatible-logos { gap: 1.25rem; }
    .compatible-logo-item { padding: 0.5rem 0.9rem; }
    .compatible-logo-item img { height: 26px; max-width: 85px; }
}

/* ── Shared Dot Grid Area for Compatible + Receptionists ── */
.shared-dot-grid-area {
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 50% 20%, rgba(78, 205, 196, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f1f5f9 100%);
    border-top: 1px solid rgba(78, 205, 196, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* ── Compatible With Section V2 — Standalone Premium Section ── */
.compatible-section-v2 {
    padding: 5.5rem 0 4rem;
    position: relative;
    background: transparent;
    z-index: 1;
}

/* Subtle top glow accent line (Moved to shared area or removed to keep it cleaner) */

/* Heading: "Compatible with" */
.compatible-label-v2 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #4b5563;
    margin-bottom: 3.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* Decorative horizontal lines beside the label */
.compatible-label-v2::before,
.compatible-label-v2::after {
    content: '';
    display: block;
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, #94a3b8);
}

.compatible-label-v2::after {
    background: linear-gradient(90deg, #94a3b8, transparent);
}

/* Logo grid */
.compatible-logos-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

/* Individual logo boxes */
.compatible-logo-item-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, filter 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
    width: 210px;
    height: 90px;
    box-sizing: border-box;
    filter: grayscale(0%);
    z-index: 2;
    overflow: hidden;
}

.compatible-logo-item-v2:hover {
    transform: translateY(-5px);
    filter: grayscale(0%);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(78, 205, 196, 0.15);
    border-color: rgba(78, 205, 196, 0.4);
}

.compatible-logo-item-v2 img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 992px) {
    .compatible-logos-v2 { gap: 1.5rem; }
    .compatible-logo-item-v2 { width: 175px; height: 70px; }
}

@media (max-width: 768px) {
    .compatible-section-v2 { padding: 3.5rem 0 4rem; }
    .compatible-logo-item-v2 { width: 155px; height: 65px; }
    .compatible-label-v2 { font-size: 0.95rem; }
    .compatible-label-v2::before,
    .compatible-label-v2::after { width: 30px; }
}

@media (max-width: 480px) {
    .compatible-logos-v2 { gap: 0.75rem; }
    .compatible-logo-item-v2 { width: 140px; height: 58px; }
    .compatible-label-v2 { font-size: 0.85rem; }
}

.btn-cta {
    font-size: 1.25rem;
    padding: 1.5rem 2.5rem;
    border-radius: 99px;
    width: 100%;
}