:root {
    --bg: #f7f7ff;
    --primary: #1450de;
    --navy: #102c6d;
    --muted: #475569;
    --faint: #94a3b8;
}

.svc-hero { background-color: #f7f7ff; background-image: linear-gradient(rgba(20, 80, 222, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 80, 222, 0.05) 1px, transparent 1px); background-size: 56px 56px; position: relative; overflow: hidden; padding: 55px 0 55px; }

.svc-hero-wrap { display: flex; align-items: center; flex-wrap: wrap; max-width: 1290px; margin: 0 auto; width: 100%; }

.svc-hero-content { padding-right: 32px; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(20, 80, 222, 0.07); border: 1px solid rgba(20, 80, 222, 0.22); border-radius: 50px; padding: 6px 16px; font-size: 12.5px; color: var(--primary); font-weight: 500; letter-spacing: 0.03em; margin-bottom: 1.4rem; text-transform: uppercase; }

.badge-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 7px rgba(20, 80, 222, 0.6); animation: pulse-dot 1.8s ease-in-out infinite; }

.svc-hero-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.72; max-width: 460px; margin-top: 1.2rem; margin-bottom: 0; }

.svc-hero-visual { display: flex; align-items: center; justify-content: center; min-height: 340px; }

.svc-canvas-wrap { width: 100%; }

h1 { margin: auto; }

.t-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.t-accent { background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

@keyframes pulse-dot {
    0%,
    100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.72); }
}

/* ── Redesigned service cards ── */
.service-two-business-item { background: #fff; border: 1.5px solid rgba(20, 80, 222, 0.1); border-radius: 18px; padding: 36px 32px 32px; display: flex !important; flex-direction: column; gap: 0; height: auto !important; position: relative; text-decoration: none; color: inherit; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; box-shadow: 0 4px 20px rgba(16, 44, 109, 0.05); overflow: visible !important; }

.service-two-business-item:hover { border-color: rgba(20, 80, 222, 0.3); box-shadow: 0 12px 40px rgba(16, 44, 109, 0.12); transform: translateY(-4px) !important; }

.svc-card-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(20, 80, 222, 0.1) 0%, rgba(16, 44, 109, 0.08) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; padding: 12px; }

.svc-card-icon svg { width: 24px; height: 24px; color: var(--primary); transition: color 0.25s; }

.svc-card-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }

.svc-card-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.68; flex: 1; margin-bottom: 24px; text-align: center; }

.svc-card-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--primary); margin-top: auto; }

.svc-card-arrow svg { width: 15px; height: 15px; transition: .2s all linear; }

.service-two-business-item:hover .svc-card-arrow svg { transform: rotate(-45deg) }

/* ── APP DEV PIPELINE CARD ──────────────────── */

.devflow-card-wrap { width: 100%; perspective: 900px; display: flex; align-items: center; justify-content: end; }

.devflow-card { width: 100%; max-width: 360px; background: rgba(255, 255, 255, 0.93); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(20, 80, 222, 0.14); border-radius: 20px; box-shadow: 0 8px 48px rgba(20, 80, 222, 0.14), 0 2px 12px rgba(20, 80, 222, 0.07); overflow: hidden; animation: float-card 5s ease-in-out infinite; transform-style: preserve-3d; }

@keyframes float-card {
    0%,
    100% { transform: rotateX(6deg) rotateY(-6deg) translateY(0px); }
    50% { transform: rotateX(4deg) rotateY(-4deg) translateY(-10px); }
}

/* Chrome bar */
.dfc-chrome { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(20, 80, 222, 0.04); border-bottom: 1px solid rgba(20, 80, 222, 0.09); }

.dfc-wdots { display: flex; gap: 5px; flex-shrink: 0; }

.dfc-wdots span { width: 10px; height: 10px; border-radius: 50%; display: block; }

.dfc-tab { flex: 1; font-size: 11px; font-weight: 500; color: var(--muted); font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace; }

.dfc-running-badge { display: flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 600; color: var(--primary); background: rgba(20, 80, 222, 0.07); border: 1px solid rgba(20, 80, 222, 0.18); border-radius: 20px; padding: 3px 9px; flex-shrink: 0; }

.dfc-blinker { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: blink-dot 1s ease-in-out infinite; }

@keyframes blink-dot {
    0%,
    100% { opacity: 1; }
    50% { opacity: 0.15; }
}

/* Stages list */
.dfc-stages { padding: 8px 14px 4px; display: flex; flex-direction: column; gap: 2px; }

.dfc-stage { display: flex; gap: 10px; animation: fade-up 0.4s ease calc(var(--dl, 0s)) both; }

.dfc-stage-dim .dfc-s-name { opacity: 0.45; }

