:root {
    --ch-color:     #0EA5E9;
    --ch-color-dark:#0284c7;
    --ch-color-rgb: 14, 165, 233;
}

/* ========================= HERO ========================= */
.ivr-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #F0F9FF;
}

.ivr-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ivr-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: ivrGridShift 20s linear infinite;
}

@keyframes ivrGridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.ivr-shape { position: absolute; pointer-events: none; }

.ivr-circle-lg {
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    top: -80px; left: -60px;
    animation: ivrDrift1 25s ease-in-out infinite;
}

.ivr-circle-sm {
    width: 160px; height: 160px; border-radius: 50%;
    background: rgba(14, 165, 233, 0.12);
    bottom: 60px; right: 12%;
    animation: ivrDrift2 18s ease-in-out infinite;
}

.ivr-ring {
    width: 220px; height: 220px; border-radius: 50%;
    border: 2px solid rgba(14, 165, 233, 0.18);
    top: 20%; right: 8%;
    animation: ivrDrift3 22s ease-in-out infinite, ivrSpin 35s linear infinite;
}

.ivr-ring-2 {
    width: 120px; height: 120px; border-radius: 50%;
    border: 1.5px solid rgba(253, 199, 51, 0.15);
    bottom: 25%; left: 5%;
    animation: ivrDrift4 19s ease-in-out infinite, ivrSpin 28s linear infinite reverse;
}

.ivr-dot { border-radius: 50%; background: rgba(14, 165, 233, 0.45); }
.ivr-dot-1 { width: 5px; height: 5px; top: 18%; left: 25%; animation: ivrDrift5 14s ease-in-out infinite, ivrPulseAnim 3s infinite; }
.ivr-dot-2 { width: 4px; height: 4px; top: 65%; left: 12%; animation: ivrDrift6 11s ease-in-out infinite, ivrPulseAnim 2.5s infinite 0.5s; }
.ivr-dot-3 { width: 6px; height: 6px; top: 35%; right: 22%; animation: ivrDrift7 16s ease-in-out infinite, ivrPulseAnim 4s infinite 1s; }
.ivr-dot-4 { width: 3px; height: 3px; top: 75%; right: 35%; animation: ivrDrift8 13s ease-in-out infinite, ivrPulseAnim 3.5s infinite; }

.ivr-hex {
    width: 55px; height: 55px;
    background: rgba(14, 165, 233, 0.10);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 22%; left: 55%;
    animation: ivrDrift9 20s ease-in-out infinite, ivrSpin 40s linear infinite;
}

.ivr-square {
    width: 38px; height: 38px;
    border: 1.5px solid rgba(14, 165, 233, 0.18);
    border-radius: 8px;
    bottom: 32%; left: 8%;
    animation: ivrDrift10 17s ease-in-out infinite, ivrSpin 30s linear infinite reverse;
}

.ivr-cross {
    width: 22px; height: 22px;
    top: 12%; right: 18%;
    animation: ivrDrift5 15s ease-in-out infinite reverse;
}
.ivr-cross::before, .ivr-cross::after {
    content: ''; position: absolute; background: rgba(14, 165, 233, 0.28); border-radius: 2px;
}
.ivr-cross::before { width: 100%; height: 3px; top: 50%; transform: translateY(-50%); }
.ivr-cross::after { width: 3px; height: 100%; left: 50%; transform: translateX(-50%); }

.ivr-blob {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 60%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: -220px; right: -120px;
    animation: ivrMorph 20s ease-in-out infinite, ivrDrift1 30s ease-in-out infinite reverse;
}

.ivr-blob-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(253, 199, 51, 0.08) 0%, transparent 60%);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    top: -120px; right: 30%;
    animation: ivrMorph 25s ease-in-out infinite reverse, ivrDrift3 35s ease-in-out infinite;
}

