:root {
    --ch-color:     #F97316;
    --ch-color-dark:#ea580c;
    --ch-color-rgb: 249, 115, 22;
}

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

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

.mc-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249, 115, 22, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: mcGridShift 20s linear infinite;
}

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

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

.mc-circle-lg {
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    top: -80px; left: -60px;
    animation: mcDrift1 25s ease-in-out infinite;
}

.mc-circle-sm {
    width: 160px; height: 160px; border-radius: 50%;
    background: rgba(249, 115, 22, 0.10);
    bottom: 60px; right: 12%;
    animation: mcDrift2 18s ease-in-out infinite;
}

.mc-ring {
    width: 220px; height: 220px; border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.18);
    top: 20%; right: 8%;
    animation: mcDrift3 22s ease-in-out infinite, mcSpin 35s linear infinite;
}

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

.mc-dot { border-radius: 50%; background: rgba(249, 115, 22, 0.45); }
.mc-dot-1 { width: 5px; height: 5px; top: 18%; left: 25%; animation: mcDrift5 14s ease-in-out infinite, mcPulseAnim 3s infinite; }
.mc-dot-2 { width: 4px; height: 4px; top: 65%; left: 12%; animation: mcDrift6 11s ease-in-out infinite, mcPulseAnim 2.5s infinite 0.5s; }
.mc-dot-3 { width: 6px; height: 6px; top: 35%; right: 22%; animation: mcDrift7 16s ease-in-out infinite, mcPulseAnim 4s infinite 1s; }
.mc-dot-4 { width: 3px; height: 3px; top: 75%; right: 35%; animation: mcDrift8 13s ease-in-out infinite, mcPulseAnim 3.5s infinite; }

.mc-hex {
    width: 55px; height: 55px;
    background: rgba(249, 115, 22, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 22%; left: 55%;
    animation: mcDrift9 20s ease-in-out infinite, mcSpin 40s linear infinite;
}

.mc-square {
    width: 38px; height: 38px;
    border: 1.5px solid rgba(249, 115, 22, 0.18);
    border-radius: 8px;
    bottom: 32%; left: 8%;
    animation: mcDrift10 17s ease-in-out infinite, mcSpin 30s linear infinite reverse;
}

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

.mc-blob {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.10) 0%, transparent 60%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: -220px; right: -120px;
    animation: mcMorph 20s ease-in-out infinite, mcDrift1 30s ease-in-out infinite reverse;
}

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

/* Keyframes */
@keyframes mcDrift1 { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(30px, 20px); } 50% { transform: translate(-20px, 35px); } 75% { transform: translate(15px, -15px); } }
@keyframes mcDrift2 { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(-25px, 18px); } 66% { transform: translate(20px, -22px); } }
@keyframes mcDrift3 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-15px, 25px) rotate(180deg); } }
@keyframes mcDrift4 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -20px); } }
@keyframes mcDrift5 { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(15px, -10px); } 75% { transform: translate(-12px, 8px); } }
@keyframes mcDrift6 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(18px, 12px); } }
@keyframes mcDrift7 { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(-20px, -15px); } 66% { transform: translate(10px, 20px); } }
@keyframes mcDrift8 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-15px, -10px); } }
@keyframes mcDrift9 { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(25px, 15px); } 75% { transform: translate(-18px, -12px); } }
@keyframes mcDrift10 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(12px, 18px); } }
@keyframes mcSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes mcMorph { 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 mcPulseAnim { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.mc-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;
}

.mc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.30);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #c2410c;
    margin-bottom: 24px;
}

.mc-badge-dot {
    width: 8px;
    height: 8px;
    background: #F97316;
    border-radius: 50%;
    animation: mcPulse 2s infinite;
}

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

.mc-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;
}

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

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

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

.mc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
    color: #fff;
}

.mc-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;
}

.mc-btn-secondary:hover {
    border-color: #F97316;
    color: #c2410c;
    background: rgba(249, 115, 22, 0.08);
}

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

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

.mc-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ea580c;
    margin-bottom: 4px;
}

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

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

/* Hero Image */
.mc-hero-visual { display: flex; align-items: center; justify-content: center; }

