/* ===================================================
   Calling Agent - AgentLabs Style Redesign
   Modern Dark SaaS with Teal Accents
   Clean, Professional, Premium Feel
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --fx-bg: #0B1120;
    --fx-bg2: #0F172A;
    --fx-green: #2DD4BF;
    --fx-green-dim: rgba(45, 212, 191, 0.06);
    --fx-green-glow: rgba(45, 212, 191, 0.35);
    --fx-cyan: #22D3EE;
    --fx-purple: #8B5CF6;
    --fx-magenta: #A855F7;
    --fx-orange: #F59E0B;
    --fx-glass: rgba(15, 23, 42, 0.75);
    --fx-glass-border: rgba(45, 212, 191, 0.1);
    --fx-text: #E2E8F0;
    --fx-text-dim: #94A3B8;
    --fx-text-muted: #64748B;
    --fx-radius: 16px;
    --fx-font-mono: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    --fx-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fx-card-bg: rgba(15, 23, 42, 0.6);
    --fx-card-border: rgba(148, 163, 184, 0.08);
}

/* ===== DARK BODY ===== */
.calling-agent-page {
    background: var(--fx-bg) !important;
    color: var(--fx-text);
    position: relative;
    font-family: var(--fx-font-sans);
}

/* Scanline disabled for clean SaaS look */
.calling-agent-page::before {
    display: none;
}

/* ===== GLASSMORPHIC HEADER ===== */
.header-arrow-glass {
    background: rgba(11, 17, 32, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 212, 191, 0.06);
    transition: all 0.4s ease;
}

.header-arrow-glass.is-sticky {
    background: rgba(11, 17, 32, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* ===== PARTICLE CANVAS ===== */
#fx-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== ANIMATED ORB BACKGROUNDS ===== */
.fx-orb-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.18;
    animation: orbDrift 16s ease-in-out infinite alternate;
    pointer-events: none;
}

.fx-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--fx-green), transparent 65%);
    top: -250px;
    left: -200px;
    animation-duration: 18s;
}

.fx-orb-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--fx-cyan), transparent 65%);
    top: 50%;
    right: -200px;
    animation-duration: 22s;
    animation-delay: -5s;
}

.fx-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--fx-purple), transparent 65%);
    bottom: -150px;
    left: 25%;
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes orbDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(40px, -50px) scale(1.08);
    }

    50% {
        transform: translate(-30px, 40px) scale(0.92);
    }

    75% {
        transform: translate(20px, -30px) scale(1.05);
    }

    100% {
        transform: translate(-15px, 25px) scale(0.97);
    }
}

/* ===== FUTURISTIC GRID BG ===== */
.fx-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 151, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 151, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* ===== HOLOGRAPHIC SHIMMER EFFECT ===== */
.fx-holo-border {
    position: relative;
}

.fx-holo-border::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            transparent 20%,
            rgba(0, 255, 151, 0.3) 40%,
            rgba(0, 229, 255, 0.3) 50%,
            rgba(178, 75, 243, 0.3) 60%,
            transparent 80%);
    background-size: 300% 300%;
    animation: holoShimmer 4s linear infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
}

@keyframes holoShimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* ===== ACCENT TEXT ===== */
.fx-neon-text {
    color: var(--fx-green);
}

/* ===== HERO SECTION ===== */
.fx-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 180px 0 120px;
    background: transparent;
}

.fx-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.fx-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(45, 212, 191, 0.06);
    border: 1px solid rgba(45, 212, 191, 0.15);
    border-radius: 100px;
    color: var(--fx-green);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 36px;
    font-family: var(--fx-font-sans);
    position: relative;
    overflow: hidden;
}

.fx-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--fx-green);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(45, 212, 191, 0.5);
    animation: pulseDot 2s ease-in-out infinite;
}

.fx-badge::after {
    display: none;
}

@keyframes scanLine {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.6);
    }
}

.fx-hero-title {
    font-size: clamp(2.75rem, 6.5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.fx-gradient-text {
    background: linear-gradient(135deg, var(--fx-green) 0%, var(--fx-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.fx-hero-desc {
    font-size: 1.1875rem;
    line-height: 1.75;
    color: var(--fx-text-dim);
    max-width: 640px;
    margin: 0 auto 50px;
}

/* ===== CTA BUTTONS ===== */
.fx-cta-wrap {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.fx-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--fx-font-sans);
}

.fx-btn-primary {
    background: var(--fx-green);
    color: #0B1120 !important;
    box-shadow: 0 4px 20px rgba(45, 212, 191, 0.25);
}

.fx-btn-primary::after {
    display: none;
}

.fx-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 212, 191, 0.35);
    color: #0B1120 !important;
}

.fx-btn-ghost {
    background: transparent;
    color: #fff !important;
    border: none;
}

.fx-btn-ghost:hover {
    color: var(--fx-green) !important;
    transform: translateY(-2px);
}

/* ===== HERO STAT PILLS ===== */
.fx-stat-pills {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 32px;
}

.fx-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--fx-card-border);
    border-radius: 100px;
    color: var(--fx-text);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.fx-stat-pill strong {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}

.fx-stat-pill span {
    color: var(--fx-text-dim);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== TRUST SIGNALS ===== */
.fx-trust-signals {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.fx-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fx-text-dim);
    font-size: 14px;
    font-weight: 500;
}

.fx-trust-item i {
    color: var(--fx-green);
    font-size: 16px;
}

/* ===== DECORATIVE WAVEFORM ===== */
.fx-waveform-wrap {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    height: 90px;
}

.fx-wave-bar {
    width: 4px;
    background: linear-gradient(to top, var(--fx-green), var(--fx-cyan));
    border-radius: 100px;
    animation: waveAnim 1.4s ease-in-out infinite;
    opacity: 0.6;
    box-shadow: 0 0 6px rgba(0, 255, 151, 0.3);
}

@keyframes waveAnim {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.4;
    }

    50% {
        transform: scaleY(2.5);
        opacity: 1;
    }
}

