: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 ctaLineMove {
    0% { left: -200px; }
    100% { left: 110%; }
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.bd-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; }

    .z-1 { position: relative; z-index: 1; }
    .text-teal { color: var(--teal) !important; }
    .text-gray { color: #94a3b8; }
    .bg-surface { background-color: var(--dark-surface); }
    .bg-card { background-color: var(--dark-card); }

    .fs-7 { font-size: 16px !important; }
    .fs-8 { font-size: 15px !important; }
    .fs-9 { font-size: 14px !important; }

    .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-highlight {
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .hero-highlight-gradient {
        background: linear-gradient(90deg, #097CAC 0%, #06b6d4 40%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-style: italic;
    }

    /* ===== Hero ===== */
    .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-desc {
        font-size: 1.15rem;
        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-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; }
    .feature-icon-circle-sm {
        width: 44px; height: 44px;
        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.2rem;
        color: var(--teal-light);
    }
    .btn-white {
        background: #fff; color: #0a0f1a; border: none;
        padding: 14px 32px; border-radius: 12px;
        font-weight: 600; font-size: 0.95rem;
        transition: background 0.3s, transform 0.2s; text-decoration: none;
    }
    .btn-white:hover { background: #e0e0e0; color: #0a0f1a; transform: translateY(-2px); }
    .btn-outline-light {
        background: rgba(255,255,255,0.05); color: #fff;
        border: 1px solid rgba(255,255,255,0.2);
        padding: 14px 32px; border-radius: 12px;
        font-weight: 600; font-size: 0.95rem;
        transition: background 0.3s, border-color 0.3s, transform 0.2s; text-decoration: none;
    }
    .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); color: #fff; transform: translateY(-2px); }

    /* ===== Services Section ===== */
    .section-label--light {
        color: var(--teal);
        border-color: rgba(9,124,172,0.25);
    }
    .section-subtitle--light {
        color: #5a6a7a;
    }
    .services-section {
        padding: 70px 0 60px;
        background: #f0f7fb;
        border-top: 1px solid #d6e8f0;
        border-bottom: 1px solid #d6e8f0;
        position: relative;
        overflow: hidden;
    }

    /* Section Floating Particles */
    .svc-particles {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 0;
    }
    .svc-particles .svc-dot {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        animation: svcFloat 7s ease-in-out infinite;
    }
    .svc-dot--1 { width: 8px; height: 8px; background: rgba(9,124,172,0.25); left: 8%; top: 15%; animation-delay: 0s; }
    .svc-dot--2 { width: 5px; height: 5px; background: rgba(9,124,172,0.2); left: 92%; top: 25%; animation-delay: 1.5s; }
    .svc-dot--3 { width: 12px; height: 12px; background: rgba(9,124,172,0.12); left: 20%; top: 75%; animation-delay: 3s; }
    .svc-dot--4 { width: 6px; height: 6px; background: rgba(9,124,172,0.22); left: 80%; top: 65%; animation-delay: 4.5s; }
    .svc-dot--5 { width: 10px; height: 10px; background: rgba(9,124,172,0.15); left: 50%; top: 10%; animation-delay: 2s; }
    .svc-dot--6 { width: 7px; height: 7px; background: rgba(9,124,172,0.18); left: 35%; top: 90%; animation-delay: 5.5s; }
    @keyframes svcFloat {
        0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
        25% { opacity: 0.7; }
        50% { opacity: 1; transform: translateY(-20px) scale(1.3); }
        75% { opacity: 0.5; }
    }

    /* Decorative rings */
    .services-section::before,
    .services-section::after {
        content: '';
        position: absolute;
        border: 1px solid rgba(9,124,172,0.08);
        border-radius: 50%;
        pointer-events: none;
    }
    .services-section::before {
        width: 300px; height: 300px;
        top: -80px; right: -80px;
        animation: orbitSpin 30s linear infinite;
    }
    .services-section::after {
        width: 200px; height: 200px;
        bottom: -60px; left: -60px;
        animation: orbitSpin 25s linear infinite reverse;
    }

    /* 2x2 Grid */
    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        position: relative;
        z-index: 1;
    }

    /* Card - Light Blue */
    .svc-card {
        background: #ffffff;
        border: 1px solid rgba(9,124,172,0.15);
        border-radius: 14px;
        padding: 24px 24px 20px;
        box-shadow: 0 3px 12px rgba(9,124,172,0.08);
        transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .svc-card:hover {
        border-color: var(--teal);
        box-shadow: 0 8px 28px rgba(9,124,172,0.15);
        transform: translateY(-4px);
    }

    /* Card Header: number + title center aligned */
    .svc-card-head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }
    .service-num {
        width: 36px; height: 36px;
        min-width: 36px;
        background: var(--accent-gradient);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
        font-weight: 800;
        color: #fff;
        box-shadow: 0 3px 10px var(--teal-glow);
    }
    .svc-card-head h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: #0f172a;
        line-height: 1.35;
    }

    /* Card Description */ 
    .svc-card-desc {
        color: #4b5563;
        font-size: 0.82rem;
        line-height: 1.55;
        margin-bottom: 10px;
    }

    /* Compact List with bullet markers */
    .svc-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .svc-list li {
        padding: 4px 0 4px 16px;
        color: #374151;
        font-size: 0.8rem;
        line-height: 1.5;
        position: relative;
    }
    .svc-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 11px;
        width: 6px; height: 6px;
        border-radius: 50%;
        background: var(--teal);
    }
    .svc-list li strong {
        color: #0f172a;
        font-weight: 600;
    }

    /* Two-column list inside card */
    .svc-list.svc-list-two-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 16px;
    }

    /* ===== Case Study Section ===== */
    .case-study-section {
        padding: 100px 0;
        background: var(--dark-bg);
    }
    .case-study-card {
        background: var(--dark-card);
        border: 1px solid rgba(9,124,172,0.15);
        border-radius: 24px;
        overflow: hidden;
    }
    .case-study-preview {
        background: #0d1b3e;
        border-right: 1px solid rgba(9,124,172,0.12);
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cs-preview-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    .cs-logo-img {
        max-width: 220px;
        height: auto;
        margin-bottom: 12px;
    }
    .browser-chrome {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        background: rgba(0,0,0,0.3);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .browser-dots {
        display: flex;
        gap: 6px;
    }
    .browser-dots span {
        width: 10px; height: 10px;
        border-radius: 50%;
    }
    .browser-dots span:nth-child(1) { background: #ff5f57; }
    .browser-dots span:nth-child(2) { background: #ffbd2e; }
    .browser-dots span:nth-child(3) { background: #28c840; }
    .browser-url {
        flex: 1;
        font-size: 0.7rem;
        color: #94a3b8;
        background: rgba(255,255,255,0.05);
        padding: 5px 12px;
        border-radius: 6px;
        font-family: monospace;
    }
    .browser-body { padding: 20px 16px; }
    .cs-hero-mock {
        text-align: center;
        padding: 16px 0 20px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        margin-bottom: 16px;
    }
    .cs-logo-text {
        font-size: 1.3rem;
        font-weight: 800;
        color: #fff;
        letter-spacing: 1px;
    }
    .cs-tagline {
        font-size: 0.75rem;
        color: var(--teal-light);
        margin-top: 4px;
        letter-spacing: 1px;
    }
    .cs-categories {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        margin-top: 12px;
    }
    .cs-categories span {
        font-size: 0.6rem;
        color: #94a3b8;
        padding: 3px 8px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .cs-cards-row {
        display: flex;
        gap: 10px;
    }
    .cs-deal-card {
        flex: 1;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 10px;
        padding: 12px 10px;
    }
    .cs-deal-type {
        font-size: 0.55rem;
        text-transform: uppercase;
        color: var(--teal-light);
        letter-spacing: 1px;
        margin-bottom: 4px;
    }
    .cs-deal-name {
        font-size: 0.8rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 6px;
    }
    .cs-deal-goal {
        font-size: 0.65rem;
        color: #94a3b8;
    }
    .cs-deal-return {
        font-size: 0.6rem;
        color: #28c840;
        font-weight: 600;
        margin-top: 2px;
    }
    /* Case study info */
    .case-study-info {
        padding: 40px 36px;
    }
    .cs-badge {
        width: fit-content;
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--teal-light);
        padding: 5px 14px;
        border: 1px solid rgba(9,124,172,0.3);
        border-radius: 50px;
        margin-bottom: 16px;
    }
    .cs-title {
        font-size: 2rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 12px;
    }
    .cs-desc {
        font-size: 0.92rem;
        color: #fff;
        line-height: 1.7;
        margin-bottom: 24px;
    }
    .cs-stats {
        display: flex;
        gap: 24px;
        margin-bottom: 24px;
        padding: 16px 0;
        border-top: 1px solid rgba(255,255,255,0.06);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .cs-stat { text-align: center; flex: 1; }
    .cs-stat-num {
        font-size: 1.6rem;
        font-weight: 800;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .cs-stat-label {
        font-size: 0.72rem;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 2px;
    }
    .cs-features {
        list-style: none;
        padding: 0;
        margin: 0 0 8px;
    }
    .cs-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 6px 0;
        color: #cbd5e1;
        font-size: 0.85rem;
    }
    .cs-features li i { font-size: 0.85rem; }

    /* CTA List (no icons) */
    .cta-list {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
    }
    .cta-list li {
        padding: 5px 0 5px 18px;
        color: #94a3b8;
        font-size: 0.88rem;
        line-height: 1.5;
        position: relative;
    }
    .cta-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 12px;
        width: 7px; height: 7px;
        border-radius: 50%;
        background: var(--teal-light);
    }

    /* ===== CTA Section ===== */
    .cta-section {
        position: relative;
        overflow: hidden;
        padding: 50px 15px;
    }
    .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; }

    .cta-form-wrapper { min-height: 800px; }
    .cta-form-iframe {
        width: 100%; height: 100%; min-height: 800px;
        border: none; border-radius: 14px;
    }
    .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; }

        .services-section { padding: 50px 0; }
        .services-grid { gap: 16px; }
        .svc-card { padding: 20px 18px 16px; }
        .svc-card-head h3 { font-size: 0.95rem; }
        .svc-list li { font-size: 0.76rem; padding: 3px 0 3px 14px; }
        .svc-list li::before { top: 9px; width: 5px; height: 5px; }
        .svc-list.svc-list-two-col { gap: 0 10px; }

        .case-study-section { padding: 60px 0; }
        .case-study-info { padding: 30px 24px; }
        .cs-title { font-size: 1.6rem; }
        .cs-stats { gap: 16px; }
        .cs-stat-num { font-size: 1.3rem; }

        .cta-list li { font-size: 0.84rem; }
        .cta-form-wrapper { min-height: 800px; }
        .cta-form-iframe { min-height: 800px; }
        .btn-white, .btn-outline-light { padding: 12px 24px; font-size: 0.9rem; }
    }

    /* ======== Mobile (max-width: 800px) ======== */
    @media (max-width: 800px) {
        .container { padding-left: 15px !important; padding-right: 15px !important; }
        #contact .container .col-lg-5 { padding-left: 10px !important; padding-right: 10px !important; margin-top: 0;}
        #contact .container .col-lg-7 { padding-left: 5px !important; padding-right: 5px !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; }

        .services-section { padding: 40px 0; }
        .services-grid { grid-template-columns: 1fr; gap: 14px; }
        .svc-card { padding: 20px 18px 16px; border-radius: 12px; }
        .svc-card-head h3 { font-size: 0.95rem; }
        .svc-card-desc { font-size: 0.78rem; }
        .svc-list li { font-size: 0.76rem; padding: 3px 0 3px 14px; }
        .svc-list li::before { top: 9px; width: 5px; height: 5px; }
        .svc-list li strong { min-width: auto; }
        .svc-list.svc-list-two-col { grid-template-columns: 1fr; }

        .case-study-section { padding: 50px 0; }
        .case-study-preview { border-right: none; border-bottom: 1px solid rgba(9,124,172,0.12); margin: 1.5rem;}
        .cs-preview-img { border-radius: 8px; }
        .case-study-info { padding: 28px 22px; }
        .cs-title { font-size: 1.5rem; }
        .cs-stats { gap: 12px; }
        .cs-stat-num { font-size: 1.3rem; }
        .cs-cards-row { gap: 6px; }
        .cs-deal-card { padding: 10px 8px; }
        .cs-deal-name { font-size: 0.7rem; }

        .cta-section { padding: 50px 15px; }
        .cta-list li { font-size: 0.84rem; padding: 4px 0 4px 16px; }
        .cta-list li::before { top: 10px; width: 6px; height: 6px; }
        .cta-form-wrapper { min-height: 800px; }
        .cta-form-iframe { min-height: 800px; }
        .cta-section .row.g-3.mb-4 { display: none !important; }
        .cta-section .bg-card.rounded-4.p-4 { display: none !important; }
        .btn-white, .btn-outline-light { padding: 12px 24px; font-size: 0.9rem; }
    }

    /* ======== 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-label { font-size: 0.65rem; letter-spacing: 2px; padding: 4px 12px; }

        .services-section { padding: 30px 0; }
        .services-grid { gap: 10px; }
        .svc-card { padding: 16px 14px 14px; border-radius: 10px; }
        .service-num { width: 30px; height: 30px; min-width: 30px; font-size: 0.8rem; }
        .svc-card-head { gap: 10px; margin-bottom: 8px; }
        .svc-card-head h3 { font-size: 0.88rem; }
        .svc-card-desc { font-size: 0.74rem; margin-bottom: 8px; }
        .svc-list li { font-size: 0.73rem; padding: 2px 0 2px 12px; }
        .svc-list li::before { top: 8px; width: 4px; height: 4px; }

        .case-study-section { padding: 40px 0; }
        .case-study-info { padding: 24px 18px; }
        .cs-title { font-size: 1.3rem; }
        .cs-desc { font-size: 0.85rem; }
        .cs-stats { flex-wrap: wrap; gap: 10px; }
        .cs-stat { min-width: 80px; }
        .cs-stat-num { font-size: 1.2rem; }
        .cs-stat-label { font-size: 0.65rem; }
        .cs-features li { font-size: 0.8rem; }
        .cs-deal-card { padding: 8px 6px; }
        .cs-deal-name { font-size: 0.65rem; }
        .cs-deal-type { font-size: 0.5rem; }
        .cs-deal-goal { font-size: 0.55rem; }
        .cs-deal-return { font-size: 0.5rem; }

        .cta-section { padding: 40px 15px; }
        .cta-list li { font-size: 0.8rem; padding: 3px 0 3px 14px; }
        .cta-list li::before { top: 9px; width: 5px; height: 5px; }
        .cta-form-wrapper { min-height: 800px; }
        .cta-form-iframe { min-height: 800px; }
        .btn-white, .btn-outline-light { padding: 10px 20px; font-size: 0.85rem; border-radius: 10px; }
    }
}