/* BuildProX Solution Pvt Ltd — Stylesheet */
/* ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0b1628;
    --ink-soft: #1e2d47;
    --blue-deep: #0e4fa1;
    --blue: #1a6ed8;
    --blue-mid: #2583f0;
    --blue-glow: #4ba3ff;
    --blue-pale: #ddeeff;
    --blue-ghost: #eef5ff;
    --sky: #e8f3ff;
    --steel: #b0c8e8;
    --muted: #6b7f9a;
    --border: #d4e3f4;
    --white: #ffffff;
    --gray-50: #f6f9fd;
    --gray-100: #eef3fa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5ff;
}

::-webkit-scrollbar-thumb {
    background: var(--blue-mid);
    border-radius: 3px;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 6%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 14.5px;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    transition: color .2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-mid);
    border-radius: 2px;
    transition: width .25s;
}

.nav-links a:hover {
    color: var(--blue-mid);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--blue-mid);
    color: #fff;
    padding: 10px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 131, 240, .35);
    transition: all .2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--blue-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(37, 131, 240, .45);
}

/* ── HERO ── */
.hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 6%;
    gap: 60px;
    background: linear-gradient(155deg, #f0f7ff 0%, #e4effe 40%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 131, 240, .08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 79, 161, .07) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 2;
    animation: riseUp .9s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 131, 240, .1);
    border: 1px solid rgba(37, 131, 240, .25);
    border-radius: 50px;
    padding: 7px 18px;
    margin-bottom: 28px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue-mid);
    letter-spacing: .6px;
    text-transform: uppercase;
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-glow);
    animation: blink 1.8s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.7);
    }
}

h1.h-main {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}

h1.h-main .accent {
    background: linear-gradient(100deg, var(--blue-deep) 0%, var(--blue-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 38px;
    font-weight: 400;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.btn-blu {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-mid);
    color: #fff;
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(37, 131, 240, .35);
    transition: all .22s;
}

.btn-blu:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37, 131, 240, .45);
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ink);
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: all .22s;
}

.btn-line:hover {
    border-color: var(--blue-mid);
    color: var(--blue-mid);
    background: var(--blue-ghost);
}

.arr {
    font-size: 18px;
    transition: transform .2s;
}

.btn-blu:hover .arr {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.hs {
    cursor: default;
}

.hs-n {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
}

.hs-n sup {
    font-size: 16px;
    color: var(--blue-mid);
}

.hs-l {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    font-weight: 500;
    letter-spacing: .2px;
}

/* hero right */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: riseUp .9s .15s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-viz {
    width: 460px;
    height: 460px;
    position: relative;
}

.viz-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vr1 {
    width: 460px;
    height: 460px;
    border-color: rgba(37, 131, 240, .15);
    animation: spin1 30s linear infinite;
}

.vr2 {
    width: 340px;
    height: 340px;
    border-color: rgba(37, 131, 240, .22);
    animation: spin1 20s linear infinite reverse;
}

.vr3 {
    width: 220px;
    height: 220px;
    border-color: rgba(37, 131, 240, .3);
}

@keyframes spin1 {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.viz-core {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 60%, var(--blue-glow) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 20px rgba(37, 131, 240, .08), 0 20px 60px rgba(14, 79, 161, .4);
}

.viz-core-inner {
    font-size: 60px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.viz-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 340px;
    height: 340px;
    margin-top: -170px;
    margin-left: -170px;
    animation: spin1 20s linear infinite;
}

.viz-dot {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(14, 79, 161, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: spin1 20s linear reverse infinite;
}

.vd1 {
    top: 0;
    left: 50%;
    margin-left: -23px;
    margin-top: -23px;
}

.vd2 {
    right: 0;
    top: 50%;
    margin-top: -23px;
    margin-right: -23px;
}

.vd3 {
    bottom: 0;
    left: 50%;
    margin-left: -23px;
    margin-bottom: -23px;
}

.vd4 {
    left: 0;
    top: 50%;
    margin-top: -23px;
    margin-left: -23px;
}

.viz-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(14, 79, 161, .12);
    border: 1px solid var(--border);
    white-space: nowrap;
}

.vc-top {
    position: absolute;
    top: 20px;
    right: -80px;
    animation: cardFloat .1s ease both;
}

.vc-bot {
    position: absolute;
    bottom: 30px;
    left: -80px;
    animation: cardFloat .1s .2s ease both;
}

.vc-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.vc-val {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
}

.vc-sub {
    font-size: 11px;
    color: #22c55e;
    font-weight: 600;
    margin-top: 2px;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--ink);
    padding: 28px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.tb-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.tb-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .1);
}