.fx-wave-bar:nth-child(1) {
    height: 18px;
    animation-delay: 0s;
}

.fx-wave-bar:nth-child(2) {
    height: 32px;
    animation-delay: 0.07s;
}

.fx-wave-bar:nth-child(3) {
    height: 22px;
    animation-delay: 0.14s;
}

.fx-wave-bar:nth-child(4) {
    height: 44px;
    animation-delay: 0.21s;
}

.fx-wave-bar:nth-child(5) {
    height: 28px;
    animation-delay: 0.28s;
}

.fx-wave-bar:nth-child(6) {
    height: 52px;
    animation-delay: 0.35s;
}

.fx-wave-bar:nth-child(7) {
    height: 34px;
    animation-delay: 0.42s;
}

.fx-wave-bar:nth-child(8) {
    height: 58px;
    animation-delay: 0.49s;
}

.fx-wave-bar:nth-child(9) {
    height: 38px;
    animation-delay: 0.56s;
}

.fx-wave-bar:nth-child(10) {
    height: 48px;
    animation-delay: 0.63s;
}

.fx-wave-bar:nth-child(11) {
    height: 62px;
    animation-delay: 0.7s;
}

.fx-wave-bar:nth-child(12) {
    height: 42px;
    animation-delay: 0.77s;
}

.fx-wave-bar:nth-child(13) {
    height: 52px;
    animation-delay: 0.84s;
}

.fx-wave-bar:nth-child(14) {
    height: 28px;
    animation-delay: 0.91s;
}

.fx-wave-bar:nth-child(15) {
    height: 48px;
    animation-delay: 0.98s;
}

.fx-wave-bar:nth-child(16) {
    height: 32px;
    animation-delay: 1.05s;
}

.fx-wave-bar:nth-child(17) {
    height: 54px;
    animation-delay: 1.12s;
}

.fx-wave-bar:nth-child(18) {
    height: 24px;
    animation-delay: 1.19s;
}

.fx-wave-bar:nth-child(19) {
    height: 40px;
    animation-delay: 1.26s;
}

.fx-wave-bar:nth-child(20) {
    height: 56px;
    animation-delay: 1.33s;
}

/* ===== SECTION COMMON ===== */
.fx-section {
    padding: 140px 0;
    position: relative;
    z-index: 1;
}

.fx-section-tag {
    color: var(--fx-green);
    font-family: var(--fx-font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 255, 151, 0.3);
    padding: 6px 16px;
    border: 1px solid rgba(0, 255, 151, 0.1);
    border-radius: 4px;
    background: rgba(0, 255, 151, 0.03);
}

.fx-section-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.fx-section-desc {
    color: var(--fx-text-dim);
    font-size: 1.0625rem;
    max-width: 660px;
    line-height: 1.75;
}

.fx-section-desc.center {
    margin: 0 auto;
}

/* ===== AUDIO DEMO SECTION (Main feature) ===== */
.fx-audio-section {
    background: linear-gradient(180deg, rgba(0, 255, 151, 0.02) 0%, transparent 30%);
}

/* Audio tabs */
.fx-audio-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 50px 0 40px;
}

.fx-audio-tab {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: var(--fx-text-dim);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--fx-font-mono);
    letter-spacing: 0.5px;
}

.fx-audio-tab.active,
.fx-audio-tab:hover {
    background: rgba(45, 212, 191, 0.08);
    border-color: rgba(45, 212, 191, 0.25);
    color: var(--fx-green);
}

/* Audio panels */
.fx-audio-panel {
    display: none;
    animation: fadeUp 0.4s ease;
}

.fx-audio-panel.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Audio player card */
.fx-audio-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

/* Subtle top accent line */
.fx-audio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.3), transparent);
}

/* Scanning line inside card */
.fx-audio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 151, 0.5), transparent);
    animation: cardScan 4s linear infinite;
    opacity: 0.4;
}

@keyframes cardScan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.fx-audio-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.fx-audio-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 255, 151, 0.08);
    border: 1px solid rgba(0, 255, 151, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--fx-green);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 255, 151, 0.1);
}

.fx-audio-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.fx-audio-header p {
    font-size: 14px;
    color: var(--fx-text-dim);
    margin: 0;
    line-height: 1.5;
}

/* Custom audio player */
.fx-player {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px 28px;
    position: relative;
}

.fx-player-controls {
    display: flex;
    align-items: center;
    gap: 18px;
}

.fx-play-btn {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fx-green), #00cc7a);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 151, 0.3);
    position: relative;
}

.fx-play-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(0, 255, 151, 0.2);
    border-radius: 50%;
    animation: pulseRing 2.5s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.fx-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 255, 151, 0.5);
}

.fx-play-btn i {
    font-size: 1.125rem;
    color: #000;
    margin-left: 2px;
}

/* Waveform progress bar */
.fx-player-wave {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fx-waveform-visual {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 40px;
    cursor: pointer;
}

.fx-waveform-visual .wv-bar {
    flex: 1;
    border-radius: 100px;
    transition: background 0.15s ease;
    min-width: 2px;
}

.fx-waveform-visual .wv-bar.played {
    background: var(--fx-green);
    box-shadow: 0 0 4px rgba(0, 255, 151, 0.4);
}

.fx-waveform-visual .wv-bar.unplayed {
    background: rgba(255, 255, 255, 0.08);
}

.fx-player-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--fx-font-mono);
    font-size: 12px;
    color: var(--fx-text-dim);
    letter-spacing: 0.5px;
}

