:root {
    --dark-bg: #050B32;
    --dark-surface: #092052;
    --dark-card: #0b1a4a;
    --teal: #097CAC;
    --teal-light: #3ba8d4;
    --teal-glow: rgba(9, 124, 172, 0.3);
    --accent-gradient: linear-gradient(135deg, #097CAC, #3ba8d4, #06b6d4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

@keyframes lineDrop {
    0% { top: -50%; }
    100% { top: 150%; }
}
@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    25% { opacity: 0.6; }
    50% { opacity: 0.8; transform: translateY(-40px) scale(1.5); }
    75% { opacity: 0.4; }
}
@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 10px var(--teal-glow); transform: translateX(-50%) scale(1); }
    50% { box-shadow: 0 0 30px rgba(9,124,172,0.6); transform: translateX(-50%) scale(1.3); }
}
@keyframes ctaLineMove {
    0% { left: -200px; }
    100% { left: 110%; }
}

.rc-page {
    p { margin-bottom: 0; }

    .bg-lines {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }
    .bg-lines .line {
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        background: linear-gradient(180deg, transparent, rgba(9,124,172,0.08), transparent);
    }
    .bg-lines .line::after {
        content: '';
        display: block;
        position: absolute;
        top: -50%;
        left: 0;
        width: 100%;
        height: 15vh;
        background: linear-gradient(180deg, transparent, var(--teal-glow), transparent);
        animation: lineDrop 6s ease-in-out infinite;
    }
    .bg-lines .line:nth-child(1) { left: 10%; }
    .bg-lines .line:nth-child(1)::after { animation-delay: 0s; animation-duration: 7s; }
    .bg-lines .line:nth-child(2) { left: 30%; }
    .bg-lines .line:nth-child(2)::after { animation-delay: 1.5s; animation-duration: 8s; }
    .bg-lines .line:nth-child(3) { left: 50%; }
    .bg-lines .line:nth-child(3)::after { animation-delay: 3s; animation-duration: 6s; }
    .bg-lines .line:nth-child(4) { left: 70%; }
    .bg-lines .line:nth-child(4)::after { animation-delay: 4.5s; animation-duration: 9s; }
    .bg-lines .line:nth-child(5) { left: 90%; }
    .bg-lines .line:nth-child(5)::after { animation-delay: 2s; animation-duration: 7.5s; }

    .particles {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 0;
    }
    .particle {
        position: absolute;
        width: 4px; height: 4px;
        background: var(--teal);
        border-radius: 50%;
        opacity: 0;
        animation: particleFloat 8s ease-in-out infinite;
    }
    .particle:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; }
    .particle:nth-child(2) { left: 45%; top: 60%; animation-delay: 2s; }
    .particle:nth-child(3) { left: 75%; top: 30%; animation-delay: 4s; }
    .particle:nth-child(4) { left: 25%; top: 80%; animation-delay: 1s; }
    .particle:nth-child(5) { left: 85%; top: 70%; animation-delay: 3s; }
    .particle:nth-child(6) { left: 55%; top: 10%; animation-delay: 5s; }
    .particle:nth-child(7) { left: 5%;  top: 50%; animation-delay: 1.5s; }
    .particle:nth-child(8) { left: 65%; top: 90%; animation-delay: 3.5s; }

    .section-pad { padding: 100px 0; }
    .bg-surface { background-color: var(--dark-surface); }
    .bg-card { background-color: var(--dark-card); }
    .text-teal { color: var(--teal) !important; }
    .text-gray { color: #94a3b8; }
    .z-1 { position: relative; z-index: 1; }

    .fs-7 { font-size: 16px !important; }
    .fs-8 { font-size: 15px !important; }
    .fs-9 { font-size: 14px !important; }
    .fs-10 { font-size: 12px !important; }

    .feature-icon-circle-sm {
        width: 44px; height: 44px;
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    .feature-icon-circle-lg {
        width: 100px; height: 100px;
        font-size: 2.5rem;
    }

    .cta-form-wrapper {
        min-height: 600px;
    }
    .cta-form-iframe {
        width: 100%;
        height: 100%;
        min-height: 580px;
        border: none;
        border-radius: 14px;
    }

    .structure-icon { font-size: 2rem; }

    .btn-teal {
        background: var(--accent-gradient);
        border: none;
        color: #fff;
        padding: 14px 36px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.4s ease;
        box-shadow: 0 4px 25px var(--teal-glow);
    }
    .btn-teal:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 40px rgba(9,124,172,0.5);
        color: #fff;
    }
    .btn-outline-light-custom {
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        padding: 14px 36px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        background: transparent;
        transition: all 0.4s ease;
    }
    .btn-outline-light-custom:hover {
        background: rgba(255,255,255,0.08);
        border-color: var(--teal);
        color: #fff;
        transform: translateY(-3px);
    }

    .section-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--teal-light);
        margin-bottom: 12px;
        padding: 6px 16px;
        border: 1px solid rgba(9,124,172,0.3);
        border-radius: 50px;
    }
    .section-title {
        color: #fff;
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;

    }
    h1 span, h2 span, h3 span , h4 span, h5 span, h6 span {
        font-family: "poppins_700" !important;
    }
    .section-subtitle {
        font-size: 1.1rem;
        color: #94a3b8;
        max-width: 800px;
    }

    .hero-section {
        min-height: 90vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding-top: 60px;
    }
    .hero-glow {
        position: absolute;
        width: 600px; height: 600px;
        border-radius: 50%;
        filter: blur(150px);
        opacity: 0.15;
        pointer-events: none;
    }
    .hero-glow-1 { background: var(--teal); top: -150px; left: -100px; }
    .hero-glow-2 { background: #6366f1; bottom: -200px; right: -100px; }

    .hero-title {
        font-size: 4.2rem;
        font-weight: 900;
        line-height: 1.1;
    }
    .hero-highlight {
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .hero-desc {
        font-size: 1.2rem;
        color: #94a3b8;
        line-height: 1.7;
        max-width: 550px;
    }

    .hero-visual {
        position: relative;
    }
    .hero-visual .orbit-ring {
        position: absolute;
        border: 1px solid rgba(9,124,172,0.2);
        border-radius: 50%;
        animation: orbitSpin 20s linear infinite;
    }
    .hero-visual .orbit-ring:nth-child(1) {
        width: 350px; height: 350px;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
    }
    .hero-visual .orbit-ring:nth-child(2) {
        width: 250px; height: 250px;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        animation-direction: reverse;
        animation-duration: 15s;
    }
    .hero-visual .orbit-ring:nth-child(3) {
        width: 150px; height: 150px;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        animation-duration: 10s;
    }
    .hero-visual .orbit-dot {
        position: absolute;
        width: 10px; height: 10px;
        background: var(--teal);
        border-radius: 50%;
        box-shadow: 0 0 15px var(--teal-glow);
    }
    .hero-card-float {
        position: absolute;
        background: rgba(11, 26, 74, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(9,124,172,0.2);
        border-radius: 16px;
        padding: 20px 24px;
        animation: floatUpDown 4s ease-in-out infinite;
    }
    .hero-card-float:nth-child(4) { top: 10%; right: 5%; animation-delay: 0s; }
    .hero-card-float:nth-child(5) { bottom: 15%; left: 0%; animation-delay: 2s; }

    .stats-bar {
        background: var(--dark-surface);
        border-top: 1px solid rgba(9,124,172,0.15);
        border-bottom: 1px solid rgba(9,124,172,0.15);
        position: relative;
        z-index: 1;
    }
    .stat-item {
        text-align: center;
        padding: 30px 15px;
        position: relative;
    }
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(9,124,172,0.3), transparent);
    }
    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .stat-text {
        font-size: 0.85rem;
        color: #94a3b8;
        font-weight: 500;
        margin-top: 4px;
    }

    .offering-card {
        background: var(--dark-card);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 20px;
        padding: 40px 32px;
        position: relative;
        overflow: hidden;
        transition: all 0.5s ease;
    }
    .offering-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 3px;
        background: var(--accent-gradient);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }
    .offering-card:hover::before { transform: scaleX(1); }
    .offering-card:hover {
        border-color: rgba(9,124,172,0.3);
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .offering-card.featured {
        border-color: rgba(9,124,172,0.3);
        box-shadow: 0 0 40px rgba(9,124,172,0.1);
    }
    .offering-card.featured::before { transform: scaleX(1); }

    .offering-icon {
        width: 56px; height: 56px;
        background: linear-gradient(135deg, rgba(9,124,172,0.2), rgba(9,124,172,0.05));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--teal-light);
        margin-bottom: 24px;
    }
    .offering-limit {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--teal-light);
        margin-bottom: 12px;
    }
    .offering-card .check-list {
        list-style: none;
        padding: 0;
        margin: 20px 0 28px;
    }
    .offering-card .check-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.88rem;
        color: #cbd5e1;
        margin-bottom: 12px;
    }
    .offering-card .check-list li i {
        color: var(--teal);
        font-size: 0.85rem;
    }
    .card-link {
        color: var(--teal-light);
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: gap 0.3s ease;
    }
    .card-link:hover { gap: 12px; color: #fff; }

    .timeline-wrapper { position: relative; }
    .timeline-line {
        position: absolute;
        left: 50%;
        top: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, transparent, var(--teal), var(--teal), transparent);
        transform: translateX(-50%);
    }
    .timeline-line .pulse-dot {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 12px; height: 12px;
        background: var(--teal);
        border-radius: 50%;
        box-shadow: 0 0 20px var(--teal-glow);
        animation: pulseDot 2s ease-in-out infinite;
    }
    .timeline-line .pulse-dot:nth-child(1) { top: 12%; }
    .timeline-line .pulse-dot:nth-child(2) { top: 37%; }
    .timeline-line .pulse-dot:nth-child(3) { top: 62%; }
    .timeline-line .pulse-dot:nth-child(4) { top: 87%; }

    .step-card {
        background: var(--dark-card);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 20px;
        padding: 36px;
        position: relative;
        transition: all 0.4s ease;
    }
    .step-card:hover {
        border-color: rgba(9,124,172,0.3);
        box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    }
    .step-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px; height: 44px;
        background: var(--accent-gradient);
        border-radius: 12px;
        font-weight: 800;
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .feature-box {
        background: var(--dark-card);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 20px;
        padding: 36px 28px;
        text-align: center;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
    }
    .feature-box::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0;
        width: 100%; height: 2px;
        background: var(--accent-gradient);
        transform: scaleX(0);
        transition: transform 0.5s ease;
    }
    .feature-box:hover::after { transform: scaleX(1); }
    .feature-box:hover {
        transform: translateY(-6px);
        border-color: rgba(9,124,172,0.2);
    }
    .feature-icon-circle {
        width: 70px; height: 70px;
        background: linear-gradient(135deg, rgba(9,124,172,0.15), rgba(9,124,172,0.05));
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--teal-light);
        margin-bottom: 20px;
    }

    .solution-card {
        background: linear-gradient(135deg, var(--dark-card), var(--dark-surface));
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 24px;
        padding: 48px 36px;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
    }
    .solution-card::before {
        content: '';
        position: absolute;
        top: -50%; left: -50%;
        width: 200%; height: 200%;
        background: radial-gradient(circle, rgba(9,124,172,0.08) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .solution-card:hover::before { opacity: 1; }
    .solution-card:hover {
        border-color: rgba(9,124,172,0.3);
        transform: translateY(-8px);
    }
    .solution-num {
        font-size: 4rem;
        font-weight: 900;
        background: linear-gradient(135deg, rgba(9,124,172,0.3), rgba(9,124,172,0.08));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 16px;
    }

    .segment-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--dark-card);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 60px;
        padding: 16px 28px;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.4s ease;
        width: 225px;
    }
    .segment-pill:hover {
        border-color: var(--teal);
        background: rgba(9,124,172,0.1);
        transform: translateY(-4px);
    }
    .segment-pill i {
        color: var(--teal-light);
        font-size: 1.2rem;
    }

    .cta-section {
        position: relative;
        overflow: hidden;
    }
    .cta-section .cta-bg-lines {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
    }
    .cta-section .cta-bg-lines span {
        position: absolute;
        width: 200px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--teal-glow), transparent);
        animation: ctaLineMove 5s linear infinite;
    }
    .cta-section .cta-bg-lines span:nth-child(1) { top: 20%; left: -200px; animation-delay: 0s; }
    .cta-section .cta-bg-lines span:nth-child(2) { top: 50%; left: -200px; animation-delay: 2s; }
    .cta-section .cta-bg-lines span:nth-child(3) { top: 80%; left: -200px; animation-delay: 4s; }
    .section-connector {
        position: relative;
        height: 80px;
        display: flex;
        justify-content: center;
        z-index: 1;
    }
    .section-connector .connector-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--teal), transparent);
        position: relative;
    }
    .section-connector .connector-line::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 8px; height: 8px;
        background: var(--teal);
        border-radius: 50%;
        box-shadow: 0 0 15px var(--teal-glow);
    }

    .snake-section {
        position: relative;
        overflow: hidden;
    }
    .snake-layout {
        position: relative;
        height: 400px;
    }
    .snake-layout .snake-svg {
        position: absolute;
        bottom: -2%;
        left: 0;
        width: 100%;
    }
    .stage-marker {
        position: absolute;
        text-align: center;
        transform: translateX(-50%);
        z-index: 2;
    }
    #stage-1 { left: 14%; top: 0; }
    #stage-2 { left: 39%; top: 195px; }
    #stage-3 { left: 63%; top: 0; }
    #stage-4 { left: 87%; top: 175px; }

    .stage-marker-icon {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: var(--dark-card);
        border: 2px solid rgba(9, 124, 172, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        font-size: 1.6rem;
        color: rgba(9, 124, 172, 0.4);
        transition: all 0.6s ease;
        position: relative;
    }
    .stage-marker-icon::after {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 1px solid transparent;
        transition: all 0.6s ease;
    }
    .stage-marker.active .stage-marker-icon {
        border-color: var(--teal);
        color: var(--teal-light);
        background: rgba(9, 124, 172, 0.12);
        box-shadow: 0 0 30px rgba(9, 124, 172, 0.3);
    }
    .stage-marker.active .stage-marker-icon::after {
        border-color: rgba(9, 124, 172, 0.2);
    }
    .stage-marker-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.35);
        transition: color 0.6s ease;
        margin-bottom: 3px;
    }
    .stage-marker.active .stage-marker-title { color: #fff; }
    .stage-marker-sub {
        font-size: 0.78rem;
        color: rgba(148, 163, 184, 0.4);
        font-weight: 500;
        transition: color 0.6s ease;
    }
    .stage-marker.active .stage-marker-sub { color: var(--teal-light); }

    .snake-path-bg {
        fill: none;
        stroke: rgba(9, 124, 172, 0.08);
        stroke-width: 2;
    }
    .snake-path {
        fill: none;
        stroke: url(#snakeGradient);
        stroke-width: 3;
        stroke-linecap: round;
        filter: url(#snakeGlow);
    }
    .snake-dot { filter: url(#dotGlow); }

    .trust-section {
        position: relative;
        overflow: hidden;
    }
    .trust-section::before {
        content: '';
        position: absolute;
        top: 50%; left: 50%;
        width: 700px; height: 700px;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(9,124,172,0.06) 0%, transparent 70%);
        pointer-events: none;
    }
    .trust-badge {
        text-align: center;
        padding: 20px;
        position: relative;
    }
    .trust-badge::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(9,124,172,0.15), transparent);
    }
    .trust-badge:last-child::after { display: none; }
    .trust-badge-value {
        font-size: 2.8rem;
        font-weight: 800;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
        margin-bottom: 6px;
    }
    .trust-badge-label {
        font-size: 0.82rem;
        color: #94a3b8;
        font-weight: 500;
    }
    .trust-card {
        background: linear-gradient(135deg, rgba(9,124,172,0.06), rgba(9,124,172,0.02));
        border: 1px solid rgba(9,124,172,0.12);
        border-radius: 20px;
        padding: 40px;
        position: relative;
        overflow: hidden;
    }
    .trust-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 2px;
        background: var(--accent-gradient);
    }
    .trust-feature {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .trust-feature:last-child { border-bottom: none; }
    .trust-feature-icon {
        width: 40px; height: 40px;
        min-width: 40px;
        border-radius: 10px;
        background: rgba(9,124,172,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--teal-light);
        font-size: 1rem;
    }

    /* ======== iPad (801px – 1320px) ======== */
    @media (min-width: 801px) and (max-width: 1320px) {
        .hero-section { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
        .hero-title { font-size: 2.8rem; }
        .hero-desc { font-size: 1.05rem; }
        .hero-visual { display: none; }
        .section-title { font-size: 2.2rem; }
        .section-subtitle { font-size: 1rem; }
        .section-pad { padding: 70px 0; }
        .stat-number { font-size: 2rem; }
        .timeline-line { display: none; }
        .offering-card { padding: 32px 24px; }
        .solution-card { padding: 36px 28px; }
        .step-card { padding: 28px; }
        .feature-box { padding: 28px 20px; }
        .trust-badge-value { font-size: 2.2rem; }
        .segment-pill { padding: 12px 20px; font-size: 0.88rem; }
        .feature-icon-circle-lg { width: 80px; height: 80px; font-size: 2rem; }
        .cta-form-wrapper { min-height: 500px; }
        .cta-form-iframe { min-height: 480px; }

        .snake-layout { height: 340px; }
        #stage-1 { left: 13%; top: 0; }
        #stage-2 { left: 38%; top: 155px; }
        #stage-3 { left: 63%; top: 0; }
        #stage-4 { left: 88%; top: 140px; }
        .stage-marker-icon { width: 54px; height: 54px; font-size: 1.2rem; }
        .stage-marker-title { font-size: 0.88rem; }
        .stage-marker-sub { font-size: 0.68rem; }
    }

    /* ======== Mobile (max-width: 800px) ======== */
    @media (max-width: 800px) {
        .container { padding-left: 15px !important; padding-right: 15px !important; }

        .hero-section { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
        .hero-title { font-size: 2.4rem; }
        .hero-desc { font-size: 1.05rem; }
        .hero-visual { display: none; }

        .section-title { color: #fff !important; -webkit-text-fill-color: #fff; font-size: 1.9rem; }
        .section-subtitle { font-size: 1rem; }
        .section-pad { padding: 50px 0; }

        .stat-number { font-size: 2rem; }
        .timeline-line { display: none; }

        .offering-card { padding: 32px 24px; }
        .solution-card { padding: 36px 28px; }
        .step-card { padding: 28px; }
        .feature-box { padding: 28px 20px; }
        .feature-icon-circle-lg { width: 80px; height: 80px; font-size: 2rem; }

        .trust-badge { padding: 20px 10px; }
        .trust-badge::after { display: none; }
        .trust-badge-value { font-size: 1.8rem; }
        .trust-card { padding: 28px 20px; }

        .segment-pill { padding: 10px 5px; font-size: 11px; width: calc(50% - 8px); }
        .segment-pill i{font-size: 16px;}

        .cta-form-wrapper { min-height: 450px; }
        .cta-form-iframe { min-height: 430px; }
        #contact .row.g-5 > .col-lg-6 { padding-left: 15px!important; padding-right: 15px!important; }
        .cta-section .row.g-3.mb-4 { display: none !important; }
        .cta-section .bg-card.rounded-4.p-4 { display: none !important; }

        .snake-layout { height: 280px; }
        .snake-layout .snake-svg { bottom: auto; top: 50%; transform: translateY(-50%); }
        #stage-1 { left: 14%; top: 50px; }
        #stage-2 { left: 39%; top: 170px; }
        #stage-3 { left: 63%; top: 50px; }
        #stage-4 { left: 88%; top: 170px; }
        .stage-marker-icon { width: 54px; height: 54px; font-size: 1.2rem; }
        .stage-marker-title { font-size: 0.88rem; }
        .stage-marker-sub { font-size: 0.68rem; }
    }

    /* ======== Small Mobile (max-width: 576px) ======== */
    @media (max-width: 576px) {
        .hero-section { padding-top: 40px; padding-bottom: 40px; }
        .hero-title { font-size: 1.9rem; }
        .hero-desc { font-size: 0.95rem; }
        .section-title { font-size: 1.6rem; }
        .section-subtitle { font-size: 0.92rem; }
        .section-pad { padding: 40px 0; }
        .section-label { font-size: 0.65rem; letter-spacing: 2px; padding: 4px 12px; }
        .stat-number { font-size: 1.6rem; }
        .stat-text { font-size: 0.75rem; }
        .stat-item { padding: 18px 8px; }
        .stat-item:not(:last-child)::after { display: none; }
        .offering-card { padding: 24px 18px; border-radius: 16px; }
        .offering-icon { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 16px; }
        .step-card { padding: 22px 18px; }
        .step-num { width: 36px; height: 36px; font-size: 0.95rem; margin-bottom: 12px; }
        .feature-box { padding: 22px 16px; border-radius: 14px; }
        .feature-icon-circle { width: 52px; height: 52px; font-size: 1.4rem; margin-bottom: 14px; }
        .feature-icon-circle-lg { width: 60px; height: 60px; font-size: 1.6rem; }
        .solution-card { padding: 28px 20px; border-radius: 18px; }
        .solution-num { font-size: 2.8rem; }
        .btn-teal, .btn-outline-light-custom { padding: 12px 24px; font-size: 0.88rem; }
        .trust-card { padding: 20px 16px; }
        .trust-feature { padding: 12px 0; gap: 12px; }
        .trust-feature-icon { width: 34px; height: 34px; min-width: 34px; font-size: 0.85rem; }
        .cta-form-wrapper { min-height: 400px; }
        .cta-form-iframe { min-height: 380px; }
        .structure-icon { font-size: 1.6rem; }

        .snake-layout { height: 220px; }
        #stage-1 { left: 14%; top: 55px; }
        #stage-2 { left: 39%; top: 120px; }
        #stage-3 { left: 63%; top: 55px; }
        #stage-4 { left: 88%; top: 120px; }
        .stage-marker-icon { width: 40px; height: 40px; font-size: 0.95rem; margin-bottom: 6px; }
        .stage-marker-title { font-size: 0.72rem; }
        .stage-marker-sub { display: none; }
    }
}