.tb-logos {
    display: flex;
    align-items: center;
    gap: 52px;
    flex-wrap: wrap;
}

.tb-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .25);
    transition: color .2s;
    cursor: default;
}

.tb-logo:hover {
    color: rgba(255, 255, 255, .55);
}

/* ── ABOUT ── */
.about {
    padding: 100px 6%;
    background: #fff;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-placeholder {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    border-radius: 24px;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(14, 79, 161, .25);
}

.aip-icon {
    font-size: 72px;
    margin-bottom: 16px;
}

.aip-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    text-align: center;
    line-height: 1.6;
}

.about-badge-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 8px 32px rgba(14, 79, 161, .15);
    border: 1px solid var(--border);
    text-align: center;
}

.abc-num {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--blue-mid);
    line-height: 1;
}

.abc-lbl {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
}

.about-lead {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.al-dot {
    color: var(--blue-mid);
    font-weight: 700;
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-card {
    background: var(--gray-50);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid var(--border);
}

.ac-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.ac-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.ac-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.skills {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.skill-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sk-lbl {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    min-width: 160px;
}

.sk-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-100);
    border-radius: 50px;
    overflow: hidden;
}

.sk-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-deep), var(--blue-glow));
    border-radius: 50px;
    transition: width 1s ease;
}

.sk-pct {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue-mid);
    min-width: 36px;
    text-align: right;
}

/* ── SERVICES ── */
.services {
    background: var(--gray-50);
    padding: 100px 6%;
}

.s-head {
    text-align: center;
    margin-bottom: 64px;
}

.tag-line {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 14px;
}

.sec-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.sec-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.srv-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px 32px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform .28s, box-shadow .28s, border-color .28s;
    cursor: default;
}

.srv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 131, 240, .04), transparent);
    opacity: 0;
    transition: opacity .28s;
}

.srv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(14, 79, 161, .1);
    border-color: rgba(37, 131, 240, .3);
}

.srv-card:hover::after {
    opacity: 1;
}

.srv-ico {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--blue-ghost);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    transition: background .28s, transform .28s;
}

.srv-card:hover .srv-ico {
    background: var(--blue-pale);
    transform: scale(1.08);
}

.srv-nm {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.srv-tx {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.srv-arr {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-mid);
    text-decoration: none;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s, transform .25s;
}

.srv-card:hover .srv-arr {
    opacity: 1;
    transform: translateX(0);
}

/* ── NUMBERS ── */
.numbers {
    background: linear-gradient(135deg, #0b1628 0%, #0e3470 50%, #0b1628 100%);
    padding: 72px 6%;
}

.num-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.num-card {
    text-align: left;
    padding: 20px 40px 20px 60px;
    position: relative;
}

.num-card+.num-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, .15);
}

.num-n {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.num-n span {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--blue-glow);
    line-height: 1.2;
    margin-bottom: 4px;
}

.num-l {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
    letter-spacing: .3px;
}

