/* ═══════════════════════════════════════════════════════════════════════════
   CLOUD VOIP PAGE – Elite service page styles
   Sections: Hero · Bento Features · Steps · Pricing · FAQ · CTA
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── VoIP Hero ────────────────────────────────────────────────────────────── */
.voip-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(7rem, 14vw, 12rem) 0 clamp(8rem, 16vw, 14rem);
    background: linear-gradient(165deg, #eef2ff 0%, #e0e7ff 40%, #c7d2fe 100%);
    color: #1e293b;
}

.voip-hero__bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
}

.voip-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .35;
    will-change: transform;
    animation: voipFloat 14s ease-in-out infinite alternate;
}
.voip-hero__orb--1 { width: 500px; height: 500px; background: #c7d2fe; top: -10%; left: -5%; }
.voip-hero__orb--2 { width: 400px; height: 400px; background: #ddd6fe; bottom: -15%; right: -5%; animation-delay: -4s; }
.voip-hero__orb--3 { width: 300px; height: 300px; background: #a5f3fc; top: 20%; right: 20%; animation-delay: -8s; opacity: .25; }

@keyframes voipFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.08); }
}

.voip-hero__wave {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    width: 100%;
    height: clamp(80px, 12vw, 160px);
    z-index: 1;
}

.voip-hero .container { position: relative; z-index: 2; }

/* Subtle grid texture overlay for depth */
.voip-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(79,70,229,.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.voip-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}
@media (min-width: 1024px) {
    .voip-hero__inner { grid-template-columns: 1fr 1fr; }
}

.voip-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,70,229,.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(79,70,229,.15);
    color: var(--color-primary);
    margin-bottom: var(--space-5);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.voip-hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
}

.voip-hero__desc {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: #475569;
    max-width: 540px;
    margin-bottom: var(--space-8);
}

.voip-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.voip-hero__actions .btn--outline {
    border-color: rgba(79,70,229,.3);
    color: var(--color-primary);
}
.voip-hero__actions .btn--outline:hover {
    background: rgba(79,70,229,.08);
    border-color: var(--color-primary);
}

/* Proof bar */
.voip-hero__proof {
    display: inline-flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-5) var(--space-6);
    border-radius: var(--radius-lg);
    background: rgba(79,70,229,.06);
    border: 1px solid rgba(79,70,229,.1);
}
.voip-hero__proof-item {
    text-align: center;
    white-space: nowrap;
}
.voip-hero__proof-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}
.voip-hero__proof-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    font-weight: 600;
    margin-top: 2px;
}
.voip-hero__proof-divider {
    width: 1px;
    height: 32px;
    background: rgba(79,70,229,.15);
    flex-shrink: 0;
}

