/* HERO */
.vp-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    background: #070b14;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.vp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 70% 60% at 65% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 65% 50%, black 20%, transparent 100%);
}

.vp-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.vp-hero-glow--1 {
    width: 450px; height: 450px;
    background: rgba(41, 182, 232, 0.14);
    top: -10%; right: 15%;
    animation: vpGlow1 14s ease-in-out infinite;
}

.vp-hero-glow--2 {
    width: 400px; height: 400px;
    background: rgba(26, 159, 208, 0.1);
    bottom: -15%; left: 5%;
    animation: vpGlow2 16s ease-in-out infinite;
}

.vp-hero-glow--3 {
    width: 300px; height: 300px;
    background: rgba(41, 182, 232, 0.07);
    top: 50%; right: -5%;
    animation: vpGlow3 18s ease-in-out infinite;
}

@keyframes vpGlow1 {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(25px,15px) scale(1.05); }
    66% { transform: translate(-15px,-10px) scale(0.96); }
}
@keyframes vpGlow2 {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(35px,-25px) scale(1.06); }
}
@keyframes vpGlow3 {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-20px,15px) scale(1.08); }
}

.vp-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.vp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(41, 182, 232, 0.1);
    border: 1px solid rgba(41, 182, 232, 0.2);
    border-radius: 50px;
    color: #29B6E8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
}

.vp-hero-badge::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #29B6E8;
    animation: vpPulse 2s ease-in-out infinite;
}

@keyframes vpPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.vp-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.vp-hero-title span {
    background: linear-gradient(135deg, #29B6E8, #38bdf8, #7dd3fc);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: vpTitleShift 6s ease-in-out infinite;
}

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

.vp-hero-desc {
    font-size: 1.08rem;
    color: #7a8ba8;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.vp-hero-btns { 
    display: flex; 
    gap: 14px; 
    flex-wrap: wrap; 
}

.vp-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(180deg, #8B5CF6, #8B5CF6);
    color: #fff; font-size: 15px; font-weight: 700;
    border-radius: 12px; text-decoration: none; border: none;
    cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(41, 182, 232, 0.3);
}

.vp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(41, 182, 232, 0.45);
    background: linear-gradient(135deg, #38bdf8, #29B6E8);
    color: #fff;
}

.vp-btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    background: rgba(255,255,255,0.04);
    color: #cbd5e1; font-size: 15px; font-weight: 600;
    border-radius: 12px; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer; transition: all 0.3s ease;
}

.vp-btn-secondary:hover {
    border-color: rgba(255,255,255,0.25);
    color: #fff; background: rgba(255,255,255,0.07);
}


/* ── Voice Assistant Mobile Visual ── */
.vp-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-mobile-scene {
    position: relative;
    width: 420px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background glow */
.vp-mob-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(41,182,232,0.25) 0%, rgba(41,182,232,0.08) 40%, transparent 70%);
    border-radius: 50%;
    animation: vpGlowPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes vpGlowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Animated SVG wave lines */
.vp-mob-waves {
    position: absolute;
    width: 110%;
    height: 70%;
    top: 15%;
    left: -5%;
    z-index: 1;
    overflow: visible;
}

.vp-wave-line {
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
}

.vp-wave-line--1 {
    stroke: rgba(41, 182, 232, 0.35);
    animation: vpWaveDash1 3s ease-in-out infinite;
    stroke-dasharray: 12 8;
}

.vp-wave-line--2 {
    stroke: rgba(94, 231, 255, 0.25);
    animation: vpWaveDash2 4s ease-in-out infinite;
    stroke-dasharray: 18 6;
}

.vp-wave-line--3 {
    stroke: rgba(168, 85, 247, 0.2);
    animation: vpWaveDash3 3.5s ease-in-out infinite;
    stroke-dasharray: 8 14;
}

@keyframes vpWaveDash1 {
    0%   { stroke-dashoffset: 0;   d: path("M0,150 Q50,60 100,150 T200,150 T300,150 T400,150"); }
    50%  { stroke-dashoffset: 40;  d: path("M0,150 Q50,220 100,150 T200,150 T300,150 T400,150"); }
    100% { stroke-dashoffset: 80;  d: path("M0,150 Q50,60 100,150 T200,150 T300,150 T400,150"); }
}

@keyframes vpWaveDash2 {
    0%   { stroke-dashoffset: 0;   d: path("M0,150 Q70,200 140,150 T280,150 T400,150"); }
    50%  { stroke-dashoffset: 50;  d: path("M0,150 Q70,90 140,150 T280,150 T400,150"); }
    100% { stroke-dashoffset: 100; d: path("M0,150 Q70,200 140,150 T280,150 T400,150"); }
}