/* ── WHY US ── */
.why {
    padding: 100px 6%;
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-panel {
    background: linear-gradient(135deg, var(--blue-deep) 0%, #0a2d68 100%);
    border-radius: 28px;
    padding: 44px;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.why-panel::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    top: -80px;
    right: -80px;
}

.why-panel::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(37, 131, 240, .12);
    bottom: 40px;
    left: -50px;
}

.wp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.wp-chip {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

.wp-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.wp-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.wp-uicard {
    position: absolute;
    background: rgba(255, 255, 255, .95);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
    top: 40px;
    right: 40px;
    z-index: 2;
}

.wp-uic-lbl {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.wp-uic-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wp-uic-ava {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.wp-uic-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.wp-uic-role {
    font-size: 11px;
    color: var(--muted);
}

.wp-badge {
    position: absolute;
    background: #22c55e;
    border-radius: 50px;
    padding: 6px 14px;
    top: 40px;
    left: 40px;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 14px rgba(34, 197, 94, .4);
}

.why-pts {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-pt {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: var(--blue-ghost);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--blue-mid);
}

.why-pt-t {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 5px;
}

.why-pt-d {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── PROCESS ── */
.process {
    background: var(--gray-50);
    padding: 100px 6%;
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.proc-line {
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
}

.proc-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.ps-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--blue-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--blue-mid);
    box-shadow: 0 4px 20px rgba(37, 131, 240, .15);
    transition: all .28s;
    cursor: default;
}

.proc-step:hover .ps-circle {
    background: var(--blue-mid);
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 131, 240, .35);
    transform: translateY(-4px);
}

.ps-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.ps-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testi {
    padding: 100px 6%;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.t-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: default;
}

.t-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(14, 79, 161, .1);
    border-color: rgba(37, 131, 240, .25);
}

.t-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.t-star {
    color: #f59e0b;
    font-size: 15px;
}

.t-text {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
    border-left: 3px solid var(--blue-pale);
    padding-left: 16px;
}

.t-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-ava {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

.t-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.t-role {
    font-size: 12px;
    color: var(--muted);
}

/* ── CTA + CONTACT UNIFIED SECTION ── */
.cta-contact-section {
    margin: 0 6% 80px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0b1e4a 0%, #0e3a8a 45%, #0b1e4a 100%);
    padding: 72px 64px;
    position: relative;
    overflow: hidden;
}

.cta-contact-section::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    top: -180px;
    left: -100px;
    pointer-events: none;
}

.cta-contact-section::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(37, 131, 240, .08);
    bottom: -160px;
    right: -60px;
    pointer-events: none;
}

.cta-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.cta-left-col {
    padding-top: 8px;
}

.cta-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 18px;
}

.cta-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.cta-subtext {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cta-info-ico {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cta-info-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 5px;
}

.cta-info-val {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
}

.cta-info-val a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: color .2s;
    display: block;
}

.cta-info-val a:hover {
    color: #fff;
}

/* form card */
.cta-form-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    padding: 36px 32px 32px;
    backdrop-filter: blur(12px);
}

.cfc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.cfc-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 26px;
}

.cfc-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.cfc-input {
    width: 100%;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #fff;
    outline: none;
    resize: none;
    transition: border-color .2s, background .2s;
}

.cfc-input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.cfc-input:focus {
    border-color: rgba(37, 131, 240, .7);
    background: rgba(255, 255, 255, .13);
}

.cfc-full {
    display: block;
    margin-bottom: 14px;
}

.cfc-textarea {
    display: block;
    min-height: 120px;
    margin-bottom: 20px;
}

.cfc-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--blue-mid) 0%, var(--blue-glow) 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 14px 24px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .3px;
    box-shadow: 0 6px 24px rgba(37, 131, 240, .4);
    transition: all .22s;
}

.cfc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37, 131, 240, .55);
}

.cfc-btn:active {
    transform: translateY(0);
}

/* form validation */
.cfc-field {
    position: relative;
    margin-bottom: 14px;
}

.cfc-row2 .cfc-field {
    margin-bottom: 0;
}

.cfc-err {
    display: none;
    font-size: 11.5px;
    color: #ff6b6b;
    margin-top: 5px;
    padding-left: 2px;
    font-weight: 500;
}

.cfc-input.cfc-invalid {
    border-color: #ff6b6b !important;
    background: rgba(255, 107, 107, .08) !important;
}

.cfc-input.cfc-invalid::placeholder {
    color: rgba(255, 107, 107, .6);
}

.cfc-success {
    background: rgba(34, 197, 94, .15);
    border: 1px solid rgba(34, 197, 94, .4);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 16px;
    text-align: center;
}

.cfc-success-ok {
    background: rgba(34, 197, 94, .15);
    border: 1px solid rgba(34, 197, 94, .4);
    color: #4ade80;
}

.cfc-success-err {
    background: rgba(255, 107, 107, .12);
    border: 1px solid rgba(255, 107, 107, .35);
    color: #ff8a8a;
}

/* clickable contact info items */
.cta-info-link {
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    border-radius: 16px;
    padding: 14px 16px;
    margin: -14px -16px;
    border: 1px solid transparent;
    transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}

.cta-info-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(75, 163, 255, .15), rgba(37, 131, 240, .05));
    opacity: 0;
    transition: opacity .3s;
    border-radius: 16px;
}