/* Keyframes */
@keyframes ivrDrift1 { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(30px, 20px); } 50% { transform: translate(-20px, 35px); } 75% { transform: translate(15px, -15px); } }
@keyframes ivrDrift2 { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(-25px, 18px); } 66% { transform: translate(20px, -22px); } }
@keyframes ivrDrift3 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-15px, 25px) rotate(180deg); } }
@keyframes ivrDrift4 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -20px); } }
@keyframes ivrDrift5 { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(15px, -10px); } 75% { transform: translate(-12px, 8px); } }
@keyframes ivrDrift6 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(18px, 12px); } }
@keyframes ivrDrift7 { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(-20px, -15px); } 66% { transform: translate(10px, 20px); } }
@keyframes ivrDrift8 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-15px, -10px); } }
@keyframes ivrDrift9 { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(25px, 15px); } 75% { transform: translate(-18px, -12px); } }
@keyframes ivrDrift10 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(12px, 18px); } }
@keyframes ivrSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ivrMorph { 0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 25% { border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; } 50% { border-radius: 50% 60% 30% 70% / 60% 40% 70% 30%; } 75% { border-radius: 30% 70% 60% 40% / 50% 30% 50% 60%; } }
@keyframes ivrPulseAnim { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.ivr-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ivr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.10);
    border: 1px solid rgba(14, 165, 233, 0.25);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #0284c7;
    margin-bottom: 24px;
}

.ivr-badge-dot {
    width: 8px;
    height: 8px;
    background: #0EA5E9;
    border-radius: 50%;
    animation: ivrPulse 2s infinite;
}

@keyframes ivrPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.ivr-hero-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ivr-hero-desc {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.ivr-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.ivr-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0EA5E9, #0284c7);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.ivr-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
    color: #fff;
}

.ivr-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #0a1628;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid rgba(10, 22, 40, 0.25);
    text-decoration: none;
    transition: all 0.3s;
}

.ivr-btn-secondary:hover {
    border-color: #0EA5E9;
    color: #0284c7;
    background: rgba(14, 165, 233, 0.08);
}

.ivr-hero-stats {
    display: flex;
    gap: 40px;
}

.ivr-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ivr-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0284c7;
    margin-bottom: 4px;
}

.ivr-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0a1628;
}

.ivr-stat-label {
    font-size: 13px;
    color: #5b6780;
}

/* ========================= Flow Diagram ========================= */
.ivr-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ivr-flow {
    position: relative;
    width: 480px;
    height: 450px;
}

.ivr-fc {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(14, 165, 233, 0.20);
    border-radius: 16px;
    padding: 18px 22px;
    backdrop-filter: blur(16px);
    z-index: 2;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.ivr-fc:hover {
    border-color: rgba(14, 165, 233, 0.45);
}

.ivr-fc-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #f97316;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ivr-fc-label i { font-size: 13px; }

.ivr-fc-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 6px;
}

.ivr-fc-signal {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #7a8599;
    margin-bottom: 4px;
}

.ivr-fc-desc {
    font-size: 13px;
    color: #5b6780;
    line-height: 1.45;
}

.ivr-fc-1 {
    top: 0; right: 0; width: 225px;
    animation: ivrCardGlow 3s ease-in-out infinite;
}

.ivr-fc-2 {
    top: 120px; left: -20px; width: 215px;
    animation: ivrCardGlow 3s ease-in-out infinite 0.6s;
}

.ivr-fc-3 {
    bottom: -30px; left: 0; width: 230px;
    animation: ivrCardGlow 3s ease-in-out infinite 1.2s;
}

.ivr-fc-4 {
    bottom: 30px; right: 0; width: 190px;
    text-align: center;
    border-color: rgba(249, 115, 22, 0.3);
    animation: ivrImpactGlow 2.5s ease-in-out infinite;
}

.ivr-fc-big {
    font-size: 13px;
    color: #5b6780;
    margin-top: 4px;
}

.ivr-fc-big span {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0EA5E9;
    display: block;
    line-height: 1.1;
    margin-bottom: 2px;
}

.ivr-fc-impact {
    font-family: 'Sora', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #f97316;
    line-height: 1;
    margin: 8px 0 4px;
}

.ivr-fc-impact span { font-size: 30px; }

.ivr-fc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.ivr-fc-pills span {
    padding: 5px 13px;
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.20);
    font-size: 11px;
    font-weight: 500;
    color: #4a5568;
    background: rgba(14, 165, 233, 0.06);
}

@keyframes ivrCardGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(14, 165, 233, 0.04); }
    50% { box-shadow: 0 0 30px rgba(14, 165, 233, 0.12), 0 0 60px rgba(14, 165, 233, 0.04); }
}