@keyframes vpWaveDash3 {
    0%   { stroke-dashoffset: 0;   d: path("M0,150 Q90,100 180,150 T360,150 T400,150"); }
    50%  { stroke-dashoffset: 35;  d: path("M0,150 Q90,210 180,150 T360,150 T400,150"); }
    100% { stroke-dashoffset: 70;  d: path("M0,150 Q90,100 180,150 T360,150 T400,150"); }
}

/* Orbit ring around phone */
.vp-orbit-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(65deg);
    border: 1px solid rgba(41,182,232,0.15);
    border-radius: 50%;
    z-index: 1;
    animation: vpOrbitSpin 12s linear infinite;
}

.vp-orbit-ring::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #29B6E8;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(41,182,232,0.8);
}

@keyframes vpOrbitSpin {
    0%   { transform: translate(-50%, -50%) rotateX(65deg) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(65deg) rotate(360deg); }
}

/* Floating particles */
.vp-particle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.vp-particle--1 { width: 5px; height: 5px; background: #29B6E8; top: 8%; left: 15%; animation: vpParticle 5s ease-in-out infinite; box-shadow: 0 0 10px rgba(41,182,232,0.6); }
.vp-particle--2 { width: 3px; height: 3px; background: #5ee7ff; top: 15%; right: 10%; animation: vpParticle 4s ease-in-out infinite 0.5s; box-shadow: 0 0 8px rgba(94,231,255,0.5); }
.vp-particle--3 { width: 4px; height: 4px; background: #a855f7; bottom: 20%; left: 8%; animation: vpParticle 6s ease-in-out infinite 1s; box-shadow: 0 0 10px rgba(168,85,247,0.5); }
.vp-particle--4 { width: 3px; height: 3px; background: #29B6E8; bottom: 12%; right: 15%; animation: vpParticle 4.5s ease-in-out infinite 1.5s; box-shadow: 0 0 8px rgba(41,182,232,0.5); }
.vp-particle--5 { width: 6px; height: 6px; background: rgba(41,182,232,0.4); top: 35%; left: 3%; animation: vpParticle 5.5s ease-in-out infinite 0.8s; box-shadow: 0 0 14px rgba(41,182,232,0.3); }
.vp-particle--6 { width: 4px; height: 4px; background: rgba(94,231,255,0.5); top: 40%; right: 5%; animation: vpParticle 4.2s ease-in-out infinite 2s; box-shadow: 0 0 10px rgba(94,231,255,0.4); }
.vp-particle--7 { width: 3px; height: 3px; background: #29B6E8; bottom: 35%; left: 12%; animation: vpParticle 5s ease-in-out infinite 0.3s; box-shadow: 0 0 8px rgba(41,182,232,0.5); }
.vp-particle--8 { width: 5px; height: 5px; background: rgba(168,85,247,0.5); top: 60%; right: 8%; animation: vpParticle 6s ease-in-out infinite 1.2s; box-shadow: 0 0 12px rgba(168,85,247,0.4); }

@keyframes vpParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-20px) scale(1.4); opacity: 1; }
}

/* Connection lines */
.vp-conn-line {
    position: absolute;
    height: 1px;
    z-index: 1;
}

.vp-conn-line--1 {
    width: 80px;
    top: 25%;
    left: 2%;
    background: linear-gradient(90deg, transparent, rgba(41,182,232,0.3), transparent);
    transform: rotate(-15deg);
    animation: vpConnPulse 3s ease-in-out infinite;
}

.vp-conn-line--2 {
    width: 60px;
    bottom: 30%;
    right: 3%;
    background: linear-gradient(90deg, transparent, rgba(94,231,255,0.25), transparent);
    transform: rotate(20deg);
    animation: vpConnPulse 3.5s ease-in-out infinite 0.5s;
}

.vp-conn-line--3 {
    width: 70px;
    top: 60%;
    left: 5%;
    background: linear-gradient(90deg, transparent, rgba(168,85,247,0.2), transparent);
    transform: rotate(-8deg);
    animation: vpConnPulse 4s ease-in-out infinite 1s;
}

@keyframes vpConnPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

/* ── Phone Device ── */
.vp-phone {
    position: relative;
    z-index: 5;
    width: 220px;
    height: 440px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
    border-radius: 36px;
    border: 2px solid rgba(41,182,232,0.2);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.5),
        0 0 40px rgba(41,182,232,0.1),
        inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    animation: vpPhoneFloat 5s ease-in-out infinite;
    transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
}

@keyframes vpPhoneFloat {
    0%, 100% { transform: perspective(800px) rotateY(-5deg) rotateX(2deg) translateY(0); }
    50% { transform: perspective(800px) rotateY(-5deg) rotateX(2deg) translateY(-14px); }
}

.vp-phone-notch {
    width: 90px;
    height: 22px;
    background: #0a0a14;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 6;
}

.vp-phone-screen {
    padding: 10px 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100% - 22px);
}

.vp-phone-status {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    padding: 4px 2px 12px;
}

.vp-phone-status i { font-size: 10px; margin-left: 4px; }