/* Call transcript toggle */
.fx-transcript-toggle {
    margin-top: 20px;
    text-align: center;
}

.fx-transcript-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--fx-text-dim);
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    font-family: var(--fx-font-mono);
    transition: all 0.3s ease;
}

.fx-transcript-btn:hover {
    border-color: var(--fx-green);
    color: var(--fx-green);
}

.fx-transcript-area {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    max-height: 250px;
    overflow-y: auto;
    text-align: left;
}

.fx-transcript-area.open {
    display: block;
}

.fx-transcript-area::-webkit-scrollbar {
    width: 4px;
}

.fx-transcript-area::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 151, 0.2);
    border-radius: 100px;
}

.fx-t-line {
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.fx-t-line:last-child {
    border: none;
}

.fx-t-speaker {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fx-t-speaker.ai {
    color: var(--fx-green);
}

.fx-t-speaker.human {
    color: var(--fx-cyan);
}

/* ===== STATS BAR ===== */
.fx-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fx-stat-item {
    text-align: center;
    padding: 35px 20px;
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.fx-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.2), transparent);
}

.fx-stat-number {
    font-size: 3.125rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fx-green), var(--fx-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.fx-stat-label {
    font-size: 13px;
    color: var(--fx-text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===== FEATURE CARDS (AgentLabs Style) ===== */
.fx-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.fx-feature-card {
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fx-feature-card::before,
.fx-feature-card::after {
    display: none;
}

.fx-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 212, 191, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.fx-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
    background: rgba(45, 212, 191, 0.1);
    color: var(--fx-green);
    border: 1px solid rgba(45, 212, 191, 0.15);
}

.fx-feature-icon.green,
.fx-feature-icon.cyan,
.fx-feature-icon.purple {
    background: rgba(45, 212, 191, 0.1);
    color: var(--fx-green);
    border: 1px solid rgba(45, 212, 191, 0.15);
    box-shadow: none;
}

.fx-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.fx-feature-text {
    font-size: 14px;
    color: var(--fx-text-dim);
    line-height: 1.7;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.fx-testimonial-card {
    max-width: 880px;
    margin: 60px auto 0;
    padding: 50px;
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fx-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.2), transparent);
}

.fx-testimonial-quote {
    font-size: 5rem;
    line-height: 1;
    color: rgba(45, 212, 191, 0.07);
    font-family: Georgia, serif;
    margin-bottom: -20px;
}

.fx-testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--fx-text);
    font-style: italic;
    margin-bottom: 28px;
    position: relative;
}

.fx-testimonial-author {
    font-size: 16px;
    font-weight: 700;
    color: var(--fx-green);
}

.fx-testimonial-role {
    font-size: 14px;
    color: var(--fx-text-muted);
    margin-top: 4px;
}

/* ===== CTA SECTION ===== */
.fx-cta-section {
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.fx-cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 450px;
    background: radial-gradient(ellipse, rgba(45, 212, 191, 0.04), transparent 60%);
    pointer-events: none;
}

/* ===== PERFORMANCE SECTION (Split Layout) ===== */
.fx-performance-section {
    padding: 120px 0;
    position: relative;
}

.fx-performance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.fx-performance-left {
    position: sticky;
    top: 120px;
}

.fx-performance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(45, 212, 191, 0.06);
    border: 1px solid rgba(45, 212, 191, 0.15);
    border-radius: 100px;
    color: var(--fx-green);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.fx-performance-badge i {
    font-size: 14px;
}

.fx-performance-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.fx-performance-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.fx-performance-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--fx-text-dim);
}

.fx-performance-checklist li i {
    color: var(--fx-green);
    font-size: 18px;
    flex-shrink: 0;
}

.fx-perf-cta {
    margin-top: 40px;
}

.fx-perf-trust {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    align-items: center;
}

.fx-perf-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--fx-text-dim);
}

.fx-perf-trust span i {
    color: var(--fx-green);
    font-size: 14px;
}

/* Performance Feature Grid (Right Column) */
.fx-performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.fx-perf-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.fx-perf-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--fx-green);
}

.fx-perf-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.fx-perf-content p {
    font-size: 14px;
    color: var(--fx-text-dim);
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .fx-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fx-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .fx-audio-card {
        padding: 30px;
    }

    .fx-performance-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fx-performance-left {
        position: static;
    }
}