@keyframes ivrImpactGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.06), inset 0 0 15px rgba(249, 115, 22, 0.02);
        border-color: rgba(249, 115, 22, 0.25);
    }
    50% {
        box-shadow: 0 0 45px rgba(249, 115, 22, 0.18), inset 0 0 30px rgba(249, 115, 22, 0.04);
        border-color: rgba(249, 115, 22, 0.5);
    }
}

.ivr-flow-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ivr-arrow-line {
    animation: ivrArrowFlow 1.2s linear infinite;
}

@keyframes ivrArrowFlow {
    from { stroke-dashoffset: 20; }
    to { stroke-dashoffset: 0; }
}


/* ========================= WHY SECTION ========================= */
.ivr-why {
    padding: 100px 0;
    background: #fff;
}

.ivr-section-header {
    margin-bottom: 60px;
}

.ivr-mini-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #25D366;
    background: rgba(37,211,102,0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: ivrFloatBadge 3s ease-in-out infinite;
}

@keyframes ivrFloatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.ivr-section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 800;
    color: #071c3d;
    line-height: 1.15;
    margin-bottom: 18px;
}

.ivr-section-header p {
    font-size: 18px;
    color: #5b6780;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.ivr-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.ivr-cap-card {
    background: #ecfdf5;
    border: 1px solid rgba(37,211,102,0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s ease;
}

.ivr-cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ivr-cap-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

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

.ivr-cap-card p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.6;
}


/* ========================= FEATURES ========================= */
.ivr-features {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #ecfdf5;
}

.ivr-features::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(37,211,102,0.15);
    border-radius: 50%;
    filter: blur(90px);
    top: -100px;
    left: -80px;
    z-index: 0;
}

.ivr-features::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(37,211,102,0.12);
    border-radius: 50%;
    filter: blur(90px);
    bottom: -100px;
    right: -80px;
    z-index: 0;
}

.ivr-features .container {
    position: relative;
    z-index: 2;
}

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

.ivr-feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 35px 28px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.ivr-feature-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: -70px;
    right: -70px;
    transition: 0.5s;
    z-index: -1;
    opacity: 0.85;
}