.dfc-stage-dim .dfc-s-sub { opacity: 0.35; }

/* Left track: node + connector line */
.dfc-s-track { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 20px; padding-top: 5px; }

.dfc-s-node { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }

.dfc-node-done { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 0 10px rgba(34, 197, 94, 0.35); }

.dfc-node-active { background: rgba(20, 80, 222, 0.08); border: 2px solid var(--primary); box-shadow: 0 0 12px rgba(20, 80, 222, 0.32); animation: node-pulse 2s ease-in-out infinite; }

@keyframes node-pulse {
    0%,
    100% { box-shadow: 0 0 10px rgba(20, 80, 222, 0.28); }
    50% { box-shadow: 0 0 20px rgba(20, 80, 222, 0.52); }
}

.dfc-node-spin { position: absolute; inset: -1px; border-radius: 50%; border: 2px solid transparent; border-top-color: var(--primary); animation: spin-anim 0.9s linear infinite; }

@keyframes spin-anim {
    to { transform: rotate(360deg); }
}

.dfc-node-pending { background: rgba(148, 163, 184, 0.18); border: 2px solid rgba(148, 163, 184, 0.38); }

.dfc-s-line { flex: 1; width: 2px; background: rgba(20, 80, 222, 0.12); position: relative; overflow: hidden; min-height: 14px; margin: 3px 0; border-radius: 1px; }

.dfc-line-faint { background: rgba(148, 163, 184, 0.15); }

.dfc-s-flow { position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 6px var(--primary); animation: flow-down var(--fd, 2.4s) ease-in-out infinite; animation-delay: var(--fo, 0s); }

.dfc-flow-faint { background: var(--faint); box-shadow: none; opacity: 0.4; }

@keyframes flow-down {
    0% { top: -6px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% + 6px); opacity: 0; }
}

/* Right: body content */
.dfc-s-body { flex: 1; min-width: 0; padding-bottom: 4px; }

.dfc-s-row { display: flex; align-items: center; gap: 8px; }

.dfc-s-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.dfc-s-info { flex: 1; min-width: 0; }

.dfc-s-name { font-size: 12px; font-weight: 600; color: var(--navy); line-height: 1.2; }

.dfc-s-sub { font-size: 10px; color: var(--faint); margin-top: 1px; }

/* Status badges */
.dfc-s-badge { flex-shrink: 0; font-size: 10px; font-weight: 600; border-radius: 20px; padding: 2px 8px; letter-spacing: 0.01em; display: flex; align-items: center; gap: 4px; }