@media (max-width: 767px) {
    .fx-hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .fx-features-grid {
        grid-template-columns: 1fr;
    }

    .fx-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .fx-stat-number {
        font-size: 36px;
    }

    .fx-cta-wrap {
        flex-direction: column;
    }

    .fx-btn {
        width: 100%;
        justify-content: center;
    }

    .fx-audio-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .fx-player-controls {
        flex-direction: column;
    }

    .fx-play-btn {
        width: 60px;
        height: 60px;
    }

    .fx-testimonial-card {
        padding: 30px 20px;
    }

    .fx-testimonial-text {
        font-size: 17px;
    }

    .fx-section {
        padding: 100px 0;
    }

    .fx-waveform-wrap {
        height: 50px;
    }

    .fx-audio-tabs {
        gap: 6px;
    }

    .fx-audio-tab {
        padding: 10px 16px;
        font-size: 12px;
    }

    .fx-audio-header {
        flex-direction: column;
        text-align: center;
    }

    .fx-stat-pills {
        flex-direction: column;
        align-items: center;
    }

    .fx-trust-signals {
        flex-direction: column;
        gap: 12px;
    }

    .fx-performance-grid {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   VARIANT B — GRADIENT FEATURE CARDS (Arrowhead-Style)
   ================================================================= */

.fx-variant-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(45, 212, 191, 0.06);
    border: 1px solid rgba(45, 212, 191, 0.15);
    border-radius: 100px;
    color: var(--fx-green);
    font-family: var(--fx-font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.fx-vb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.fx-vb-card {
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--fx-card-border);
    background: var(--fx-card-bg);
}

/* Override gradient backgrounds — use flat dark */
.fx-vb-card.grad-1,
.fx-vb-card.grad-2,
.fx-vb-card.grad-3,
.fx-vb-card.grad-4,
.fx-vb-card.grad-5,
.fx-vb-card.grad-6 {
    background: var(--fx-card-bg);
}

.fx-vb-card::before {
    display: none;
}

.fx-vb-card:hover::before {
    display: none;
}

.fx-vb-card:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 212, 191, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Icon wrapper */
.fx-vb-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: relative;
    z-index: 1;
    background: rgba(45, 212, 191, 0.1);
    color: var(--fx-green);
    border: 1px solid rgba(45, 212, 191, 0.15);
}

.fx-vb-icon.ico-blue,
.fx-vb-icon.ico-purple,
.fx-vb-icon.ico-cyan,
.fx-vb-icon.ico-magenta,
.fx-vb-icon.ico-green,
.fx-vb-icon.ico-red {
    background: rgba(45, 212, 191, 0.1);
    color: var(--fx-green);
    border: 1px solid rgba(45, 212, 191, 0.15);
    box-shadow: none;
}

.fx-vb-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.fx-vb-card p {
    font-size: 14px;
    color: var(--fx-text-dim);
    line-height: 1.65;
    margin: 0;
}


/* =================================================================
   3D GLOBE / ORB COMPONENT
   ================================================================= */

.fx-globe-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.fx-globe-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 44px;
    margin-top: 60px;
}

/* The 3D Globe Container */
.fx-globe {
    width: 320px;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* Outer pulsing aura */
.fx-globe-aura {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 75, 243, 0.15) 0%, rgba(178, 75, 243, 0.03) 45%, transparent 70%);
    animation: globeAura 3s ease-in-out infinite;
}

@keyframes globeAura {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

/* The actual sphere */
.fx-globe-sphere {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    position: relative;
    background:
        radial-gradient(circle at 35% 30%, rgba(178, 75, 243, 0.5), transparent 50%),
        radial-gradient(circle at 65% 70%, rgba(79, 110, 247, 0.4), transparent 50%),
        radial-gradient(circle at 50% 50%, #0c0f2e, #060922);
    box-shadow:
        0 0 60px rgba(178, 75, 243, 0.3),
        0 0 120px rgba(79, 110, 247, 0.15),
        inset 0 0 60px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Grid lines on sphere */
.fx-globe-sphere::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px solid rgba(178, 75, 243, 0.15);
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 24px,
            rgba(178, 75, 243, 0.06) 24px,
            rgba(178, 75, 243, 0.06) 25px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 24px,
            rgba(79, 110, 247, 0.06) 24px,
            rgba(79, 110, 247, 0.06) 25px);
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.7) 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.7) 0%, transparent 75%);
    animation: globeGridSpin 20s linear infinite;
}

@keyframes globeGridSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Specular highlight */
.fx-globe-sphere::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 45%;
    height: 35%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08), transparent 70%);
    transform: rotate(-25deg);
}

/* Play button inside globe */
.fx-globe-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(178, 75, 243, 0.6), rgba(79, 110, 247, 0.4));
    border: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(178, 75, 243, 0.4);
}

.fx-globe-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(178, 75, 243, 0.6);
    background: linear-gradient(135deg, rgba(178, 75, 243, 0.8), rgba(79, 110, 247, 0.6));
}

.fx-globe-play i {
    font-size: 26px;
    color: #fff;
    margin-left: 4px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* Orbiting ring */
.fx-globe-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(178, 75, 243, 0.2);
    animation: ringOrbit 12s linear infinite;
    z-index: 1;
}

.fx-globe-ring::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fx-purple);
    box-shadow: 0 0 12px var(--fx-purple), 0 0 24px var(--fx-purple);
}