.ivr-feature-card:nth-child(1)::before { background: #25D366; }
.ivr-feature-card:nth-child(2)::before { background: #fdc733; }
.ivr-feature-card:nth-child(3)::before { background: #fa494a; }
.ivr-feature-card:nth-child(4)::before { background: #15aaff; }
.ivr-feature-card:nth-child(5)::before { background: #25D366; }
.ivr-feature-card:nth-child(6)::before { background: #fdc733; }

.ivr-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ivr-feature-card:hover::before {
    transform: scale(1.5);
}

.ivr-feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
    transition: 0.4s;
}

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

.ivr-feature-card p {
    font-size: 15px;
    color: #5b6780;
    line-height: 1.7;
}


/* ========================= HOW IT WORKS ========================= */
.ivr-how {
    padding: 100px 0;
    background: #fff;
}

.ivr-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

.ivr-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.ivr-step-num {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
}

.ivr-step:nth-child(1) .ivr-step-num {
    background: linear-gradient(135deg, #25D366, #1ea855);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ivr-step:nth-child(3) .ivr-step-num {
    background: linear-gradient(135deg, #15aaff, #0d8ecf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ivr-step:nth-child(5) .ivr-step-num {
    background: linear-gradient(135deg, #fdc733, #e5b200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.ivr-step-content p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.7;
}

.ivr-step-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #25D366, #1ea855);
    margin-top: 32px;
    border-radius: 3px;
    flex-shrink: 0;
}


/* ========================= USE CASES ========================= */
.ivr-usecases {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.ivr-usecases::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(37,211,102,0.12);
    border-radius: 50%;
    filter: blur(90px);
    top: 50px;
    right: -60px;
    z-index: 0;
}

.ivr-usecases .container {
    position: relative;
    z-index: 2;
}

.ivr-usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ivr-usecase-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 35px 24px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.ivr-usecase-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: -90px;
    left: -70px;
    transition: 0.5s;
    z-index: -1;
    opacity: 0.8;
}

.ivr-usecase-card:nth-child(1)::before { background: #25D366; }
.ivr-usecase-card:nth-child(2)::before { background: #fa494a; }
.ivr-usecase-card:nth-child(3)::before { background: #fdc733; }
.ivr-usecase-card:nth-child(4)::before { background: #15aaff; }

.ivr-usecase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ivr-usecase-card:hover::before {
    transform: scale(1.6);
}

.ivr-usecase-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.ivr-usecase-card:nth-child(1) .ivr-usecase-icon {
    background: rgba(37,211,102,0.1);
    color: #25D366;
}

.ivr-usecase-card:nth-child(2) .ivr-usecase-icon {
    background: rgba(250,73,74,0.1);
    color: #fa494a;
}

.ivr-usecase-card:nth-child(3) .ivr-usecase-icon {
    background: rgba(253,199,51,0.1);
    color: #d4a500;
}

.ivr-usecase-card:nth-child(4) .ivr-usecase-icon {
    background: rgba(21,170,255,0.1);
    color: #15aaff;
}

.ivr-usecase-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}

.ivr-usecase-card p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.6;
}


/* ========================= CTA ========================= */
.ivr-cta {
    padding: 100px 0;
    background: #fff;
}

.ivr-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #071a10 0%, #0d2e1a 50%, #134225 100%);
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.ivr-cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,211,102,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ivr-cta-content {
    position: relative;
    z-index: 1;
}

.ivr-cta-content .ivr-mini-badge {
    background: rgba(37,211,102,0.2);
    color: #86efac;
}

.ivr-cta-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.ivr-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.ivr-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ivr-cta-visual {
    position: relative;
    z-index: 1;
}

.ivr-cta-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.ivr-cta-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.ivr-dot-green {
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 50%;
    animation: ivrPulse 2s infinite;
}

.ivr-cta-card-top span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.ivr-cta-metrics {
    display: flex;
    gap: 32px;
}

.ivr-cta-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ivr-metric-num {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.ivr-metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}


/* ========================= RESPONSIVE ========================= */
@media (max-width: 991px) {
    .ivr-hero-inner {
        grid-template-columns: 1fr;
        padding: 120px 24px 60px;
    }

    .ivr-hero-visual {
        display: none;
    }

    .ivr-hero-content {
        text-align: center;
    }

    .ivr-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .ivr-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .ivr-hero-actions {
        justify-content: center;
    }

    .ivr-hero-stats {
        justify-content: center;
    }

    .ivr-capabilities {
        grid-template-columns: 1fr;
    }

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

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

    .ivr-cta-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

    .ivr-why {
        padding: 70px 0;
    }

    .ivr-features {
        padding: 70px 0;
    }

    .ivr-section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .ivr-hero-inner {
        padding: 100px 20px 40px;
    }

    .ivr-hero-content h1 {
        font-size: 30px;
    }

    .ivr-hero-desc {
        font-size: 15px;
    }

    .ivr-hero-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .ivr-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

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

    .ivr-usecase-grid {
        grid-template-columns: 1fr;
    }

    .ivr-steps {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .ivr-step-line {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }

    .ivr-step {
        padding: 0 12px;
    }

    .ivr-cta-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .ivr-why {
        padding: 50px 0;
    }

    .ivr-features {
        padding: 50px 0;
    }

    .ivr-section-header h2 {
        font-size: 26px;
    }

    .ivr-section-header p {
        font-size: 15px;
    }

    .ivr-cta-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .ivr-feature-card {
        padding: 24px;
    }

    .ivr-usecase-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .ivr-hero-inner {
        padding: 90px 16px 32px;
    }

    .ivr-hero-content h1 {
        font-size: 26px;
    }

    .ivr-hero-desc {
        font-size: 14px;
    }

    .ivr-hero-stats {
        gap: 12px;
    }

    .ivr-stat-num {
        font-size: 20px;
    }

    .ivr-stat-label {
        font-size: 11px;
    }

    .ivr-stat-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .ivr-why {
        padding: 40px 0;
    }

    .ivr-features {
        padding: 40px 0;
    }

    .ivr-section-header h2 {
        font-size: 22px;
    }

    .ivr-section-header p {
        font-size: 14px;
    }

    .ivr-step-num {
        font-size: 36px;
    }

    .ivr-cta-wrapper {
        padding: 24px 16px;
    }

    .ivr-capabilities {
        gap: 16px;
    }

    .ivr-features-grid {
        gap: 16px;
    }

    .ivr-usecase-grid {
        gap: 16px;
    }
}