/* Mic button with rings */
.vp-phone-mic-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 0 24px;
}

.vp-phone-mic-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid;
}

.vp-phone-mic-ring--outer {
    width: 88px;
    height: 88px;
    border-color: rgba(41,182,232,0.15);
    animation: vpMicRing 3s ease-in-out infinite;
}

.vp-phone-mic-ring--inner {
    width: 72px;
    height: 72px;
    border-color: rgba(41,182,232,0.25);
    animation: vpMicRing 3s ease-in-out infinite 0.4s;
}

@keyframes vpMicRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.12); opacity: 0.8; }
}

.vp-phone-mic-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #29B6E8, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 25px rgba(41,182,232,0.4);
    animation: vpMicGlow 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes vpMicGlow {
    0%, 100% { box-shadow: 0 4px 25px rgba(41,182,232,0.4); }
    50% { box-shadow: 0 4px 40px rgba(41,182,232,0.7), 0 0 60px rgba(168,85,247,0.2); }
}

/* Equalizer bars on phone */
.vp-phone-eq {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 50px;
    width: 100%;
    margin: 8px 0 20px;
}

.vp-eq-bar {
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #29B6E8, #a855f7);
    height: var(--h);
    animation: vpEqBounce 0.7s ease-in-out infinite alternate;
    animation-delay: var(--d);
    opacity: 0.8;
}

@keyframes vpEqBounce {
    0% { height: 12%; opacity: 0.4; }
    100% { height: var(--h); opacity: 1; }
}

/* Phone text */
.vp-phone-label {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #e2e8f0;
    text-align: center;
    margin-bottom: 4px;
}

.vp-phone-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: rgba(148,163,184,0.7);
    text-align: center;
}



/* ── VOICE SHOWCASE — Image + Content ── */
.vp-showcase {
    padding: 50px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.vp-showcase::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(41,182,232,0.06), transparent 70%);
    pointer-events: none;
}

.vp-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.vp-showcase-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.vp-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.5s ease;
    mix-blend-mode: multiply;
}

.vp-showcase-img:hover img {
    transform: scale(1.03);
}

.vp-showcase-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: none;
}

.vp-showcase-content .vp-section-tag {
    margin-bottom: 18px;
}

.vp-showcase-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #071c3d;
    line-height: 1.25;
    margin-bottom: 18px;
}

.vp-showcase-desc {
    font-size: 16px;
    color: #5f6d85;
    line-height: 1.8;
    margin-bottom: 32px;
}

.vp-showcase-points {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.vp-showcase-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vp-showcase-point-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(41,182,232,0.1);
    color: #29B6E8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.vp-showcase-point:hover .vp-showcase-point-icon {
    background: linear-gradient(135deg, #29B6E8, #1a9fd0);
    color: #fff;
    transform: scale(1.08);
}

.vp-showcase-point h5 {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 4px;
}

.vp-showcase-point p {
    font-size: 14px;
    color: #5f6d85;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .vp-showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .vp-showcase-img { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 480px) {
    .vp-showcase { padding: 60px 0; }
    .vp-showcase-grid { gap: 30px; }
}


/* ── BENTO CAPABILITIES GRID ── */
.vp-bento {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f4f8 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.vp-bento::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(41,182,232,0.05), transparent 70%);
    pointer-events: none;
}

.vp-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.vp-bento-card {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 22px;
    padding: 32px 28px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.vp-bento-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41,182,232,0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vp-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(41,182,232,0.2);
}

.vp-bento-card:hover::before {
    opacity: 1;
}

.vp-bento-wide {
    grid-column: span 2;
}

.vp-bento-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.vp-bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    margin-bottom: 18px;
}

.vp-bento-icon-row .vp-bento-icon {
    margin-bottom: 0;
}

.vp-bento-badge-sm {
    padding: 4px 12px;
    background: rgba(41,182,232,0.08);
    border: 1px solid rgba(41,182,232,0.15);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #0284c7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vp-bento-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 10px;
}

.vp-bento-card p {
    font-size: 14px;
    color: #5f6d85;
    line-height: 1.7;
    margin: 0 0 16px;
}

.vp-bento-code {
    background: #0f172a;
    border-radius: 12px;
    padding: 16px 18px;
    margin-top: 6px;
}

.vp-bento-code code {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.8;
}

.vp-code-key {
    color: #38bdf8;
    font-weight: 700;
}

.vp-bento-visual {
    margin-top: 8px;
}

.vp-mini-wave {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 50px;
    padding: 10px 0;
}

.vp-mini-wave span {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, #8B5CF6, #c4b5fd);
    border-radius: 3px;
    animation: vpMiniWave 1.2s ease-in-out infinite alternate;
}

.vp-mini-wave span:nth-child(2n) { animation-delay: 0.2s; }
.vp-mini-wave span:nth-child(3n) { animation-delay: 0.4s; }