/* Dashboard visual */
.voip-hero__visual {
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voip-hero__dashboard {
    background: #fff;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(79,70,229,.12);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
    box-shadow:
        0 0 0 1px rgba(79,70,229,.06),
        0 20px 60px -10px rgba(30,41,80,.12),
        0 0 80px -20px rgba(79,70,229,.15);
    width: 100%;
    max-width: 420px;
}
@media (min-width: 1024px) {
    .voip-hero__dashboard { max-width: 100%; }
}
.voip-hero__dashboard:hover {
    transform: rotateY(-2deg) rotateX(1deg) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(79,70,229,.1),
        0 30px 80px -10px rgba(30,41,80,.16),
        0 0 100px -20px rgba(79,70,229,.2);
}

.voip-dash__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(79,70,229,.03);
    border-bottom: 1px solid rgba(79,70,229,.08);
}
.voip-dash__dots span {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-right: 4px;
}
.voip-dash__dots span:nth-child(1) { background: #EF4444; }
.voip-dash__dots span:nth-child(2) { background: #F59E0B; }
.voip-dash__dots span:nth-child(3) { background: #10B981; }
.voip-dash__title {
    font-size: var(--text-xs);
    color: #64748b;
    font-weight: 500;
}

.voip-dash__body { padding: 20px 20px 24px; }

.voip-dash__stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(79,70,229,.08);
}
.voip-dash__stat:last-of-type { border-bottom: none; }

.voip-dash__stat-icon {
    width: 38px; height: 38px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.voip-dash__stat-icon--green  { background: rgba(16,185,129,.12); color: #059669; }
.voip-dash__stat-icon--blue   { background: rgba(99,102,241,.12); color: #4f46e5; }
.voip-dash__stat-icon--violet { background: rgba(167,139,250,.12); color: #7c3aed; }

.voip-dash__stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: #1e293b;
}
.voip-dash__stat-label {
    font-size: var(--text-xs);
    color: #64748b;
}

/* Waveform bars */
.voip-dash__waveform {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(79,70,229,.08);
}
.voip-dash__waveform span {
    flex: 1;
    height: var(--h, 50%);
    min-height: 4px;
    border-radius: 2px;
    background: linear-gradient(to top, rgba(99,102,241,.35), rgba(139,92,246,.55));
    animation: waveformPulse 2.8s ease-in-out infinite alternate;
    transform-origin: bottom;
}
.voip-dash__waveform span:nth-child(even) { animation-delay: -1.4s; }
.voip-dash__waveform span:nth-child(3n)   { animation-delay: -0.7s; }
.voip-dash__waveform span:nth-child(5n)   { animation-delay: -2.1s; }

@keyframes waveformPulse {
    0%   { opacity: .45; transform: scaleY(.75); }
    50%  { opacity: .8;  transform: scaleY(1.05); }
    100% { opacity: 1;   transform: scaleY(.9); }
}


/* ── Bento Feature Grid ───────────────────────────────────────────────────── */
.voip-features {
    padding: var(--section-padding) 0;
    padding-top: clamp(3rem, 6vw, 5rem);
    background: var(--surface);
    position: relative;
}

.voip-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-12);
}
@media (min-width: 768px) {
    .voip-bento { grid-template-columns: repeat(3, 1fr); }
    .voip-bento__card--wide { grid-column: span 2; }
}

.voip-bento__card {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    background: var(--surface);
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
    overflow: hidden;
}
.voip-bento__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Color accents */
.voip-bento__card--blue   { --bento-accent: #4a7dff; --bento-bg: #eef3ff; }
.voip-bento__card--violet { --bento-accent: #7c5cfc; --bento-bg: #f0edff; }
.voip-bento__card--cyan   { --bento-accent: #06B6D4; --bento-bg: #ecfeff; }
.voip-bento__card--pink   { --bento-accent: #e86cb0; --bento-bg: #fdf2f8; }
.voip-bento__card--slate  { --bento-accent: #5b7094; --bento-bg: #f1f5f9; }
.voip-bento__card--green  { --bento-accent: #10B981; --bento-bg: #ecfdf5; }

.voip-bento__icon {
    width: 56px; height: 56px;
    padding: 12px;
    border-radius: var(--radius-lg);
    background: var(--bento-bg, #f0f4ff);
    color: var(--bento-accent, #4a7dff);
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.voip-bento__icon svg { width: 100%; height: 100%; }

.voip-bento__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.voip-bento__desc {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Gradient wide card */
.voip-bento__card--gradient {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #fff;
    border-color: transparent;
}
.voip-bento__card--gradient .voip-bento__title { color: #fff; }
.voip-bento__card--gradient .voip-bento__desc  { color: rgba(255,255,255,.75); }
.voip-bento__card--gradient:hover { box-shadow: 0 20px 40px rgba(79,70,229,.25); }

.voip-bento__icon--light {
    background: rgba(255,255,255,.15);
    color: #fff;
}

.voip-bento__card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}
@media (max-width: 767px) {
    .voip-bento__card-inner { flex-direction: column; align-items: flex-start; }
}

/* Device illustrations in gradient card */
.voip-bento__devices {
    display: flex;
    align-items: flex-end;
    gap: -10px;
    flex-shrink: 0;
    opacity: .7;
}
.voip-bento__device--laptop svg { width: 160px; height: auto; }
.voip-bento__device--phone  svg { width: 50px;  height: auto; margin-left: -20px; }

/* Integration logos */
.voip-bento__logos {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.voip-bento__logo-pill {
    width: 40px; height: 40px;
    border-radius: var(--radius-full);
    background: var(--bento-bg, #ecfdf5);
    color: var(--bento-accent, #10B981);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s var(--ease-out);
}
.voip-bento__logo-pill:hover { transform: scale(1.15); }


/* ── How It Works Steps ───────────────────────────────────────────────────── */
.voip-steps {
    padding: var(--section-padding) 0;
    background: var(--surface-alt);
}

.voip-steps__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    margin-top: var(--space-12);
}
@media (min-width: 900px) {
    .voip-steps__grid {
        flex-direction: row;
        align-items: stretch;
    }
}

.voip-steps__step {
    flex: 1;
    text-align: center;
    padding: clamp(2rem, 3.5vw, 3rem);
    position: relative;
    border-radius: var(--radius-xl);
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.voip-steps__step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.voip-steps__number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .15;
    position: absolute;
    top: 16px; right: 20px;
    line-height: 1;
}

.voip-steps__icon {
    width: 64px; height: 64px;
    margin: 0 auto var(--space-5);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}
.voip-steps__icon svg { width: 100%; height: 100%; }
.voip-steps__icon--blue   { background: #eef3ff; color: #4a7dff; }
.voip-steps__icon--violet { background: #f0edff; color: #7c5cfc; }
.voip-steps__icon--green  { background: #ecfdf5; color: #10B981; }

.voip-steps__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.voip-steps__desc {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Connectors between steps */
.voip-steps__connector {
    display: none;
    flex-shrink: 0;
    width: 80px;
    align-self: center;
}
@media (min-width: 900px) {
    .voip-steps__connector { display: flex; align-items: center; }
}
.voip-steps__connector svg { width: 100%; height: auto; }


/* ── Pricing Cards ────────────────────────────────────────────────────────── */
.voip-pricing {
    padding: var(--section-padding) 0;
    background: var(--surface);
}

.voip-pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-12);
    align-items: stretch;
}
@media (min-width: 768px) {
    .voip-pricing__grid { grid-template-columns: repeat(3, 1fr); }
}

.voip-pricing__card {
    padding: clamp(2rem, 3.5vw, 2.75rem);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.voip-pricing__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Featured card */
.voip-pricing__card--featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-lg);
    z-index: 1;
}
@media (min-width: 768px) {
    .voip-pricing__card--featured {
        transform: scale(1.04);
        padding-top: clamp(2.5rem, 4vw, 3.5rem);
        padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
    }
    .voip-pricing__card--featured:hover { transform: scale(1.06) translateY(-4px); }
}

.voip-pricing__badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: #fff;
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.voip-pricing__header { margin-bottom: var(--space-5); }

.voip-pricing__name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
}

.voip-pricing__tagline {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-1);
}

.voip-pricing__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--border-light);
}

.voip-pricing__currency {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    align-self: flex-start;
    margin-top: 6px;
}

.voip-pricing__amount {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}
.voip-pricing__amount--custom {
    font-size: var(--text-3xl);
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voip-pricing__period {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.voip-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.voip-pricing__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}
.voip-pricing__features svg { flex-shrink: 0; }

.voip-pricing__card .btn { margin-top: auto; }


/* ── FAQ Accordion ────────────────────────────────────────────────────────── */
.voip-faq {
    padding: var(--section-padding) 0;
    background: var(--surface-alt);
}

.voip-faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-10);
}

.voip-faq__item {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow .3s var(--ease-out);
}
.voip-faq__item:hover,
.voip-faq__item[open] {
    box-shadow: var(--shadow-md);
}

.voip-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
    user-select: none;
    transition: background .2s;
}
.voip-faq__question::-webkit-details-marker { display: none; }
.voip-faq__question::marker { content: ''; }
.voip-faq__question:hover { background: var(--surface-muted); }

.voip-faq__chevron {
    flex-shrink: 0;
    transition: transform .3s var(--ease-out);
    color: var(--text-muted);
}
.voip-faq__item[open] .voip-faq__chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.voip-faq__answer {
    padding: 0 var(--space-6) var(--space-6);
    animation: faqSlideDown .3s var(--ease-out);
}
.voip-faq__answer p {
    font-size: var(--text-sm);
    line-height: 1.75;
    color: var(--text-secondary);
}

@keyframes faqSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ── VoIP CTA ─────────────────────────────────────────────────────────────── */
.voip-cta {
    position: relative;
    padding: clamp(6rem, 12vw, 10rem) 0 clamp(5rem, 10vw, 9rem);
    background: linear-gradient(135deg, #eef2ff 0%, #ddd6fe 50%, #c7d2fe 100%);
    color: #1e293b;
    text-align: center;
    overflow: hidden;
}

.voip-cta__wave-top {
    position: absolute;
    top: -1px; left: 0; right: 0;
    width: 100%;
    height: clamp(40px, 6vw, 80px);
    z-index: 1;
}

.voip-cta__bg {
    position: absolute; inset: 0;
    pointer-events: none;
}
.voip-cta__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
}
.voip-cta__orb--1 { width: 400px; height: 400px; background: #c7d2fe; top: -15%; left: 10%; }
.voip-cta__orb--2 { width: 350px; height: 350px; background: #ddd6fe; bottom: -20%; right: 10%; }

.voip-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.voip-cta__title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-5);
}

.voip-cta__desc {
    font-size: var(--text-lg);
    color: #475569;
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.voip-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

/* ── VoIP CTA Light Button ────────────────────────────────────────────────── */
.btn--primary-light {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 24px rgba(79,70,229,.25);
    transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.btn--primary-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(79,70,229,.35);
    background: var(--color-primary-dark);
    color: #fff;
}

/* ── VoIP Responsive Polish ───────────────────────────────────────────────── */
@media (max-width: 767px) {
    .voip-hero__proof {
        gap: var(--space-4);
        padding: var(--space-4);
    }
    .voip-hero__proof-number {
        font-size: var(--text-lg);
    }
    .voip-hero__proof-divider {
        height: 24px;
    }
    .voip-hero__title {
        font-size: var(--text-4xl);
    }
    .voip-hero__dashboard {
        max-width: 100%;
    }
    .voip-pricing__grid {
        gap: var(--space-8);
    }
    .voip-pricing__card--featured {
        transform: none;
    }
    .voip-pricing__card--featured:hover {
        transform: translateY(-4px);
    }
    .voip-steps__connector {
        display: none;
    }
    .voip-steps__step {
        max-width: 420px;
    }
}

@media (min-width: 1024px) {
    .voip-hero__inner {
        gap: clamp(3rem, 5vw, 5rem);
    }
}

/* ── Section Divider Helpers ──────────────────────────────────────────────── */
.voip-features::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(79,70,229,.03) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.voip-features > .container {
    position: relative;
    z-index: 1;
}


/* ── AI Agent Section ────────────────────────────────────────────────────── */
.voip-ai {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: linear-gradient(165deg, #f5f3ff 0%, #ede9fe 40%, #ddd6fe 100%);
    color: #1e293b;
}

.voip-ai__bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
}

.voip-ai__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .3;
    animation: voipFloat 14s ease-in-out infinite alternate;
}
.voip-ai__orb--1 { width: 400px; height: 400px; background: #c4b5fd; top: -10%; right: -5%; }
.voip-ai__orb--2 { width: 300px; height: 300px; background: #a5f3fc; bottom: -10%; left: -5%; animation-delay: -6s; }

.voip-ai__grid-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(124,58,237,.05) 1px, transparent 1px);
    background-size: 28px 28px;
}

.voip-ai .container { position: relative; z-index: 1; }

.voip-ai__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}
@media (min-width: 1024px) {
    .voip-ai__layout { grid-template-columns: 1fr 1fr; }
}

.voip-ai__pill {
    background: rgba(124,58,237,.1);
    border-color: rgba(124,58,237,.2);
    color: #7C3AED;
    margin-bottom: var(--space-5);
}
.voip-ai__pill svg { color: #7C3AED; }

.voip-ai__desc {
    font-size: var(--text-base);
    line-height: 1.75;
    color: #475569;
    margin-top: var(--space-4);
    margin-bottom: var(--space-8);
    max-width: 560px;
}

.voip-ai__features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
}

.voip-ai__feature-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.voip-ai__feature-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.voip-ai__feature-icon--blue   { background: #eef3ff; color: #4a7dff; }
.voip-ai__feature-icon--violet { background: #f0edff; color: #7c5cfc; }
.voip-ai__feature-icon--green  { background: #ecfdf5; color: #10B981; }
.voip-ai__feature-icon--amber  { background: #fffbeb; color: #F59E0B; }

.voip-ai__feature-item strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}
.voip-ai__feature-item p {
    font-size: var(--text-sm);
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.voip-ai__cta-row {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    flex-wrap: wrap;
}

.voip-ai__price-hint {
    font-size: var(--text-sm);
    color: #7c5cfc;
    font-weight: 600;
}

/* AI Mockup / Visual */
.voip-ai__mockup {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(124,58,237,.15);
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.voip-ai__mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(124,58,237,.1);
    font-size: .78rem;
    font-weight: 600;
    color: #7C3AED;
}

.voip-ai__mockup-dots {
    display: flex;
    gap: 5px;
}
.voip-ai__mockup-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ddd6fe;
}

.voip-ai__mockup-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.voip-ai__bubble {
    max-width: 85%;
    padding: .7rem 1rem;
    border-radius: 14px;
    font-size: .82rem;
    line-height: 1.5;
}
.voip-ai__bubble p { margin: 0; }

.voip-ai__bubble--caller {
    align-self: flex-start;
    background: #f1f5f9;
    color: #334155;
    border-bottom-left-radius: 4px;
}

.voip-ai__bubble--agent {
    align-self: flex-end;
    background: linear-gradient(135deg, #7C3AED, #6366F1);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.voip-ai__bubble-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 4px;
    opacity: .75;
}

.voip-ai__mockup-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    color: #64748b;
    padding-top: .5rem;
    border-top: 1px solid rgba(124,58,237,.08);
}

.voip-ai__status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: voipAiPulse 2s ease-in-out infinite;
}

@keyframes voipAiPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
    50% { opacity: .7; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* Floating badges */
.voip-ai__visual {
    position: relative;
}

.voip-ai__float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    white-space: nowrap;
    animation: voipFloat 10s ease-in-out infinite alternate;
}
.voip-ai__float-badge--1 { bottom: -12px; left: 10%; animation-delay: -3s; }
.voip-ai__float-badge--2 { top: -12px; right: 10%; animation-delay: -7s; }

@media (max-width: 767px) {
    .voip-ai__float-badge { display: none; }
}