@keyframes ringOrbit {
    0% {
        transform: rotateX(65deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(65deg) rotateZ(360deg);
    }
}

/* Second ring */
.fx-globe-ring-2 {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px dashed rgba(79, 110, 247, 0.12);
    animation: ringOrbit2 18s linear infinite reverse;
    z-index: 1;
}

@keyframes ringOrbit2 {
    0% {
        transform: rotateX(55deg) rotateY(20deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(55deg) rotateY(20deg) rotateZ(360deg);
    }
}

/* Floating language labels around the globe */
.fx-globe-labels {
    position: absolute;
    width: 400px;
    height: 400px;
    animation: labelsFloat 25s linear infinite;
}

@keyframes labelsFloat {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fx-globe-label {
    position: absolute;
    font-family: var(--fx-font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: labelCounterRotate 25s linear infinite;
    white-space: nowrap;
}

@keyframes labelCounterRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.fx-globe-label:nth-child(1) {
    top: 0;
    left: 50%;
    color: var(--fx-purple);
    text-shadow: 0 0 10px rgba(178, 75, 243, 0.5);
}

.fx-globe-label:nth-child(2) {
    top: 50%;
    right: -10px;
    color: var(--fx-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.fx-globe-label:nth-child(3) {
    bottom: 5%;
    left: 50%;
    color: #7b93ff;
    text-shadow: 0 0 10px rgba(79, 110, 247, 0.5);
}

.fx-globe-label:nth-child(4) {
    top: 50%;
    left: -20px;
    color: var(--fx-green);
    text-shadow: 0 0 10px rgba(0, 255, 151, 0.5);
}

.fx-globe-label:nth-child(5) {
    top: 18%;
    right: 5%;
    color: #ff8da0;
    text-shadow: 0 0 10px rgba(255, 77, 106, 0.5);
}

/* Globe stat banner */
.fx-globe-stat {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(90deg, rgba(178, 75, 243, 0.12), rgba(79, 110, 247, 0.12));
    border: 1px solid rgba(178, 75, 243, 0.2);
    border-radius: 10px;
    color: #c87fff;
    font-family: var(--fx-font-mono);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(178, 75, 243, 0.3);
    margin-bottom: 30px;
}

/* Responsive for Variant B */
@media (max-width: 991px) {
    .fx-vb-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fx-globe {
        width: 260px;
        height: 260px;
    }

    .fx-globe-sphere {
        width: 200px;
        height: 200px;
    }

    .fx-globe-ring {
        width: 250px;
        height: 250px;
    }

    .fx-globe-labels {
        width: 340px;
        height: 340px;
    }
}

@media (max-width: 767px) {
    .fx-vb-grid {
        grid-template-columns: 1fr;
    }

    .fx-globe {
        width: 220px;
        height: 220px;
    }

    .fx-globe-sphere {
        width: 170px;
        height: 170px;
    }

    .fx-globe-ring {
        width: 210px;
        height: 210px;
    }

    .fx-globe-ring-2 {
        width: 200px;
        height: 200px;
    }

    .fx-globe-labels {
        width: 300px;
        height: 300px;
    }

    .fx-globe-label {
        font-size: 10px;
    }

    .fx-globe-play {
        width: 56px;
        height: 56px;
    }

    .fx-globe-play i {
        font-size: 20px;
    }
}

/* =================================================================
   HERO HIGHLIGHT BAR — ~170ms / Live / Built to Scale
   ================================================================= */

.fx-highlight-bar {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    position: relative;
}

.fx-highlight-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.3), transparent);
}

.fx-highlight-item {
    flex: 1;
    padding: 36px 32px;
    text-align: center;
}

.fx-highlight-divider {
    width: 1px;
    background: var(--fx-card-border);
    align-self: stretch;
}

.fx-highlight-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fx-green), var(--fx-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 10px;
}

.fx-highlight-live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.fx-live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
    animation: pulseDot 1.5s ease-in-out infinite;
}

.fx-highlight-label {
    font-size: 14px;
    color: var(--fx-text-dim);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* =================================================================
   CORE SERVICES — FEATURE TABLE
   ================================================================= */

.fx-services-section {
    background: linear-gradient(180deg, transparent 0%, rgba(45, 212, 191, 0.015) 50%, transparent 100%);
}

.fx-feature-table {
    max-width: 960px;
    margin: 60px auto 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--fx-card-border);
    background: var(--fx-card-bg);
    backdrop-filter: blur(12px);
}

.fx-ft-header {
    display: flex;
    padding: 18px 32px;
    background: rgba(45, 212, 191, 0.06);
    border-bottom: 1px solid rgba(45, 212, 191, 0.12);
    font-family: var(--fx-font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fx-green);
}

.fx-ft-col-feature {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: #fff;
    font-size: 15px;
}

.fx-ft-header .fx-ft-col-feature {
    color: var(--fx-green);
    font-size: 11px;
}

.fx-ft-col-desc {
    flex: 1;
    font-size: 14px;
    color: var(--fx-text-dim);
    line-height: 1.6;
}

.fx-ft-header .fx-ft-col-desc {
    color: var(--fx-green);
    font-size: 11px;
}

.fx-ft-row {
    display: flex;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s ease;
    align-items: center;
}

.fx-ft-row:last-child {
    border-bottom: none;
}

.fx-ft-row:hover {
    background: rgba(45, 212, 191, 0.03);
}

.fx-ft-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(45, 212, 191, 0.08);
    color: var(--fx-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid rgba(45, 212, 191, 0.1);
}

/* =================================================================
   PRICING MODEL SECTION
   ================================================================= */

.fx-pricing-model-section {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.02) 0%, transparent 40%);
}

.fx-pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.fx-pricing-points {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.fx-pricing-points li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fx-pricing-points li:last-child {
    border-bottom: none;
}

.fx-pricing-point-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fx-green);
    font-size: 18px;
}

.fx-pricing-points h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.fx-pricing-points p {
    font-size: 14px;
    color: var(--fx-text-dim);
    line-height: 1.6;
    margin: 0;
}

/* Usage Card */
.fx-usage-card {
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.fx-usage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--fx-green), var(--fx-cyan), var(--fx-purple));
}

.fx-usage-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.15);
    border-radius: 100px;
    color: var(--fx-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.fx-usage-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.fx-usage-subtitle {
    font-size: 16px;
    color: var(--fx-green);
    font-weight: 600;
    margin-bottom: 16px;
}

.fx-usage-desc {
    font-size: 15px;
    color: var(--fx-text-dim);
    line-height: 1.7;
    margin-bottom: 32px;
}

.fx-usage-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fx-usage-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--fx-text);
}

.fx-usage-feature i {
    color: var(--fx-green);
    font-size: 16px;
    flex-shrink: 0;
}

/* =================================================================
   INDUSTRIES SECTION
   ================================================================= */

.fx-industries-section {
    background: linear-gradient(180deg, transparent 0%, rgba(45, 212, 191, 0.015) 50%, transparent 100%);
}

.fx-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.fx-industry-card {
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fx-industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.15), transparent);
}