@keyframes vpMiniWave {
    0% { transform: scaleY(0.6); }
    100% { transform: scaleY(1); }
}

.vp-bento-meters {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.vp-meter {
    position: relative;
    height: 28px;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
}

.vp-meter-fill {
    height: 100%;
    width: var(--w);
    background: var(--c);
    border-radius: 8px;
    opacity: 0.15;
    transition: width 1.5s ease;
}

.vp-meter span {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

.vp-bento-shields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vp-shield {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #166534;
}

.vp-shield i {
    font-size: 13px;
}

@media (max-width: 1024px) {
    .vp-bento-grid { grid-template-columns: 1fr 1fr; }
    .vp-bento-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .vp-bento-grid { grid-template-columns: 1fr; }
    .vp-bento-wide { grid-column: span 1; }
}


/* ── VOICE SERVICES — Diagonal Stripes ── */
.vp-services { 
    padding: 80px 0;
     background: #f8fafc; 
     position: relative; 
     overflow: hidden; 
    }

.vp-services::after {
    content: ""; 
    position: absolute; 
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(250,73,74,0.03) 40px, rgba(250,73,74,0.03) 42px, transparent 42px, transparent 82px, rgba(253,199,51,0.03) 82px, rgba(253,199,51,0.03) 84px, transparent 84px, transparent 124px, rgba(74,211,72,0.03) 124px, rgba(74,211,72,0.03) 126px);
    pointer-events: none; 
    z-index: 0;
}

.vp-services .vp-section-inner {
     position: relative;
      z-index: 1; 
    }

.vp-section-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 32px;
 }

.vp-section-header {
     text-align: center;
      max-width: 700px;
       margin: 0 auto 20px; 
    }

.vp-section-tag {
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    padding: 5px 16px;
    background: rgba(41,182,232,0.08); 
    border: 1px solid rgba(41,182,232,0.15);
    border-radius: 50px; 
    color: #0284c7; 
    font-size: 12px; 
    font-weight: 700;
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    margin-bottom: 18px;
}

.vp-section-title { 
    font-family: 'Sora', sans-serif; 
    font-size: clamp(1.8rem, 3.2vw, 2.5rem); 
    font-weight: 800; 
    color: #071c3d; 
    line-height: 1.2; 
    margin-bottom: 16px; 
}
.vp-section-subtitle { 
    font-size: 17px; 
    color: #5f6d85; 
    line-height: 1.7; 
}

.vp-svc-grid {
     display: grid;
      grid-template-columns: repeat(3, 1fr);
       gap: 28px; 
    }