.cta-info-link:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(75, 163, 255, .35);
    transform: translateX(6px);
    box-shadow: 0 4px 24px rgba(37, 131, 240, .2);
}

.cta-info-link:hover::before {
    opacity: 1;
}

.cta-info-link .cta-info-ico {
    transition: transform .3s, filter .3s;
    position: relative;
    z-index: 1;
}

.cta-info-link:hover .cta-info-ico {
    transform: scale(1.18) rotate(-5deg);
    filter: drop-shadow(0 0 6px rgba(75, 163, 255, .6));
}

.cta-info-link .cta-info-val,
.cta-info-link .cta-info-lbl {
    position: relative;
    z-index: 1;
}

.cta-info-link .cta-info-val {
    color: rgba(255, 255, 255, .85);
    transition: color .3s;
}

.cta-info-link:hover .cta-info-val {
    color: #fff;
}

.ci-hint {
    font-size: 10px;
    font-weight: 700;
    color: #4ba3ff;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-left: 10px;
    background: rgba(75, 163, 255, .15);
    border: 1px solid rgba(75, 163, 255, .3);
    padding: 2px 8px;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(-3px);
    transition: opacity .3s, transform .3s;
    display: inline-block;
}

.cta-info-link:hover .ci-hint {
    opacity: 1;
    transform: translateY(0);
}

.cta-info-item .cta-info-val a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    display: inline-block;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
    transition: color .25s, border-color .25s;
}

.cta-info-item .cta-info-val a:hover {
    color: #4ba3ff;
    border-bottom-color: rgba(75, 163, 255, .5);
}

/* ── FOOTER ── */
footer {
    background: #eef3fa;
    padding: 60px 6% 0;
    border-top: 3px solid #1a6ed8;
}

.ft-grid {
    display: grid;
    grid-template-columns: 2.4fr 1fr 1fr 1.6fr;
    gap: 52px;
    margin-bottom: 48px;
    align-items: start;
}

/* Logo column */
.ft-logo {
    margin-bottom: 16px;
}

.ft-logo img {
    width: 240px;
    height: auto;
    display: block;
}

.ft-about {
    font-size: 13.5px;
    color: #4a6080;
    line-height: 1.75;
    max-width: 300px;
}

/* Column headings */
.ft-h {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #0b1628;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a6ed8;
    display: block;
}

/* Links */
.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ft-links li a {
    color: #3a5070;
    text-decoration: none;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 7px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all .2s;
    position: relative;
}

.ft-links li a::before {
    content: '›';
    font-size: 16px;
    color: #1a6ed8;
    margin-right: 6px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all .2s;
    line-height: 1;
}

.ft-links li a:hover {
    background: #ddeeff;
    border-color: #b8d4f0;
    color: #0e4fa1;
    padding-left: 14px;
}

.ft-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact column */
.ft-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.ft-contact li {
    display: block;
}

.ft-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all .22s;
    width: 100%;
    cursor: pointer;
}

.ft-contact-item:hover {
    background: #ddeeff;
    border-color: #b8d4f0;
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(26, 110, 216, .12);
}

.ft-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 9px;
    background: #d6e8fb;
    border: 1px solid #b8d4f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all .22s;
    flex-shrink: 0;
}

.ft-contact-item:hover .ft-contact-icon {
    background: #1a6ed8;
    border-color: #1a6ed8;
}

.ft-contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7a9ab8;
    margin-bottom: 2px;
    display: block;
}

.ft-contact-val {
    font-size: 12.5px;
    color: #1e3a5f;
    font-weight: 500;
    line-height: 1.5;
    display: block;
}

.ft-contact-item:hover .ft-contact-label {
    color: #5a8ab8;
}

.ft-contact-item:hover .ft-contact-val {
    color: #0e4fa1;
}

/* Bottom bar */
.ft-bottom {
    background: #dde8f5;
    margin: 0 -6%;
    padding: 20px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: #4a6080;
    border-top: 1px solid #c4d8ee;
    flex-wrap: wrap;
    gap: 12px;
}

.ft-socials {
    display: flex;
    gap: 10px;
}

.ft-soc {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #b8d0ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: #1a6ed8;
    transition: all .22s;
}