.fx-industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 212, 191, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.fx-industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--fx-green);
}

.fx-industry-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.fx-industry-card p {
    font-size: 14px;
    color: var(--fx-text-dim);
    line-height: 1.65;
    margin: 0;
}

/* =================================================================
   INTEGRATIONS SECTION
   ================================================================= */

.fx-integrations-section {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
}

.fx-integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.fx-integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

.fx-integration-item:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 212, 191, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.fx-integration-item i {
    font-size: 28px;
    color: var(--fx-text-dim);
    transition: color 0.3s ease;
}

.fx-integration-item:hover i {
    color: var(--fx-green);
}

.fx-integration-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--fx-text-dim);
    text-align: center;
    letter-spacing: 0.3px;
}

/* =================================================================
   MULTILINGUAL / LANGUAGES SECTION
   ================================================================= */

.fx-languages-section {
    background: transparent;
}

.fx-lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fx-lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: var(--fx-text);
    transition: all 0.3s ease;
}

.fx-lang-pill:hover {
    border-color: rgba(45, 212, 191, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.fx-lang-flag {
    font-size: 22px;
    line-height: 1;
}

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

.fx-faq-section {
    background: linear-gradient(180deg, transparent 0%, rgba(45, 212, 191, 0.015) 50%, transparent 100%);
}

.fx-faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.fx-faq-item {
    border: 1px solid var(--fx-card-border);
    border-radius: 16px;
    margin-bottom: 12px;
    background: var(--fx-card-bg);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.fx-faq-item:hover {
    border-color: rgba(45, 212, 191, 0.12);
}

.fx-faq-item.open {
    border-color: rgba(45, 212, 191, 0.2);
}

.fx-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: var(--fx-font-sans);
    transition: color 0.3s ease;
}

.fx-faq-question:hover {
    color: var(--fx-green);
}

.fx-faq-question i {
    font-size: 14px;
    color: var(--fx-text-dim);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.fx-faq-item.open .fx-faq-question i {
    transform: rotate(180deg);
    color: var(--fx-green);
}

.fx-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
}

.fx-faq-item.open .fx-faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.fx-faq-answer p {
    font-size: 15px;
    color: var(--fx-text-dim);
    line-height: 1.7;
    margin: 0;
}

/* =================================================================
   TESTIMONIALS ROW (Two-column)
   ================================================================= */

.fx-testimonials-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 10px;
}

.fx-testimonials-row .fx-testimonial-card {
    margin: 0;
}

/* =================================================================
   RESPONSIVE — NEW SECTIONS
   ================================================================= */

@media (max-width: 991px) {
    .fx-highlight-bar {
        flex-direction: column;
        gap: 0;
    }

    .fx-highlight-divider {
        width: 100%;
        height: 1px;
    }

    .fx-ft-row,
    .fx-ft-header {
        flex-direction: column;
        gap: 8px;
    }

    .fx-ft-col-feature {
        flex: none;
    }

    .fx-pricing-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fx-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fx-integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .fx-testimonials-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .fx-highlight-value {
        font-size: 28px;
    }

    .fx-highlight-live {
        font-size: 28px;
    }

    .fx-highlight-item {
        padding: 24px 20px;
    }

    .fx-feature-table {
        margin-top: 40px;
    }

    .fx-ft-row,
    .fx-ft-header {
        padding: 16px 20px;
    }

    .fx-usage-card {
        padding: 32px 24px;
    }

    .fx-usage-features {
        grid-template-columns: 1fr;
    }

    .fx-industries-grid {
        grid-template-columns: 1fr;
    }

    .fx-integrations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .fx-integration-item {
        padding: 20px 10px;
    }

    .fx-integration-item i {
        font-size: 22px;
    }

    .fx-lang-pill {
        padding: 10px 18px;
        font-size: 13px;
    }

    .fx-faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .fx-faq-answer {
        padding: 0 20px;
    }

    .fx-faq-item.open .fx-faq-answer {
        padding: 0 20px 20px;
    }

    .fx-testimonials-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* =====================================================
   BREADCRUMB NAVIGATION
   ===================================================== */
.fx-breadcrumb {
    padding: 100px 0 0;
    background: var(--fx-bg);
}

.fx-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--fx-font-mono);
    font-size: 13px;
}

.fx-breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fx-text-muted);
}

.fx-breadcrumb-list li::after {
    content: '/';
    color: var(--fx-text-muted);
    opacity: 0.5;
}

.fx-breadcrumb-list li:last-child::after {
    display: none;
}

.fx-breadcrumb-list li a {
    color: var(--fx-text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
}

.fx-breadcrumb-list li a:hover {
    color: var(--fx-green);
}

.fx-breadcrumb-list li[aria-current="page"] span {
    color: var(--fx-cyan);
}

/* =====================================================
   BRAND TRUST CAROUSEL — DARK OVERRIDE
   ===================================================== */
.fx-brand-section {
    background: var(--fx-bg);
    padding: 40px 0 60px;
    border-top: 1px solid rgba(45, 212, 191, 0.06);
    border-bottom: 1px solid rgba(45, 212, 191, 0.06);
}

.fx-brand-section .fx-section-desc {
    margin-bottom: 0;
}

.fx-brand-section .brand-marquee {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.fx-brand-section .brand-marquee:hover {
    opacity: 1;
}

.fx-brand-section .xb-brand-item img {
    filter: brightness(0) invert(1) opacity(0.5);
    transition: filter 0.3s ease;
    max-height: 40px;
}

.fx-brand-section .xb-brand-item img:hover {
    filter: brightness(0) invert(1) opacity(0.9);
}

/* =====================================================
   HOW IT WORKS — 4-STEP PROCESS
   ===================================================== */
.fx-howitworks-section {
    position: relative;
}

.fx-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
}

.fx-process-connector {
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(45, 212, 191, 0),
        rgba(45, 212, 191, 0.4) 20%,
        rgba(34, 211, 238, 0.4) 50%,
        rgba(139, 92, 246, 0.4) 80%,
        rgba(139, 92, 246, 0));
    z-index: 0;
}