.vp-svc-card {
    background: #fff; 
    border: none; 
    border-radius: 22px;
     padding: 36px 30px;
    transition: all 0.35s ease; 
    position: relative;
     overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.vp-svc-card::before {
    content: ""; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 4px;
    transition: height 0.35s ease;
}

.vp-svc-card:nth-child(3n+1)::before { 
    background: linear-gradient(90deg, #fa494a, #fdc733); 
}
.vp-svc-card:nth-child(3n+2)::before {
     background: linear-gradient(90deg, #fdc733, #4ad348); 
    }
.vp-svc-card:nth-child(3n+3)::before {
     background: linear-gradient(90deg, #4ad348, #fa494a); }

.vp-svc-card::after {
    content: ""; 
    position: absolute; 
    bottom: -60px; 
    right: -60px;
    width: 120px; 
    height: 120px; 
    border-radius: 50%;
    opacity: 0; 
    transition: all 0.4s ease;
}

.vp-svc-card:nth-child(3n+1)::after {
     background: radial-gradient(circle, rgba(250,73,74,0.08), transparent 70%); 
    }
.vp-svc-card:nth-child(3n+2)::after { 
    background: radial-gradient(circle, rgba(253,199,51,0.08), transparent 70%);
 }
.vp-svc-card:nth-child(3n+3)::after {
     background: radial-gradient(circle, rgba(74,211,72,0.08), transparent 70%); 
    }

.vp-svc-card:hover { 
    transform: translateY(-8px); 
}
.vp-svc-card:hover::before {
     height: 5px; 
    }
.vp-svc-card:hover::after { 
    opacity: 1; bottom: -30px; right: -30px;
 }

.vp-svc-card:nth-child(3n+1):hover {
     box-shadow: 0 20px 50px rgba(250,73,74,0.1); 
    }
.vp-svc-card:nth-child(3n+2):hover { 
    box-shadow: 0 20px 50px rgba(253,199,51,0.1); 
}
.vp-svc-card:nth-child(3n+3):hover {
     box-shadow: 0 20px 50px rgba(74,211,72,0.1);
     }

.vp-svc-icon {
     width: 56px; 
     height: 56px;
      border-radius: 16px; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      margin-bottom: 22px; 
      font-size: 24px; 
    }
.vp-svc-card h4 { 
    font-family: 'Sora', sans-serif; 
    font-size: 20px; 
    font-weight: 700; 
    color: #071c3d; 
    margin-bottom: 12px; 
}
.vp-svc-card p { 
    font-size: 15px; 
    color: #5f6d85; 
    line-height: 1.7; 
    margin: 0; 
}


/* ── HOW IT WORKS — Dotted Circle Pattern ── */
.vp-how-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.vp-how-section::before {
    content: "";
    position: absolute;
    right: -200px;
    top: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41,182,232,0.06), transparent 70%);
    pointer-events: none;
}

.vp-how-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(250,73,74,0.04) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(253,199,51,0.035) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(74,211,72,0.035) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    background-position: 0 0, 20px 20px, 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.vp-how-header { 
    text-align: center;
     max-width: 700px;
      margin: 0 auto 55px;
       position: relative;
        z-index: 2; 
    }

.vp-how-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    background: rgba(41,182,232,0.08);
    border: 1px solid rgba(41,182,232,0.15);
    border-radius: 50px;
    color: #0284c7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.vp-how-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #071c3d;
    line-height: 1.2;
    margin-bottom: 16px;
}
.vp-how-subtitle {
    font-size: 17px;
    color: #5f6d85;
    line-height: 1.7;
}

.vp-steps-grid {
    display: grid;
     grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 32px; 
    position: relative; 
    z-index: 2;
}

.vp-step-card {
    background: #fff;
    border: 1px solid #e8f0fe;
    border-radius: 22px;
    padding: 32px 26px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.vp-step-card::after {
    content: ""; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    height: 3px;
}

.vp-step-card:nth-child(1) .vp-step-num { 
    background: linear-gradient(135deg, #fa494a, #ff7b7c); 
}
.vp-step-card:nth-child(2) .vp-step-num {
     background: linear-gradient(135deg, #fdc733, #ffe066); 
    }
.vp-step-card:nth-child(3) .vp-step-num {
     background: linear-gradient(135deg, #4ad348, #7de67c);
     }
.vp-step-card:nth-child(4) .vp-step-num { 
    background: linear-gradient(135deg, #fa494a, #fdc733);
 }

.vp-step-card:nth-child(1)::after { 
    background: linear-gradient(90deg, #fa494a, transparent);
 }
.vp-step-card:nth-child(2)::after {
     background: linear-gradient(90deg, #fdc733, transparent);
     }
.vp-step-card:nth-child(3)::after {
     background: linear-gradient(90deg, #4ad348, transparent); 
    }
.vp-step-card:nth-child(4)::after { 
    background: linear-gradient(90deg, #fa494a, #fdc733);
 }

.vp-step-card:hover {
    transform: translateY(-8px);
}

.vp-step-card:nth-child(1):hover {
    border-color: rgba(250,73,74,0.25);
    box-shadow: 0 20px 50px rgba(250,73,74,0.1);
}
.vp-step-card:nth-child(2):hover {
    border-color: rgba(253,199,51,0.3);
    box-shadow: 0 20px 50px rgba(253,199,51,0.1);
}
.vp-step-card:nth-child(3):hover {
    border-color: rgba(74,211,72,0.25);
    box-shadow: 0 20px 50px rgba(74,211,72,0.1);
}
.vp-step-card:nth-child(4):hover {
    border-color: rgba(250,73,74,0.25);
    box-shadow: 0 20px 50px rgba(250,73,74,0.08);
}

.vp-step-num {
    width: 50px;
     height: 50px;
      border-radius: 14px;
    display: flex;
     align-items: center; 
     justify-content: center;
    font-family: 'Sora', sans-serif; 
    font-size: 20px; 
    font-weight: 800; 
    color: #fff;
    margin: 0 auto 22px;
}

.vp-step-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}
.vp-step-card p {
    font-size: 14px;
    color: #5f6d85;
    line-height: 1.7;
    margin: 0;
}


/* ── USE CASES / TABS ── */
.vp-usecases {
     padding: 80px 0; 
     background: #fff;
     }

.vp-tabs-wrap { 
    display: flex; 
    justify-content: center;
     gap: 10px; 
     flex-wrap: wrap;
      margin-bottom: 45px; 
    }

.vp-tab-btn {
    padding: 10px 24px; 
    border-radius: 50px; 
    font-size: 14px;
     font-weight: 600;
    cursor: pointer;
     border: 1.5px solid #e2e8f0;
      background: #fff; 
      color: #5f6d85;
    transition: all 0.25s ease;
}

.vp-tab-btn:hover { 
    border-color: #29B6E8; 
    color: #29B6E8;
 }

.vp-tab-btn.active {
    background: linear-gradient(135deg, #29B6E8, #1a9fd0);
    color: #fff; 
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(41,182,232,0.3);
}

.vp-usecase-panel { 
    display: none; 
    animation: vpFadeIn 0.4s ease; }
.vp-usecase-panel.active { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: center; 
}

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

.vp-usecase-content h3 { 
    font-family: 'Sora', sans-serif; 
    font-size: 28px; 
    font-weight: 800; 
    color: #071c3d; 
    margin-bottom: 16px; 
    line-height: 1.25; 
}
.vp-usecase-content > p { 
    font-size: 16px; 
    color: #5f6d85; 
    line-height: 1.7; 
    margin-bottom: 28px;
 }
.vp-usecase-features { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}

.vp-uc-feature { 
    display: flex; 
    gap: 14px; 
    align-items: flex-start; 
}

.vp-uc-check {
    width: 28px;
     height: 28px;
      border-radius: 8px;
    background: rgba(41,182,232,0.1);
     color: #29B6E8;
    display: flex;
     align-items: center; 
     justify-content: center;
    flex-shrink: 0; 
    font-weight: 700; 
    font-size: 14px;
}

.vp-uc-feature h5 { 
    font-size: 15px; 
    font-weight: 700; 
    color: #071c3d; 
    margin-bottom: 3px; 
}
.vp-uc-feature p { 
    font-size: 13.5px;
     color: #5f6d85; 
     line-height: 1.5;
      margin: 0; 
    }

.vp-usecase-visual {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 24px;
     padding: 40px;
    display: flex;
     align-items: center; 
     justify-content: center;
    min-height: 360px; 
    position: relative;
     overflow: hidden;
}

.vp-call-demo {
     width: 100%;
      max-width: 340px; 
      background: #fff;
       border-radius: 18px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
         overflow: hidden; 
        }

.vp-call-topbar { 
    background: linear-gradient(135deg, #29B6E8, #1a9fd0); 
    padding: 14px 18px;
     display: flex; 
     align-items: center; 
     gap: 10px;
     }

.vp-call-avatar { 
    width: 32px; 
    height: 32px; 
    border-radius: 50%;
     background: rgba(255,255,255,0.2); 
     display: flex; 
     align-items: center; 
     justify-content: center; 
     font-size: 14px; 
     color: #fff; 
     font-weight: 700; 
    }
.vp-call-name { 
    color: #fff; 
    font-size: 14px; 
    font-weight: 700; 
}
.vp-call-status { 
    color: rgba(255,255,255,0.7); 
    font-size: 11px; 
}

.vp-call-body { 
    padding: 18px; 
    display: flex; flex-direction: column; gap: 12px; 
}
.vp-call-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
     padding: 10px 14px;
      border-radius: 12px; 
      background: #f0f9ff; 
    }
.vp-call-row-label { 
    font-size: 13px; 
    color: #5f6d85; 
    font-weight: 500;
 }
.vp-call-row-value { 
    font-size: 14px; 
    color: #071c3d;
     font-weight: 700; 
    }
.vp-call-row-value.green { 
    color: #16a34a;
 }
.vp-call-row-value.blue { 
    color: #2563eb; 
}
.vp-call-row-value.red { 
    color: #dc2626; 
}

.vp-call-tags { 
    display: flex; 
    gap: 6px; 
    flex-wrap: wrap; 
    padding-top: 4px; 
}
.vp-call-tag { 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 11px; 
    font-weight: 600; 
    border: 1.5px solid #29B6E8; 
    color: #0284c7; 
    background: #f0f9ff; 
}


/* ── ENTERPRISE FEATURES — Cross-Hatch Pattern ── */
.vp-enterprise {
     padding: 80px 0; 
     background: #f8fafc; 
     position: relative;
      overflow: hidden; 
    }

.vp-enterprise::after {
    content: ""; 
    position: absolute; 
    inset: 0;
    background:
        linear-gradient(45deg, rgba(250,73,74,0.025) 25%, transparent 25%, transparent 75%, rgba(250,73,74,0.025) 75%),
        linear-gradient(-45deg, rgba(74,211,72,0.025) 25%, transparent 25%, transparent 75%, rgba(74,211,72,0.025) 75%);
    background-size: 80px 80px;
     pointer-events: none; 
     z-index: 0;
}

.vp-enterprise .vp-section-inner { 
    position: relative; 
    z-index: 1; 
}

.vp-ent-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 24px; 
}

.vp-ent-card {
    background: #fff; 
    border: 1px solid #e8f0fe; 
    border-radius: 18px;
    padding: 30px 24px; 
    text-align: center; 
    transition: all 0.35s ease;
    position: relative; 
    overflow: hidden;
}

.vp-ent-card::after {
    content: ""; 
    position: absolute;
     bottom: 0; left: 50%;
      transform: translateX(-50%);
    width: 0; 
    height: 3px; 
    transition: width 0.4s ease; 
    border-radius: 3px 3px 0 0;
}

.vp-ent-card:nth-child(3n+1)::after { 
    background: linear-gradient(90deg, #fa494a, #fdc733);
 }
.vp-ent-card:nth-child(3n+2)::after { 
    background: linear-gradient(90deg, #fdc733, #4ad348); 
}
.vp-ent-card:nth-child(3n)::after { 
    background: linear-gradient(90deg, #4ad348, #fa494a); 
}

.vp-ent-card:hover { 
    transform: translateY(-6px); 
}
.vp-ent-card:hover::after { 
    width: 100%; 
}

.vp-ent-card:nth-child(3n+1):hover { 
    box-shadow: 0 15px 40px rgba(250,73,74,0.08); 
    border-color: rgba(250,73,74,0.15); 
}
.vp-ent-card:nth-child(3n+2):hover { 
    box-shadow: 0 15px 40px rgba(253,199,51,0.1); 
    border-color: rgba(253,199,51,0.15); 
}
.vp-ent-card:nth-child(3n):hover { 
    box-shadow: 0 15px 40px rgba(74,211,72,0.08); 
    border-color: rgba(74,211,72,0.15); 
}

.vp-ent-icon {
     width: 52px; 
     height: 52px;
      border-radius: 14px; 
      display: flex;
       align-items: center; 
       justify-content: center;
        margin: 0 auto 16px; 
        font-size: 24px; 
    }
.vp-ent-card h4 { 
    font-size: 16px; 
    font-weight: 700; 
    color: #071c3d; 
    margin-bottom: 8px; 
}
.vp-ent-card p { 
    font-size: 13.5px; 
    color: #5f6d85; 
    line-height: 1.6; 
    margin: 0; 
}


/* ── WHY NIMBUS VOICE — Corner Triangle Pattern ── */
.vp-why {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.vp-why::before {
    content: "";
    position: absolute;
    left: -200px;
    bottom: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41,182,232,0.05), transparent 70%);
    pointer-events: none;
}

.vp-why::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(250,73,74,0.03) 0%, transparent 25%),
        linear-gradient(225deg, rgba(253,199,51,0.025) 0%, transparent 25%),
        linear-gradient(315deg, rgba(74,211,72,0.03) 0%, transparent 25%);
    pointer-events: none;
    z-index: 0;
}

.vp-why .vp-section-inner { 
    position: relative; 
    z-index: 1; 
}

.vp-why-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px; 
}

.vp-why-card {
    background: #fff;
    border: 1px solid #e8f0fe;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.vp-why-card:nth-child(1) { 
    border-left-color: #fa494a; 
}
.vp-why-card:nth-child(2) { 
    border-left-color: #fdc733; 
}
.vp-why-card:nth-child(3) { 
    border-left-color: #4ad348; 
}
.vp-why-card:nth-child(4) {
     border-left-color: #fa494a; 
    }

.vp-why-card::after {
    content: ""; 
    position: absolute; 
    top: -20px; 
    right: -20px;
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    opacity: 0;
    transition: all 0.4s ease;
}

.vp-why-card:nth-child(1)::after { 
    background: radial-gradient(circle, rgba(250,73,74,0.1), transparent 70%); 
}
.vp-why-card:nth-child(2)::after {
     background: radial-gradient(circle, rgba(253,199,51,0.12), transparent 70%); 
    }
.vp-why-card:nth-child(3)::after { 
    background: radial-gradient(circle, rgba(74,211,72,0.1), transparent 70%); 
}
.vp-why-card:nth-child(4)::after { 
    background: radial-gradient(circle, rgba(250,73,74,0.1), transparent 70%);
 }

.vp-why-card:hover {
     transform: translateY(-4px);
     }
.vp-why-card:hover::after {
     opacity: 1; 
     top: -10px; 
     right: -10px;
     }

.vp-why-card:nth-child(1):hover {
    border-color: rgba(250,73,74,0.2);
    box-shadow: 0 15px 40px rgba(250,73,74,0.08);
}
.vp-why-card:nth-child(2):hover {
    border-color: rgba(253,199,51,0.25);
    box-shadow: 0 15px 40px rgba(253,199,51,0.08);
}
.vp-why-card:nth-child(3):hover {
    border-color: rgba(74,211,72,0.2);
    box-shadow: 0 15px 40px rgba(74,211,72,0.08);
}
.vp-why-card:nth-child(4):hover {
    border-color: rgba(250,73,74,0.2);
    box-shadow: 0 15px 40px rgba(250,73,74,0.08);
}

.vp-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(41,182,232,0.1), rgba(26,159,208,0.08));
    border: 1px solid rgba(41,182,232,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.vp-why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 8px;
}
.vp-why-card p {
    font-size: 14px;
    color: #5f6d85;
    line-height: 1.7;
    margin: 0;
}


/* ── DEVELOPER EXPERIENCE ── */
.vp-devx {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.vp-devx::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(41,182,232,0.04), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139,92,246,0.04), transparent 50%);
    pointer-events: none;
}

.vp-devx-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.vp-devx-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #071c3d;
    line-height: 1.25;
    margin-bottom: 18px;
}

.vp-devx-desc {
    font-size: 16px;
    color: #5f6d85;
    line-height: 1.8;
    margin-bottom: 32px;
}

.vp-devx-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vp-devx-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vp-devx-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(41,182,232,0.1), rgba(139,92,246,0.1));
    color: #29B6E8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.vp-devx-feat:hover .vp-devx-feat-icon {
    background: linear-gradient(135deg, #29B6E8, #8B5CF6);
    color: #fff;
    transform: scale(1.08);
}

.vp-devx-feat h5 {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 4px;
}

.vp-devx-feat p {
    font-size: 13.5px;
    color: #5f6d85;
    line-height: 1.6;
    margin: 0;
}

.vp-devx-code-panel {
    position: relative;
}

.vp-code-window {
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
}

.vp-code-toolbar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vp-code-dots {
    display: flex;
    gap: 7px;
}

.vp-code-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.vp-code-dots span:nth-child(1) { background: #ef4444; }
.vp-code-dots span:nth-child(2) { background: #f59e0b; }
.vp-code-dots span:nth-child(3) { background: #22c55e; }

.vp-code-filename {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #64748b;
}

.vp-code-body {
    padding: 24px 24px 28px;
}

.vp-code-line {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    line-height: 2;
    color: #e2e8f0;
}

.vp-code-blank { height: 12px; }

.vp-code-indent { padding-left: 28px; }

.vp-hl-kw { color: #c084fc; }
.vp-hl-fn { color: #38bdf8; }
.vp-hl-str { color: #4ade80; }
.vp-hl-bool { color: #fb923c; }
.vp-hl-cmt { color: #475569; font-style: italic; }

.vp-code-float-badge {
    position: absolute;
    bottom: -16px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    font-size: 13px;
    font-weight: 700;
    color: #16a34a;
    animation: vpActFloat 4s ease-in-out infinite;
}

.vp-code-float-badge i {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .vp-devx-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .vp-code-body { padding: 16px; }
    .vp-code-line { font-size: 11.5px; }
}



/* ── CTA ── */
.vp-cta-section { padding: 80px 0; background: #fff; }

.vp-cta-box {
    max-width: 900px; margin: 0 auto;
    background: linear-gradient(135deg, #29B6E8, #1a9fd0);
    border-radius: 28px; padding: 60px 50px; text-align: center;
    position: relative; overflow: hidden;
}

.vp-cta-box::before { content: ""; position: absolute; top: -80px; right: -80px; width: 250px; height: 250px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.vp-cta-box::after { content: ""; position: absolute; bottom: -60px; left: -60px; width: 200px; height: 200px; background: rgba(255,255,255,0.06); border-radius: 50%; }

.vp-cta-box h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.vp-cta-box p { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 32px; max-width: 550px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.vp-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.vp-cta-btn-white { padding: 14px 36px; background: #fff; color: #071c3d; font-size: 15px; font-weight: 700; border-radius: 50px; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.vp-cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.vp-cta-btn-outline { padding: 14px 36px; background: transparent; color: #fff; font-size: 15px; font-weight: 600; border-radius: 50px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.35); cursor: pointer; transition: all 0.3s ease; }
.vp-cta-btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .vp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .vp-hero-visual { display: none; }
    .vp-mobile-scene { width: 360px; height: 420px; }
    .vp-phone { width: 190px; height: 380px; }
    .vp-svc-grid { grid-template-columns: repeat(2, 1fr); }
    .vp-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .vp-ent-grid { grid-template-columns: repeat(2, 1fr); }
    .vp-usecase-panel.active { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .vp-hero { padding: 90px 0 60px; }
    .vp-mobile-scene { width: 300px; height: 380px; }
    .vp-phone { width: 170px; height: 340px; border-radius: 28px; }
    .vp-orbit-ring { width: 240px; height: 240px; }
    .vp-mob-glow { width: 250px; height: 250px; }
    .vp-conn-line { display: none; }
    .vp-svc-grid { grid-template-columns: 1fr; }
    .vp-steps-grid { grid-template-columns: 1fr; gap: 18px; }
    .vp-ent-grid { grid-template-columns: 1fr 1fr; }
    .vp-why-grid { grid-template-columns: 1fr; }
    .vp-cta-box { padding: 40px 28px; }
}

@media (max-width: 480px) {
    .vp-hero { padding: 80px 0 50px; }
    .vp-hero-inner { padding: 0 16px; }
    .vp-section-inner { padding: 0 20px; }
    .vp-steps-grid { padding: 0 20px; }
    .vp-ent-grid { grid-template-columns: 1fr; }
    .vp-hero-btns { flex-direction: column; }
    .vp-tab-btn { padding: 8px 18px; font-size: 13px; }
    .vp-waveform { gap: 3px; }
    .vp-wave-bar { width: 4px; }
}