.ft-soc:hover {
    background: #1a6ed8;
    color: #fff;
    border-color: #1a6ed8;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(26, 110, 216, .3);
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s, transform .7s;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 60px 6% 40px;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-sub {
        max-width: 100%;
    }

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

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

   .hero-right {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-viz {
  width: 320px;
  height: 320px;
}

.vc-top { right: -20px; }
.vc-bot { left: -20px; }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-wrap {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-panel {
        min-height: auto;
        padding: 36px 32px;
    }

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

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

    .num-card+.num-card::before {
        display: none;
    }

    .num-card {
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .num-card:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .12);
    }

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

    .proc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .proc-line {
        display: none;
    }

    .cta-contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ft-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
    nav {
        padding: 0 5%;
        height: 64px;
    }

    .hero-viz {
  width: 260px;
  height: 260px;
}

.vc-top { right: -10px; top: 10px; }
.vc-bot { left: -10px; bottom: 20px; }


    .nav-links {
        display: none;
    }

    .nav-cta {
        padding: 9px 20px;
        font-size: 13px;
    }

    .nav-logo img {
        height: 100px;
    }

    .nav-right {
        gap: 16px;
    }

    .hero {
        padding: 48px 5% 36px;
        gap: 32px;
    }

    h1.h-main {
        font-size: clamp(30px, 8vw, 42px);
        letter-spacing: -0.8px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-blu,
    .btn-line {
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }

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

    .trust-bar {
        gap: 20px;
        padding: 24px 5%;
        flex-direction: column;
        align-items: center;
    }

    .tb-sep {
        display: none;
    }

    .tb-logos {
        gap: 28px;
        justify-content: center;
    }

    .about {
        padding: 64px 5%;
    }

    .about-inner {
        gap: 40px;
    }

    .about-img-placeholder {
        height: 280px;
    }

    .about-badge-card {
        bottom: -16px;
        right: -8px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 64px 5%;
    }

    .srv-grid {
        grid-template-columns: 1fr;
    }

    .numbers {
        padding: 48px 5%;
    }

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

    .num-n {
        font-size: clamp(36px, 10vw, 56px);
    }

    .why {
        padding: 64px 5%;
    }

   .wp-uicard {
    position: static;
    margin: 0 0 20px auto;
    display: table;
}

    .wp-badge {
        top: 20px;
        left: 20px;
    }

    .process {
        padding: 64px 5%;
    }

    .proc-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 40px;
    }

    .proc-step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
        padding: 0;
    }

    .ps-circle {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 18px;
        margin: 0;
    }

    .ps-title {
        margin-bottom: 4px;
    }

    .testi {
        padding: 64px 5%;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .cta-contact-section {
        margin: 0 4% 60px;
        padding: 48px 28px;
        border-radius: 20px;
    }

    .cta-heading {
        font-size: clamp(22px, 6vw, 32px);
    }

    .cfc-row2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cta-info-link {
        padding: 10px 12px;
        margin: -10px -12px;
    }

    footer {
        padding: 48px 5% 0;
    }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 36px;
    }

    .ft-logo img {
        width: 200px;
    }

    .ft-about {
        max-width: 100%;
    }

    .ft-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .ft-socials {
        order: -1;
    }

    .s-head {
        margin-bottom: 40px;
    }

    .sec-title {
        font-size: clamp(24px, 6vw, 36px);
        letter-spacing: -0.5px;
    }

    /* hamburger */
    .nav-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        border-radius: 8px;
        transition: background .2s;
    }

    .nav-menu-btn:hover {
        background: var(--gray-100);
    }

    .nav-menu-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ink);
        border-radius: 2px;
        transition: all .3s;
    }

    .nav-mobile-drawer {
        display: block;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s cubic-bezier(.16, 1, .3, 1), padding .35s;
        z-index: 998;
        box-shadow: 0 8px 32px rgba(14, 79, 161, .1);
    }

    .nav-mobile-drawer.open {
        max-height: 400px;
        padding: 12px 0 20px;
    }

    .nav-mobile-drawer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-mobile-drawer ul li a {
        display: block;
        padding: 13px 6%;
        font-size: 15px;
        font-weight: 500;
        color: var(--ink-soft);
        text-decoration: none;
        border-bottom: 1px solid var(--gray-100);
        transition: background .2s, color .2s;
    }

    .nav-mobile-drawer ul li a:hover {
        background: var(--blue-ghost);
        color: var(--blue-mid);
    }

    .nav-mobile-drawer .mob-cta {
        display: block;
        margin: 16px 6% 0;
        text-align: center;
        background: var(--blue-mid);
        color: #fff;
        padding: 13px 24px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(37, 131, 240, .3);
    }