.fx-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px 20px;
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: var(--fx-radius);
    transition: all 0.35s ease;
}

.fx-process-step:hover {
    border-color: rgba(45, 212, 191, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45, 212, 191, 0.08);
}

.fx-process-number {
    font-family: var(--fx-font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--fx-cyan);
    letter-spacing: 2px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.fx-process-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(34, 211, 238, 0.08));
    border: 1px solid rgba(45, 212, 191, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--fx-cyan);
    transition: all 0.3s ease;
}

.fx-process-step:hover .fx-process-icon {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(34, 211, 238, 0.15));
    border-color: rgba(45, 212, 191, 0.4);
    transform: scale(1.08);
}

.fx-process-step h3 {
    font-family: var(--fx-font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--fx-text);
    margin-bottom: 10px;
}

.fx-process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--fx-text-dim);
    margin: 0;
}

/* =====================================================
   RELATED PRODUCTS — INTERNAL LINKING
   ===================================================== */
.fx-related-products-section {
    border-top: 1px solid rgba(45, 212, 191, 0.06);
}

.fx-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.fx-related-card {
    display: flex;
    flex-direction: column;
    padding: 36px 28px;
    background: var(--fx-card-bg);
    border: 1px solid var(--fx-card-border);
    border-radius: var(--fx-radius);
    text-decoration: none;
    transition: all 0.35s ease;
    cursor: pointer;
}

.fx-related-card:hover {
    border-color: rgba(45, 212, 191, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(45, 212, 191, 0.08);
    text-decoration: none;
}

.fx-related-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(34, 211, 238, 0.08));
    border: 1px solid rgba(45, 212, 191, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--fx-green);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.fx-related-card:hover .fx-related-icon {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(34, 211, 238, 0.15));
    border-color: rgba(45, 212, 191, 0.35);
    transform: scale(1.05);
}

.fx-related-card h3 {
    font-family: var(--fx-font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--fx-text);
    margin-bottom: 10px;
}

.fx-related-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--fx-text-dim);
    margin-bottom: 20px;
    flex: 1;
}