.dfc-badge-done { background: rgba(34, 197, 94, 0.1); color: #16a34a; border: 1px solid rgba(34, 197, 94, 0.22); }

.dfc-badge-run { background: rgba(20, 80, 222, 0.08); color: var(--primary); border: 1px solid rgba(20, 80, 222, 0.22); }

.dfc-badge-wait { background: rgba(148, 163, 184, 0.1); color: var(--faint); border: 1px solid rgba(148, 163, 184, 0.22); }

/* Progress bar */
.dfc-s-bar { height: 3px; background: rgba(20, 80, 222, 0.07); border-radius: 2px; margin-top: 5px; overflow: hidden; }

.dfc-s-fill { height: 100%; background: linear-gradient(90deg, var(--primary), #4c7ef3); border-radius: 2px; transition: width 0.6s ease; width: 0%; }

.dfc-fill-anim { width: 52%; animation: fill-progress 4s ease-in-out infinite; }

@keyframes fill-progress {
    0% { width: 52%; }
    45% { width: 74%; }
    70% { width: 61%; }
    100% { width: 52%; }
}

/* Footer metrics */
.dfc-footer { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 9px 14px; background: rgba(20, 80, 222, 0.03); border-top: 1px solid rgba(20, 80, 222, 0.08); }

.dfc-metric { display: flex; flex-direction: column; align-items: center; gap: 1px; }

.dfc-m-val { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1; }

.dfc-m-lbl { font-size: 9.5px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

.dfc-sep { width: 1px; height: 28px; background: rgba(20, 80, 222, 0.1); }

/* ===== Case Study / Latest Projects Section ===== */
.cs-sect { background: #fff; padding: 80px 0; border-top: 1px solid rgba(20,78,216,0.07); }
.cs-con { position: relative; padding-left: 15px; padding-right: 15px; }
.cs-head { text-align: center; margin-bottom: 48px; }
.cs-title { font-size: 2rem; font-weight: 800; color: #102C6D; line-height: 1.3; margin: 0 0 14px; }
.cs-title em { font-style: normal; background: linear-gradient(135deg, #144ED8, #102C6D); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cs-title-line { width: 40px; height: 3px; background: #144ED8; border-radius: 3px; margin: 0 auto; }
/* 4-column grid */
.cs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
/* Card */
.cs-card { background: #fff; border: 1.5px solid rgba(20,78,216,0.1); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 0; transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s; text-decoration: none; color: inherit; cursor: pointer; }
.cs-card:hover { box-shadow: 0 10px 36px rgba(20,78,216,0.1); border-color: rgba(20,78,216,0.22); transform: translateY(-4px); }
/* Metric row */
.cs-metric-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 10px; }
.cs-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--icbg, rgba(20,78,216,0.1)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cs-icon svg { width: 20px; height: 20px; }
.cs-metric-body { flex: 1; }
.cs-num { display: block; font-size: 1.9rem; font-weight: 800; line-height: 1.1; }
.cs-metric-title { font-size: 13.5px; font-weight: 700; color: #0a163a; margin: 3px 0 0; }
.cs-metric-desc { font-size: 12.5px; color: #64748b; line-height: 1.6; margin: 0 0 16px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
/* Divider */
.cs-divider { height: 1px; background: rgba(20,78,216,0.08); margin-bottom: 16px; }
/* Info bottom */
.cs-info { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.cs-name { font-size: 14.5px; font-weight: 700; color: #0a163a; }
.cs-tags { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.cs-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 600; color: #64748b; background: #f8faff; border: 1px solid rgba(20,78,216,0.1); border-radius: 20px; padding: 3px 10px; }
.cs-tag svg { opacity: 0.65; }
.cs-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: #144ED8; text-decoration: none; transition: gap 0.2s; }
.cs-link:hover { gap: 8px; }
/* ── Card colour variants (cycle every 4) ── */
.cs-c1 .cs-icon { background: rgba(20,78,216,0.1); }
.cs-c1 .cs-icon svg { color: #144ED8; }
.cs-c1 .cs-num { color: #144ED8; }
.cs-c1 .cs-link { color: #144ED8; }
.cs-c2 .cs-icon { background: rgba(22,163,74,0.1); }
.cs-c2 .cs-icon svg { color: #16a34a; }
.cs-c2 .cs-num { color: #16a34a; }
.cs-c2 .cs-link { color: #16a34a; }
.cs-c3 .cs-icon { background: rgba(217,119,6,0.1); }
.cs-c3 .cs-icon svg { color: #d97706; }
.cs-c3 .cs-num { color: #d97706; }
.cs-c3 .cs-link { color: #d97706; }
.cs-c4 .cs-icon { background: rgba(79,70,229,0.1); }
.cs-c4 .cs-icon svg { color: #4F46E5; }
.cs-c4 .cs-num { color: #4F46E5; }
.cs-c4 .cs-link { color: #4F46E5; }
/* ===== Partner / Why Partner With Us Section ===== */
.partner-sect { background: #fbfcff; padding: 80px 0 0; }
.partner-con { position: relative; padding-left: 10px; padding-right: 35px; }
.partner-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 70px; align-items: start; margin-bottom: 70px; }

/* LHS */
.partner-badge { background: #eff3ff; color: #144ED8; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 20px; display: inline-block; margin-bottom: 24px; text-transform: uppercase; }
.partner-title { font-size: 2.5rem; font-weight: 800; line-height: 1.2; color: #102C6D; margin-bottom: 24px; }
.partner-title em { font-style: normal; background: linear-gradient(135deg, #144ED8, #102C6D); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.partner-desc { color: #64748b; font-size: 15px; line-height: 1.7; font-weight: 500; margin-bottom: 24px; }
.partner-divider { width: 36px; height: 2px; background: #144ED8; margin-bottom: 45px; }
/* Left sub-features with dashed vertical connector */
.partner-points { display: flex; flex-direction: column; gap: 40px; position: relative; }
/* Dashed line: left = icon-width/2 = 52/2 = 26px, skip first/last icon radius */
.partner-points::before { content: ''; position: absolute; left: 25px; top: 52px; bottom: 52px; width: 1px; border-left: 1.5px dashed #c2cfe8; z-index: 1; }
.partner-point { display: flex; gap: 20px; align-items: flex-start; position: relative; z-index: 2; }
.partner-picon { width: 52px; height: 52px; background: #eff3ff; border-radius: 50%; border: 1.5px solid rgba(20,78,216,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.partner-picon svg { width: 22px; height: 22px; color: #144ED8; }
.partner-ptext { padding-top: 4px; }
.partner-ptitle { margin-top: 0px; display: block; font-size: 15.5px; font-weight: 700; color: #0a163a; margin-bottom: 6px; }
.partner-pdesc { color: #64748b; font-size: 13px; line-height: 1.65; margin: 0; }

/* RHS — chevron timeline */
.partner-timeline { display: flex; position: relative; padding-left: 65px; }
.partner-tline { position: absolute; left: 19px; top: 55px; bottom: 55px; width: 4px; background: linear-gradient(to bottom, #a8c0ff 0%, #144ED8 50%, #102C6D 100%); border-radius: 4px; }
.partner-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 18px; height: 18px; background: #fff; border: 3.5px solid #144ED8; border-radius: 50%; box-shadow: 0 0 12px 3px rgba(20,78,216,0.4); z-index: 10; }
.partner-dot.pd1 { top: 0; }
.partner-dot.pd2 { top: calc(25% - 9px); }
.partner-dot.pd3 { top: calc(50% - 9px); }
.partner-dot.pd4 { top: calc(75% - 9px); }
.partner-dot.pd5 { bottom: 0; }
.partner-cards { display: flex; flex-direction: column; width: 100%; }

/* Chevron card shape */
.partner-tcard { position: relative; background: linear-gradient(135deg, #fff 0%, #f6f9ff 100%); border-top: 1.5px solid #e2eafc; border-bottom: 1.5px solid #e2eafc; padding: 24px 35px 24px 0px; display: flex; align-items: center; gap: 22px; min-height: 110px; border-radius: 16px 40px 40px 16px; box-shadow: 0 8px 24px rgba(20,78,216,0.03); overflow: visible; opacity: 0; transition: opacity 0.45s ease calc(var(--ti,0) * 0.1s), transform 0.3s ease; transform: translateX(20px); }
.partner-sect.partner-in .partner-tcard { opacity: 1; transform: translateX(0); }
.partner-sect.partner-in .partner-tcard:hover { transform: translateX(5px); transition-delay: 0s; }
/* Left notch */
.partner-tcard::before { content: ''; position: absolute; left: -37px; top: 50%; transform: translateY(-50%) rotate(-45deg) scaleX(-1); width: 76px; height: 76px; background: linear-gradient(135deg, #fff 0%, #f6f9ff 100%); border-top: 1.5px solid #e2eafc; border-right: 1.5px solid #e2eafc; border-radius: 0 16px 0 0; z-index: 1; }
/* Right cap */
.partner-tcard::after { content: ''; position: absolute; right: -21px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 76px; height: 76px; background: linear-gradient(135deg, #fff 0%, #f6f9ff 100%); border-top: 1.5px solid #e2eafc; border-right: 1.5px solid #e2eafc; border-radius: 0 16px 0 0; z-index: 1; }
/* ── Card colour variants — flat solid pastels (gradient causes 3-part mismatch on rotated pseudo-elements) ── */
.partner-tcard--blue,   .partner-tcard--blue::before,   .partner-tcard--blue::after   { background: #f5f9ff; }
.partner-tcard--blue   { border-top-color: #d8e8fd; border-bottom-color: #d8e8fd; }
.partner-tcard--blue::before, .partner-tcard--blue::after   { border-top-color: #d8e8fd; border-right-color: #d8e8fd; }
.partner-tcard--blue   .partner-ticon svg { color: #144ED8; }
.partner-tcard--blue   .partner-dots { background-image: radial-gradient(#144ED8 2px, transparent 2px); opacity: 0.35; }

.partner-tcard--navy,   .partner-tcard--navy::before,   .partner-tcard--navy::after   { background: #f0f5ff; }
.partner-tcard--navy   { border-top-color: #ccd8f8; border-bottom-color: #ccd8f8; }
.partner-tcard--navy::before, .partner-tcard--navy::after   { border-top-color: #ccd8f8; border-right-color: #ccd8f8; }
.partner-tcard--navy   .partner-ticon svg { color: #102C6D; }
.partner-tcard--navy   .partner-dots { background-image: radial-gradient(#102C6D 2px, transparent 2px); opacity: 0.3; }

.partner-tcard--cyan,   .partner-tcard--cyan::before,   .partner-tcard--cyan::after   { background: #edfbff; }
.partner-tcard--cyan   { border-top-color: #b8e8f8; border-bottom-color: #b8e8f8; box-shadow: 0 8px 24px rgba(14,165,233,0.05); }
.partner-tcard--cyan::before, .partner-tcard--cyan::after   { border-top-color: #b8e8f8; border-right-color: #b8e8f8; }
.partner-tcard--cyan   .partner-ticon svg { color: #0ea5e9; }
.partner-tcard--cyan   .partner-dots { background-image: radial-gradient(#0ea5e9 2px, transparent 2px); opacity: 0.45; }

.partner-tcard--purple, .partner-tcard--purple::before, .partner-tcard--purple::after { background: #faf4ff; }
.partner-tcard--purple { border-top-color: #e2ccff; border-bottom-color: #e2ccff; box-shadow: 0 8px 24px rgba(124,58,237,0.04); }
.partner-tcard--purple::before, .partner-tcard--purple::after { border-top-color: #e2ccff; border-right-color: #e2ccff; }
.partner-tcard--purple .partner-ticon svg { color: #7C3AED; }
.partner-tcard--purple .partner-dots { background-image: radial-gradient(#7C3AED 2px, transparent 2px); opacity: 0.45; }

.partner-tcard--indigo, .partner-tcard--indigo::before, .partner-tcard--indigo::after { background: #f2f5ff; }
.partner-tcard--indigo { border-top-color: #c4d0f8; border-bottom-color: #c4d0f8; box-shadow: 0 8px 24px rgba(20,78,216,0.05); }
.partner-tcard--indigo::before, .partner-tcard--indigo::after { border-top-color: #c4d0f8; border-right-color: #c4d0f8; }
.partner-tcard--indigo .partner-ticon svg { color: #4F46E5; }
.partner-tcard--indigo .partner-dots { background-image: radial-gradient(#4F46E5 2px, transparent 2px); opacity: 0.45; }
.partner-ticon { z-index: 2; width: 54px; height: 54px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(20,78,216,0.04); border: 1.5px solid #f0f4ff; }
.partner-ticon svg { width: 20px; height: 20px; color: #144ED8; }
.partner-tcontent { flex-grow: 1; }
.partner-ttitle { font-size: 17px; font-weight: 700; color: #0a163a; margin: 0 0 5px; }
.partner-tdesc-text { color: #64748b; font-size: 13px; line-height: 1.5; max-width: 440px; margin: 0; }
.partner-dots { z-index: 2; width: 36px; height: 60px; background-image: radial-gradient(#94a3b8 2px, transparent 2px); background-size: 9px 9px; opacity: 0.45; margin-left: auto; margin-right: 4px; flex-shrink: 0; }

/* Stats bar: white card grid */
.partner-stats-wrap { padding: 0 0 80px; }
.partner-stats { background: #fff; border: 1px solid #eef2f6; border-radius: 24px; padding: 35px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; box-shadow: 0 10px 35px rgba(10,22,58,0.02); }
.partner-stat { display: flex; gap: 16px; align-items: flex-start; }
.partner-stat:not(:last-child) { border-right: 1px solid #f1f5f9; padding-right: 16px; }
.partner-stat-icon { width: 50px; height: 50px; background: #f0f4ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.partner-stat-icon svg { width: 22px; height: 22px; color: #144ED8; }
.partner-stat-num { display: block; font-size: 26px; font-weight: 800; color: #144ED8; line-height: 1.1; margin-bottom: 4px; }
.partner-stat-title { display: block; font-size: 13px; font-weight: 700; color: #0a163a; margin-bottom: 4px; }
.partner-stat-desc { font-size: 12px; color: #64748b; line-height: 1.4; margin: 0; }

/* ===== MVP Wheel Section ===== */
.mvp2-sect { background-color: #F7F7FF; background-size: 58px 58px; padding: 80px 0 72px; border-top: 1px solid rgba(20,78,216,0.08); border-bottom: 1px solid rgba(20,78,216,0.08); }
.mvp2-con { position: relative; }
.mvp2-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(20,78,216,0.07); border: 1px solid rgba(20,78,216,0.2); border-radius: 50px; padding: 6px 18px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #144ED8; }

/* ── Two-column layout ── */
.mvp2-layout { display: flex; align-items: center; gap: 60px; padding-left: 15px; padding-right: 15px; }
.mvp2-lhs { flex: 0 0 auto; }
.mvp2-wheel { position: relative; width: 700px; height: 700px; margin-left: -55px; }

/* ── RHS content panel ── */
.mvp2-rhs { flex: 1; min-width: 300px; }
.mvp2-rhs .mvp2-badge { margin-bottom: 16px; display: inline-flex; }
.mvp2-rhs-title { font-size: 2.15rem; font-weight: 800; color: #102C6D; line-height: 1.22; margin: 0 0 16px; }
.mvp2-rhs-title em { font-style: normal; background: linear-gradient(135deg, #144ED8, #102C6D); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mvp2-rhs-desc { font-size: 1.08rem; color: #475569; line-height: 1.72; margin: 0 0 28px; max-width: 460px; }
.mvp2-rhs-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.mvp2-rhs-point { display: flex; align-items: flex-start; gap: 14px; }
.mvp2-rhs-picon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: rgba(20,78,216,0.07); border: 1px solid rgba(20,78,216,0.15); display: flex; align-items: center; justify-content: center; }
.mvp2-rhs-picon svg { width: 18px; height: 18px; color: #144ED8; }
.mvp2-rhs-ptitle { display: block; font-size: 16px; font-weight: 700; color: #102C6D; margin-bottom: 3px; }
.mvp2-rhs-pdesc { font-size: 13px; color: #64748B; line-height: 1.6; margin: 0; }
.mvp2-rhs-stats { display: flex; align-items: center; gap: 0; background: #fff; border: 1px solid rgba(20,78,216,0.12); border-radius: 16px; padding: 18px 24px; margin-bottom: 28px; box-shadow: 0 4px 20px rgba(20,78,216,0.07); }
.mvp2-rhs-stat { flex: 1; text-align: center; }
.mvp2-rhs-stat-num { display: block; font-size: 1.75rem; font-weight: 800; background: linear-gradient(135deg, #144ED8, #102C6D); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; }
.mvp2-rhs-stat-lbl { display: block; font-size: 11px; font-weight: 600; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.mvp2-rhs-stat-div { width: 1px; height: 40px; background: rgba(20,78,216,0.12); flex-shrink: 0; }
.mvp2-rhs .mvp2-cta-btn { border-radius: 50px; font-size: 14px; padding: 13px 30px; }

/* ── SVG overlay ── */
.mvp2-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }

/* ── Keyframes ── */
@keyframes mvp2-spin   { to { transform: rotate( 360deg); } }
@keyframes mvp2-unspin { to { transform: rotate(-360deg); } }
@keyframes mvp2-item-steady {
  from { transform: translate(-50%, -50%) scale(1) rotate(  0deg); }
  to   { transform: translate(-50%, -50%) scale(1) rotate(-360deg); }
}

/* ── Rotor ── */
.mvp2-rotor { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform-origin: 50% 50%; }
.mvp2-sect.mvp2-in .mvp2-rotor { animation: mvp2-spin 65s linear 4s infinite; }

/* ── Ring draw ── */
.mvp2-ring { stroke-dasharray: 1791; stroke-dashoffset: 1791; transition: stroke-dashoffset 3s linear 0.3s; }
.mvp2-sect.mvp2-in .mvp2-ring { stroke-dashoffset: 0; }

/* ── Segments ── */
.mvp2-seg { fill: rgba(20,78,216,0.055); stroke: rgba(20,78,216,0.15); stroke-width: 1;
  opacity: 0; transform-box: view-box; transform-origin: 350px 350px; transform: scale(0.82);
  transition: opacity 0.55s ease calc(0.5s + var(--si,0) * 0.5s),
              transform 0.7s cubic-bezier(0.34,1.56,0.64,1) calc(0.5s + var(--si,0) * 0.5s); }
.mvp2-sect.mvp2-in .mvp2-seg { opacity: 1; transform: scale(1); }

/* ── Boundary dots ── */
.mvp2-dot { opacity: 0; transition: opacity 0.35s ease calc(0.55s + var(--di,0) * 0.5s); }
.mvp2-sect.mvp2-in .mvp2-dot { opacity: 1; }

/* ── Center circle ── */
.mvp2-center { position: absolute; top: 250px; left: 250px; width: 200px; height: 200px; border-radius: 50%; background: #EAEDFD; border: 1px solid rgba(20,78,216,0.12); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px 18px; z-index: 5; overflow: hidden; opacity: 0; transform: scale(0.7); transition: opacity 0.6s ease 0.05s, transform 0.7s cubic-bezier(0.34,1.56,0.64,1) 0.05s; }
.mvp2-sect.mvp2-in .mvp2-center { opacity: 1; transform: scale(1); }
.mvp2-logo-mark { max-width: 50px; max-height: 32px; width: auto; height: auto; margin: 0 auto 6px; display: block; object-fit: contain; flex-shrink: 0; }
.mvp2-ctitle { font-size: 11.5px; font-weight: 800; color: #102C6D; line-height: 1.32 !important; margin: 0 !important; letter-spacing: 0.01em; }
.mvp2-ctitle em { font-style: normal; background: linear-gradient(135deg, #144ED8, #102C6D); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mvp2-cline { width: 26px; height: 2px; background: linear-gradient(90deg, #144ED8, #102C6D); border-radius: 2px; margin: 6px auto; flex-shrink: 0; }
.mvp2-csub { font-size: 8px; color: rgba(16,44,109,0.52); line-height: 1.4 !important; margin: 0 !important; }

/* ── Number circles ── */
.mvp2-num { position: absolute; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #144ED8 0%, #102C6D 100%); color: #F7F7FF; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; z-index: 6; box-shadow: 0 4px 14px rgba(20,78,216,0.35); opacity: 0; transform: translate(-50%, -50%) scale(0); transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1); }
.mvp2-sect.mvp2-in .mvp2-num { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.mvp2-num span { display: block; }
.mvp2-sect.mvp2-in .mvp2-num span { animation: mvp2-unspin 65s linear 4s infinite; }

/* Number positions */
.mvp2-n1 { top: 95px;   left: 498px;  transition-delay: 0.60s; }
.mvp2-n2 { top: 350px;  left: 645px;  transition-delay: 1.10s; }
.mvp2-n3 { top: 606px;  left: 498px;  transition-delay: 1.60s; }
.mvp2-n4 { top: 606px;  left: 202px;  transition-delay: 2.10s; }
.mvp2-n5 { top: 350px;  left: 55px;   transition-delay: 2.60s; }
.mvp2-n6 { top: 95px;   left: 202px;  transition-delay: 3.10s; }

/* ── Content items ── */
.mvp2-item { position: absolute; width: 118px; text-align: center; opacity: 0; transform: translate(-50%, -50%) scale(0.82); transition: opacity 0.5s ease calc(0.7s + var(--si,0) * 0.5s), transform 0.6s cubic-bezier(0.34,1.56,0.64,1) calc(0.7s + var(--si,0) * 0.5s); z-index: 4; }
.mvp2-sect.mvp2-in .mvp2-item { opacity: 1; transform: translate(-50%, -50%) scale(1); animation: mvp2-item-steady 65s linear 4s infinite; }

/* Item positions */
.mvp2-i1 { top: 168px; left: 455px; }
.mvp2-i2 { top: 350px; left: 560px; }
.mvp2-i3 { top: 532px; left: 455px; }
.mvp2-i4 { top: 532px; left: 245px; }
.mvp2-i5 { top: 350px; left: 140px; }
.mvp2-i6 { top: 168px; left: 245px; }

/* ── Icons ── */
.mvp2-icon { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1.5px solid rgba(20,78,216,0.18); box-shadow: 0 2px 10px rgba(20,78,216,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 7px; }
.mvp2-icon svg { width: 18px; height: 18px; color: #144ED8; }
.mvp2-ititle { font-size: 12px; font-weight: 800; color: #102C6D; margin: 0 0 4px; line-height: 1.3; }
.mvp2-idesc { font-size: 10px; color: rgba(16,44,109,0.62); line-height: 1.5; margin: 0; }

/* ── CTA ── */
.mvp2-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #144ED8 0%, #102C6D 100%); color: #F7F7FF !important; text-decoration: none; font-size: 15px; font-weight: 700; padding: 14px 36px; border-radius: 50px; box-shadow: 0 8px 32px rgba(20,78,216,0.32); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.mvp2-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(20,78,216,0.45); color: #F7F7FF !important; }
.service-our-process {text-align: center;}
.wwa-identity-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
}
.wwa-eyebrow-line {
  flex: 1;
  max-width: 120px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(20,80,222,0.25));
}
.wwa-eyebrow-line:last-child {
  background: linear-gradient(270deg, transparent, rgba(20,80,222,0.25));
}

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

@media (min-width: 1310px) { .w-col { padding: 0 !important; } }

@media (max-width: 1318px) { .partner-stats-con {padding-left: 15px; padding-right: 15px; } }

/* ── 1200px: tighten gap ── */
@media (max-width: 1200px) {
  .mvp2-layout { flex-direction: column; align-items: center; gap: 32px; }
  .mvp2-lhs { width: 100%; display: flex; justify-content: center; overflow: hidden; }
  .mvp2-wheel { transform: scale(0.78); transform-origin: top center; margin-bottom: -154px; margin-left: 0px; }
  .mvp2-rhs { min-width: unset; width: 100%; max-width: 600px; text-align: center; }
  .mvp2-rhs-desc { max-width: 100%; margin: 0 auto 28px; }
  .mvp2-rhs-title { font-size: 1.75rem; }
  .mvp2-rhs-point { justify-content: flex-start; text-align: left; }
  .mvp2-rhs-stats { max-width: 460px; margin: 0 auto 28px; }
  .mvp2-rhs .mvp2-cta-btn { margin: 0 auto;}
  .mvp2-rhs .mvp2-badge { margin: 0 auto 16px; }

  /* ── ≤1200px: stack vertically, both sides centered ── */
  .partner-layout { grid-template-columns: 1fr; gap: 50px; }
  /* Left: center all content */
  .partner-lhs { max-width: 640px; margin: 0 auto; text-align: center; }
  .partner-badge { margin-left: auto; margin-right: auto; }
  .partner-divider { margin-left: auto; margin-right: auto; }
  .partner-points { align-items: center; }
  .partner-point { text-align: left; max-width: 480px; }
  /* Right: center the timeline */
  .partner-timeline { max-width: 640px; margin: 0 auto; }
  /* Stats: 2 columns */
  .partner-stats { grid-template-columns: repeat(2, 1fr); }
  .partner-stat:nth-child(2) { border-right: none; }
  .partner-con { padding-left: 15px; padding-right: 15px; }
}

/* ── 1050px: stack vertically, wheel scale 0.78 ── */
@media (max-width: 1050px) { .mvp2-wheel { transform: scale(0.72); transform-origin: top center; margin-bottom: -196px; } .mvp2-rhs-title { font-size: 1.6rem; } }

@media (max-width: 1024px) { .cs-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── 992px ── */
@media (max-width: 992px) {
    .devflow-card-wrap { justify-content: center; margin-top: 30px; }
    .devflow-card { max-width: 500px; }
    .svc-hero-sub { max-width: 100% !important; }
}

/* ── 820px: wheel scale 0.68 ── */
@media (max-width: 820px) {
  .mvp2-wheel { transform: scale(0.68); transform-origin: top center; margin-bottom: -224px; }
  .mvp2-rhs-title { font-size: 1.55rem; }
}

@media (max-width: 767px) {
    .svc-hero { padding: 52px 0 44px; }
    .svc-hero-content { padding-right: 0; margin-bottom: 24px; }
    .devflow-card { max-width: 100%; }
}

/* ── 768px: KEY FIX — wheel contained, no overflow ── */
@media (max-width: 768px) {
  .mvp2-layout { flex-direction: column; align-items: center; gap: 24px; }
  .mvp2-lhs { width: 100%; display: flex; justify-content: center; overflow: hidden; }
  .mvp2-wheel { transform: scale(0.62); transform-origin: top center; margin-bottom: -266px; width: 700px; height: 700px; flex-shrink: 0; }
  .mvp2-rhs { min-width: unset; width: 100%; max-width: 580px; text-align: center; }
  .mvp2-rhs-desc { max-width: 100%; }
  .mvp2-rhs-point { justify-content: flex-start; text-align: left; }
  .mvp2-rhs-stats { max-width: 100%; margin: 0 auto 28px; }
  .mvp2-rhs .mvp2-cta-btn { margin: 0 auto; }
  .mvp2-rhs-title { font-size: 1.5rem; }

  /* ── ≤768px: hide timeline line, remove chevron shapes, simple cards ── */
  .partner-sect { padding: 60px 0 0; }
  .partner-title { font-size: 2rem; }
  .partner-lhs { max-width: 100%; }
  /* Hide the vertical line and all its dots */
  .partner-tline { display: none; }
  /* Remove timeline left padding since line is gone */
  .partner-timeline { max-width: 100%; padding-left: 0; }
  /* Simple rectangle cards — no chevron before/after */
  .partner-tcard::before, .partner-tcard::after { display: none; }
  .partner-tcard { padding: 16px 18px; gap: 14px; border-radius: 0; }
  .partner-ttitle { font-size: 15px; }
  .partner-dots { display: none; }
}

/* ── 640px: wheel scale 0.56 ── */
@media (max-width: 640px) {
  .mvp2-sect { padding: 52px 0 40px; }
  .mvp2-wheel { transform: scale(0.56); transform-origin: top center; margin-bottom: -308px; }
  .mvp2-rhs-title { font-size: 1.4rem; }
  .mvp2-rhs-desc { font-size: 0.92rem; }
  .mvp2-rhs-point { text-align: left; }
  .mvp2-rhs .mvp2-cta-btn { width: 100%; justify-content: center; }
  .mvp2-rhs-stats { max-width: 100%; flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
  .mvp2-rhs-stat-div { display: none; }
  .mvp2-rhs-stat { flex: 0 0 calc(50% - 5px); text-align: left; }
  .mvp2-rhs-stat-num { font-size: 1.4rem; }

  /* ── ≤640px: mobile ── */
  .partner-title { font-size: 1.7rem; }
  .partner-stats { grid-template-columns: 1fr; }
  .partner-stat { border-right: none !important; padding-right: 0 !important; }
  .partner-tcard { padding: 14px 16px; }
  .partner-tcard::before, .partner-tcard::after { display: none; }
  .partner-dots { display: none; }
}

@media (max-width: 600px) { .cs-grid { grid-template-columns: 1fr; } .cs-title { font-size: 1.6rem; } }

/* ── 480px: wheel scale 0.44 ── */
@media (max-width: 480px) {
  .mvp2-sect { padding: 40px 0 36px; }
  .mvp2-wheel { transform: scale(0.44); transform-origin: top center; margin-bottom: -392px; }
  .mvp2-rhs-title { font-size: 1.25rem; }
  .mvp2-layout { gap: 20px; }
}