/* ── MOBILE TESTIMONIAL SLIDER ── */
@media (max-width: 768px) {
    .testi-grid {
        display: block;
        position: relative;
        overflow: hidden;
    }

    .t-card {
        display: none;
        animation: slideIn .35s ease;
    }

    .t-card.active {
        display: block;
    }

    @keyframes slideIn {
        from { opacity: 0; transform: translateX(30px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    .testi-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }

    .testi-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: background .2s, transform .2s;
    }

    .testi-dot.active {
        background: var(--blue-mid);
        transform: scale(1.25);
    }

    .testi-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
    }

    .testi-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1.5px solid var(--border);
        background: #fff;
        color: var(--ink);
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .2s;
    }

    .testi-btn:hover {
        border-color: var(--blue-mid);
        color: var(--blue-mid);
    }

    .testi-counter {
        font-size: 13px;
        color: var(--muted);
        font-weight: 500;
        min-width: 40px;
        text-align: center;
    }
    footer {
    padding: 24px 5% 0;
}

.ft-grid {
    margin-bottom: 24px;
}

.ft-logo {
    margin-bottom: 8px;
}

.ft-logo img {
    width: 160px;
}
}

@media (min-width: 769px) {
    .testi-dots,
    .testi-nav {
        display: none !important;
    }
}
.cta-contact-section {
    margin-bottom: 0;
}
    
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
    .hero {
        padding: 36px 4% 28px;
    }

    .about,
    .services,
    .why,
    .process,
    .testi {
        padding: 48px 4%;
    }

    .numbers {
        padding: 40px 4%;
    }

    .cta-contact-section {
        margin: 0 0 40px;
        border-radius: 0;
        padding: 40px 20px;
    }

    footer {
        padding: 40px 4% 0;
    }

    .num-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .num-card {
        padding: 20px 16px;
    }

    .hero-pill {
        font-size: 11px;
        padding: 6px 14px;
    }

    .trust-bar {
        padding: 20px 4%;
    }

    .tb-logos {
        gap: 20px;
    }

    .tb-logo {
        font-size: 12px;
    }

    .why-panel {
        padding: 28px 24px;
    }

    .wp-chips {
        gap: 6px;
    }

    .wp-chip {
        font-size: 11px;
        padding: 4px 10px;
    }

    .cfc-title {
        font-size: 17px;
    }

    .cta-form-card {
        padding: 28px 20px 24px;
    }

    .about-img-placeholder {
        height: 240px;
    }

    .aip-icon {
        font-size: 52px;
    }

    .sk-lbl {
        min-width: 120px;
        font-size: 12px;
    }

    .ft-logo img {
        width: 180px;
    }

    .ft-bottom {
        margin: 0 -4%;
        padding: 16px 4%;
    }
    footer {
    padding: 20px 4% 0;
}

.ft-logo img {
    width: 150px;
}
}

@media (min-width: 769px) {

    .nav-menu-btn,
    .nav-mobile-drawer {
        display: none !important;
    }
} 
/* ── MOBILE TESTIMONIAL SLIDER ── */
@media (max-width: 768px) {
    .testi-grid {
        display: block;
        position: relative;
        overflow: hidden;
    }

    .t-card {
        display: none;
        animation: slideIn .35s ease;
    }

    .t-card.active {
        display: block;
    }

    @keyframes slideIn {
        from { opacity: 0; transform: translateX(30px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    .testi-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }

    .testi-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: background .2s, transform .2s;
    }

    .testi-dot.active {
        background: var(--blue-mid);
        transform: scale(1.25);
    }

    .testi-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
    }

    .testi-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1.5px solid var(--border);
        background: #fff;
        color: var(--ink);
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .2s;
    }

    .testi-btn:hover {
        border-color: var(--blue-mid);
        color: var(--blue-mid);
    }

    .testi-counter {
        font-size: 13px;
        color: var(--muted);
        font-weight: 500;
        min-width: 40px;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .testi-dots,
    .testi-nav {
        display: none !important;
    }
}