.fx-related-link {
    font-family: var(--fx-font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--fx-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.fx-related-card:hover .fx-related-link {
    color: var(--fx-green);
    gap: 12px;
}

.fx-related-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.fx-related-card:hover .fx-related-link i {
    transform: translateX(4px);
}

/* =====================================================
   RESPONSIVE — NEW SECTIONS
   ===================================================== */
@media (max-width: 991px) {
    .fx-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .fx-process-connector {
        display: none;
    }

    .fx-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .fx-breadcrumb {
        padding: 90px 0 0;
    }

    .fx-breadcrumb-list {
        font-size: 12px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .fx-process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fx-process-step {
        padding: 24px 16px;
    }

    .fx-related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fx-related-card {
        padding: 28px 20px;
    }
}

/* ================================================================
   MOBILE RESPONSIVENESS OVERRIDES — CallingAgent.html specific
   ================================================================ */
@media (max-width: 767px) {
    /* Cap hero image height so stacked columns don't create a huge gap */
    .hero-style .hero-image {
        margin-top: 24px;
        text-align: center;
    }

    .hero-style .hero-image img {
        max-height: 260px;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Feature section — override pt-145 utility class */
    section.feature {
        padding-top: 60px !important;
    }

    /* Hide decorative SVG center column (391px SVGs cause blank space on mobile) */
    .xb-feature-img {
        display: none !important;
    }

    /* Brand section — override pt-170 pb-150 utility classes (320px) */
    section.brand {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    /* Brand sub-title text wrapping */
    .brand-sub-title p {
        font-size: 13px;
        white-space: normal;
    }

    /* Service section — override pt-135 utility class */
    section.service {
        padding-top: 60px !important;
    }

    /* Video nav tabs — horizontal scroll so tabs don't clip */
    .xb-video-nav.nav-pills {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .xb-video-nav.nav-pills::-webkit-scrollbar {
        display: none;
    }

    .xb-video-nav-item {
        flex: 0 0 auto;
    }
}

/* ── Round 2: deeper mobile fixes ───────────────────────────────── */
@media (max-width: 767px) {

    /* FIX 1: Hero stat cards → 2-per-row instead of 3 stacked (saves ~600px) */
    section.hero.hero-style {
        padding-top: 90px !important; /* override inline style="padding-top:120px" */
    }
    section.hero.hero-style .row.mt-55 {
        margin-top: 20px !important;
    }
    section.hero.hero-style .row.mt-55 > [class*='col-'] {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 6px;
        padding-right: 6px;
    }
    section.hero.hero-style .row.mt-55 > [class*='col-']:last-child {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    section.hero.hero-style .xb-feature-item .xb-item--inner {
        padding: 20px 14px;
    }
    section.hero.hero-style .xb-item--content {
        font-size: 12px;
        line-height: 1.4;
    }

    /* FIX 6: Feature section (Why Choose) → left/right cols side-by-side */
    section.feature .row > .col-lg-4.col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    section.feature .row > .col-lg-4.col-md-12 {
        display: none !important; /* center SVG column — xb-feature-img already hidden by rule above */
    }
    section.feature .xb-feature-item2 .xb-item--inner {
        padding: 18px 12px;
    }
    section.feature .xb-item--title {
        font-size: 14px;
        line-height: 1.35;
    }

    /* FIX 3: Industries sections — override pt-145 pb-50/165 utility classes */
    section.industries {
        padding-top: 50px !important;
        padding-bottom: 40px !important;
    }
    section.industries.pb-165 {
        padding-bottom: 50px !important;
    }

    /* FIX 4: Contact section — override pt-150 pb-140 (saves ~230px) */
    .contact-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    /* FIX 5: Voice showcase — reduce excessive bottom padding */
    #sc-voice-showcase {
        padding-bottom: 30px !important;
    }
}

/* ============================================================
   CALLING AGENT — RESPONSIVE TYPOGRAPHY (rem only)
   Covers: folded foldables, phones, phablets, tablets
   Base font: 1rem = 16px browser default
   ============================================================ */

/* ─── TINY PHONES & FOLDED FOLDABLES (≤ 374px) ───────────── */
@media (max-width: 374px) {

    .fx-hero-title {
        font-size: clamp(1.75rem, 9vw, 2.25rem);
        line-height: 1.1;
    }

    .fx-hero-desc {
        font-size: 0.875rem;
        line-height: 1.65;
    }

    .fx-section-title,
    .fx-performance-title {
        font-size: clamp(1.5rem, 8vw, 1.875rem);
        line-height: 1.2;
    }

    .fx-section-desc {
        font-size: 0.875rem;
    }

    .fx-section-tag {
        font-size: 0.6875rem;
        letter-spacing: 2px;
    }

    .fx-stat-number {
        font-size: 2rem;
    }

    .fx-testimonial-quote {
        font-size: 3rem;
    }

    .fx-audio-header h3 {
        font-size: 1.125rem;
    }

    .fx-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}

/* ─── IPHONE 15 / MOST ANDROID PHONES (≤ 430px) ──────────── */
@media (max-width: 430px) {

    .fx-hero-title {
        font-size: clamp(1.875rem, 9vw, 2.5rem);
        line-height: 1.1;
    }

    .fx-hero-desc {
        font-size: 0.9375rem;
        line-height: 1.7;
        max-width: 100%;
    }

    .fx-section-title,
    .fx-performance-title {
        font-size: clamp(1.625rem, 7.5vw, 2rem);
        line-height: 1.2;
    }

    .fx-section-desc {
        font-size: 0.9375rem;
        max-width: 100%;
    }

    .fx-section-tag {
        font-size: 0.6875rem;
        letter-spacing: 2.5px;
    }

    .fx-stat-number {
        font-size: 2.25rem;
    }

    .fx-testimonial-quote {
        font-size: 3.5rem;
    }

    .fx-audio-header h3 {
        font-size: 1.1875rem;
    }

    .fx-badge {
        font-size: 0.75rem;
    }
}

/* ─── ALL PHONES CATCH-ALL (≤ 575px) ─────────────────────── */
@media (max-width: 575px) {

    .fx-hero-title {
        font-size: clamp(2rem, 8.5vw, 2.75rem);
        line-height: 1.1;
    }

    .fx-hero-desc {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 100%;
    }

    .fx-section-title,
    .fx-performance-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        line-height: 1.2;
    }

    .fx-section-desc {
        font-size: 1rem;
        max-width: 100%;
    }

    .fx-section-tag {
        font-size: 0.6875rem;
        letter-spacing: 3px;
    }

    .fx-stat-number {
        font-size: 2.5rem;
    }

    .fx-testimonial-quote {
        font-size: 3.75rem;
    }

    .fx-audio-header h3 {
        font-size: 1.25rem;
    }

    .fx-badge {
        font-size: 0.8125rem;
    }
}

/* ─── LARGE PHONES · PHABLETS (576–767px) ────────────────── */
@media (min-width: 576px) and (max-width: 767px) {

    .fx-hero-title {
        font-size: clamp(2.5rem, 7vw, 3.25rem);
        line-height: 1.08;
    }

    .fx-hero-desc {
        font-size: 1.0625rem;
        line-height: 1.7;
    }

    .fx-section-title,
    .fx-performance-title {
        font-size: clamp(2rem, 5.5vw, 2.75rem);
        line-height: 1.15;
    }

    .fx-section-desc {
        font-size: 1.0625rem;
    }

    .fx-stat-number {
        font-size: 2.75rem;
    }
}

/* ─── TABLETS (768–991px) ─────────────────────────────────── */
@media (min-width: 768px) and (max-width: 991px) {

    .fx-hero-title {
        font-size: clamp(2.75rem, 6vw, 3.75rem);
        line-height: 1.08;
    }

    .fx-hero-desc {
        font-size: 1.125rem;
        line-height: 1.72;
    }

    .fx-section-title,
    .fx-performance-title {
        font-size: clamp(2.25rem, 5vw, 3rem);
        line-height: 1.12;
    }

    .fx-section-desc {
        font-size: 1.125rem;
    }

    .fx-stat-number {
        font-size: 3rem;
    }

    .fx-testimonial-quote {
        font-size: 4.5rem;
    }
}

/* ─── LARGE TABLETS (992–1199px) ─────────────────────────── */
@media (min-width: 992px) and (max-width: 1199px) {

    .fx-hero-title {
        font-size: clamp(3rem, 5.5vw, 4rem);
        line-height: 1.07;
    }

    .fx-section-title,
    .fx-performance-title {
        font-size: clamp(2.5rem, 4.5vw, 3.25rem);
        line-height: 1.1;
    }

    .fx-stat-number {
        font-size: 3.125rem;
    }
}