.mc-hero-img-wrap { position: relative; display: flex; align-items: center; justify-content: center; }

.mc-hero-img {
    max-width: 100%; height: auto; max-height: 440px;
    filter: drop-shadow(0 25px 60px rgba(249, 115, 22, 0.18));
    
    position: relative; z-index: 2;
}

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

.mc-glow-ring {
    position: absolute; width: 340px; height: 340px; border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.20);
    top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
    animation: mcGlowPulse 4s ease-in-out infinite;
}
.mc-glow-ring::before {
    content: ''; position: absolute; inset: -20px; border-radius: 50%;
    border: 1px solid rgba(249, 115, 22, 0.12);
    animation: mcSpin 25s linear infinite;
}
.mc-glow-ring::after {
    content: ''; position: absolute; inset: 15px; border-radius: 50%;
    border: 1px dashed rgba(249, 115, 22, 0.15);
    animation: mcSpin 20s linear infinite reverse;
}
@keyframes mcGlowPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(249, 115, 22, 0.05), inset 0 0 30px rgba(249, 115, 22, 0.02); opacity: 0.7; }
    50% { box-shadow: 0 0 60px rgba(249, 115, 22, 0.12), inset 0 0 50px rgba(249, 115, 22, 0.04); opacity: 1; }
}

.mc-float-el { position: absolute; border-radius: 50%; z-index: 1; }
.mc-float-1 {
    width: 70px; height: 70px;
    background: rgba(249, 115, 22, 0.10); border: 2px solid rgba(249, 115, 22, 0.22);
    top: 5%; right: -10px;
    animation: mcFloat1 4.5s ease-in-out infinite; backdrop-filter: blur(6px);
}
.mc-float-2 {
    width: 45px; height: 45px;
    background: rgba(253, 199, 51, 0.14); border: 1.5px solid rgba(253, 199, 51, 0.25);
    bottom: 12%; left: -8px;
    animation: mcFloat2 3.8s ease-in-out infinite; backdrop-filter: blur(6px);
}
.mc-float-3 {
    width: 28px; height: 28px;
    background: rgba(37, 211, 102, 0.15); border: 1.5px solid rgba(37, 211, 102, 0.25);
    top: 55%; right: 2%;
    animation: mcFloat3 5.2s ease-in-out infinite; backdrop-filter: blur(6px);
}
@keyframes mcFloat1 { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-12px) scale(1.05); } }
@keyframes mcFloat2 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(8px, -10px) rotate(15deg); } }
@keyframes mcFloat3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }


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

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

.mc-mini-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #F97316;
    background: rgba(249, 115, 22, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: mcFloatBadge 3s ease-in-out infinite;
}

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

.mc-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;
}

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

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

.mc-cap-card {
    background: #fff7ed;
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s ease;
}

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

.mc-cap-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: #F97316;
}

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

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


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

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

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

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

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

.mc-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);
}

.mc-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;
}

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

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

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

.mc-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;
    animation: mcShimmer 3s ease-in-out infinite;
}

@keyframes mcShimmer {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.0);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(249, 115, 22, 0.15);
    }
}

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

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


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

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

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

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

.mc-step:nth-child(1) .mc-step-num {
    background: linear-gradient(135deg, #F97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mc-step:nth-child(3) .mc-step-num {
    background: linear-gradient(135deg, #fa494a, #d93c3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.mc-step-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #ea580c);
    margin-top: 32px;
    border-radius: 3px;
    flex-shrink: 0;
}


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

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

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

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

.mc-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);
}

.mc-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;
}

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

.mc-usecase-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

.mc-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;
}

.mc-usecase-card:nth-child(1) .mc-usecase-icon {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

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

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

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

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

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


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

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

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

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

.mc-cta-content .mc-mini-badge {
    background: rgba(249, 115, 22, 0.2);
    color: #fdba74;
}

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

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

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

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

.mc-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);
}

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

.mc-dot-green {
    width: 10px;
    height: 10px;
    background: #F97316;
    border-radius: 50%;
    animation: mcPulse 2s infinite;
}

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .mc-capabilities {
        gap: 16px;
    }

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

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