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

:root {
  --navy:   #25284C;
  --cream:  #F6F1E7;
  --mint:   #E6FFC9;
  --sky:    #A0E6F3;
  --teal:   #E3F4F8;
  --cyan:   #00D7FF;
  --gray:   #6B7280;
  --grad:   linear-gradient(135deg, #E6FFC9 0%, #A0E6F3 100%);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', sans-serif;
  color: var(--navy);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════════
   HERO - preserved exactly from your design
══════════════════════════════════════════ */
.hero {
  min-height: 85vh;
  background: linear-gradient(135deg, #b8f0d8 0%, #c8effa 50%, #a8e4f5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 36px 24px 0;
  position: relative;
  overflow: hidden;
}

/* Glassy waves - use your actual uploaded image */
.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background: url('../img/s88-header-image.jpg') center bottom / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 18%, black 36%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 18%, black 36%);
}

/* Pill nav bar */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 100px;
  padding: 12px 12px 12px 26px;
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 24px rgba(37,40,76,0.08);
}

.nav-logo {
  height: 26px;
  width: auto;
  display: block;
  margin-right: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding: 9px 21px;
  border-radius: 100px;
  transition: background 0.2s;
}
.nav-links a:hover { background: rgba(37,40,76,0.06); }

.nav-links .services-link {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links .services-link svg { opacity: 0.5; transition: transform 0.2s; }
.nav-links li:hover .services-link svg { transform: rotate(180deg); }

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 9px 23px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
}

/* ── Dropdown shared ── */
.nav-links li { position: relative; }

/* ── Mega menu (Services) ── */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 660px;
  padding-top: 10px;
  z-index: 100;
}
.nav-links li:hover .mega-menu { display: block; }

.mega-inner {
  background: #fff;
  border: 1px solid rgba(37,40,76,0.09);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(37,40,76,0.12);
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.mega-item {
  padding: 22px 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.18s;
  cursor: pointer;
}
.mega-item:hover { background: #F6F1E7; }
.nav-links a.mega-item { display: flex; padding: 22px 24px; border-radius: 14px; }
.nav-links a.mega-item:hover { background: #F6F1E7; }

.mega-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.mega-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.mega-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.mega-menu-footer {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(37,40,76,0.07);
  margin-top: 4px;
  padding: 14px 16px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega-menu-footer span {
  font-size: 14px;
  color: var(--gray);
}
.mega-menu-footer a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 !important;
  border-radius: 0 !important;
}
.mega-menu-footer a:hover { background: none !important; opacity: 0.65; }

/* ── Simple dropdown (About) ── */
.simple-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  z-index: 100;
  min-width: 160px;
}
.nav-links li:hover .simple-dropdown { display: block; }

.simple-inner {
  background: #fff;
  border: 1px solid rgba(37,40,76,0.09);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(37,40,76,0.1);
  padding: 6px;
  display: flex;
  flex-direction: column;
}

.simple-dropdown a {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--navy) !important;
  padding: 10px 18px !important;
  border-radius: 10px !important;
  white-space: nowrap;
  display: block;
}
.simple-dropdown a:hover { background: #F6F1E7 !important; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1080px;
  padding: 90px 0 0;
}

.hero-content h1 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 28px;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.75;
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  padding: 14px 32px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.15s;
}
.hero-btn:hover { background: rgba(255,255,255,0.55); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   BELOW THE FOLD - clean & original
══════════════════════════════════════════ */

/* ── Metrics strip ── */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(37,40,76,0.08);
}

.metric-cell {
  padding: 44px 48px;
  border-right: 1px solid rgba(37,40,76,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.metric-cell:last-child { border-right: none; }

.metric-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}
.metric-label strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

/* ── Section label ── */
.sec-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  font-family: 'IBM Plex Mono', monospace;
}

/* ── Services ── */
.services {
  padding: 80px 80px;
  border-top: 1px solid rgba(37,40,76,0.08);
}

.services-top {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.services-top h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.services-top p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(37,40,76,0.07);
  border: 1px solid rgba(37,40,76,0.07);
  border-radius: 20px;
  overflow: hidden;
}

.svc {
  background: #fff;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.svc:hover { background: #fafcff; }

.svc-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.svc h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.svc p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

.svc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.svc:hover .svc-link { opacity: 0.6; transform: translateX(0); }

/* ── Case Study ── */
.case-study {
  background: var(--cream);
  padding: 100px 80px;
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cs-text h2 {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cs-client-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.cs-client-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.cs-client-tag span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}

.cs-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cs-quote {
  border-left: 2.5px solid var(--cyan);
  padding: 20px 24px;
  background: rgba(255,255,255,0.6);
  border-radius: 0 10px 10px 0;
  margin-bottom: 32px;
}
.cs-quote p {
  font-size: 15.5px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 10px;
}
.cs-quote cite {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  color: var(--gray);
  font-family: 'IBM Plex Mono', monospace;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn-solid:hover { background: #1a1d38; transform: translateY(-1px); }

/* CS stats panel */
.cs-panel {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
}

.cs-panel-header {
  background: linear-gradient(135deg, rgba(160,230,243,0.15), rgba(230,255,201,0.1));
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cs-panel-header .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(160,230,243,0.8);
  margin-bottom: 8px;
}
.cs-panel-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  opacity: 0.9;
}

.cs-stat-row {
  display: flex;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 20px;
}
.cs-stat-row:last-child { border-bottom: none; }

.cs-stat-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--sky);
  min-width: 88px;
  line-height: 1;
}

.cs-stat-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ── Process / Pillars ── */
.process {
  padding: 100px 80px;
  border-top: 1px solid rgba(37,40,76,0.08);
}

.process-top {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.process-top h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.process-top p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
}

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

.pillar {
  padding: 36px;
  border: 1px solid rgba(37,40,76,0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}
.pillar:hover { border-color: rgba(0,215,255,0.3); }

.pillar-n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.1em;
}

.pillar h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.pillar p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── Testimonial ── */
.testimonial {
  padding: 80px;
  background: var(--cream);
  border-top: 1px solid rgba(37,40,76,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.testi-images {
  position: relative;
  height: 460px;
}

/* Main large image */
.testi-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 88%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(37,40,76,0.12);
}

/* Ad creative thumbnails stacked bottom-left */
.testi-img-thumb {
  position: absolute;
  width: 38%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid var(--cream);
  box-shadow: 0 8px 24px rgba(37,40,76,0.14);
}

.testi-img-thumb:first-of-type {
  bottom: 32px;
  left: 0;
  z-index: 2;
}

.testi-img-thumb:last-of-type {
  bottom: 0;
  left: 22%;
  z-index: 1;
  opacity: 0.85;
}

.testi-inner {
  max-width: 780px;
}

blockquote {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-attr {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  flex-shrink: 0;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.testi-role {
  font-size: 14px;
  color: var(--gray);
}

.testi-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1.5px solid var(--cyan);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.testi-link:hover { opacity: 0.65; }

/* ── CTA ── */
.cta-wrap {
  padding: 40px 80px 80px;
}

.cta-box {
  background: var(--navy);
  border-radius: 24px;
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient orb in CTA */
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(160,230,243,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 200px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(230,255,201,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-text h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 460px;
}

.btn-grad {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad);
  color: var(--navy);
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,215,255,0.18); }

/* ── Footer ── */
footer {
  padding: 64px 80px 40px;
  border-top: 1px solid rgba(37,40,76,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 240px;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  font-family: 'IBM Plex Mono', monospace;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: var(--gray); transition: color 0.18s; }
.footer-col a:hover { color: var(--navy); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(37,40,76,0.07);
  font-size: 13.5px;
  color: var(--gray);
  font-family: 'IBM Plex Mono', monospace;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--gray); transition: color 0.18s; }
.footer-legal a:hover { color: var(--navy); }

/* Horizontal rule between sections */
hr { border: none; border-top: 1px solid rgba(37,40,76,0.07); }

/* ===== S88 MOBILE THEME (shared) ===== */
/* Heading wrap control: no <br> in headings; width + balance handle wrapping */
.hero h1 { margin-left: auto; margin-right: auto; text-wrap: balance; }
.nav-pill > a.nav-home { margin-right: auto; display: block; flex-shrink: 0; }
.nav-links a.mega-item.active { background: #F6F1E7; box-shadow: inset 0 0 0 1.5px rgba(0,215,255,0.4); }
.nav-burger { display: none; }
.mobile-menu { display: none; }
@media (max-width: 900px) {
  .nav-pill { padding: 10px 10px 10px 20px; }
  .nav-links { display: none !important; }
  .hero h1 { max-width: 75%; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--navy);
    border-radius: 100px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
  body.mm-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.mm-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.mm-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.mm-open .mobile-menu { display: flex; }
  .mobile-menu {
    width: 100%;
    max-width: 900px;
    margin-top: 10px;
    position: relative;
    z-index: 9;
    flex-direction: column;
    gap: 2px;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 12px 36px rgba(37,40,76,0.10);
  }
  .mobile-menu a, .mobile-menu summary {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    padding: 14px 18px;
    border-radius: 14px;
    display: block;
    cursor: pointer;
  }
  .mobile-menu a:active, .mobile-menu summary:active { background: rgba(37,40,76,0.06); }
  .mm-group summary { list-style: none; display: flex; justify-content: space-between; align-items: center; }
  .mm-group summary::-webkit-details-marker { display: none; }
  .mm-group summary::after { content: '+'; font-family: 'IBM Plex Mono', monospace; font-size: 18px; color: var(--cyan); }
  .mm-group[open] summary::after { content: '\2013'; }
  .mm-sub { display: flex; flex-direction: column; padding: 0 6px 6px; }
  .mm-sub a { font-weight: 500; font-size: 15px; padding: 11px 16px; color: var(--gray); }
  .mm-cta { background: var(--navy); color: #fff !important; text-align: center; margin-top: 6px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .btn-grad, .btn-solid, .hero-btn { width: 100%; justify-content: center; }
  .hero h1 { font-size: clamp(24px, 7vw, 32px); max-width: 100%; }
}

/* ===== S88 MOBILE THEME (homepage) ===== */
@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero-content { padding: 56px 0 72px; }
  .hero-content p { font-size: 16px; margin-bottom: 32px; }
  .metrics-strip { grid-template-columns: 1fr; }
  .metric-cell { padding: 30px 28px; border-right: none; border-bottom: 1px solid rgba(37,40,76,0.08); }
  .metric-cell:last-child { border-bottom: none; }
  .metric-num { font-size: 40px; }
  .services, .case-study, .process { padding: 64px 28px; }
  .services-top, .process-top { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .pillars { grid-template-columns: 1fr; gap: 16px; }
  .hero-content h1 { font-size: clamp(30px, 8vw, 38px); }
  .services-list { grid-template-columns: 1fr; }
  .svc { padding: 32px 26px; }
  .cs-grid { grid-template-columns: 1fr; gap: 40px; }
  .cs-stat-row { padding: 20px 24px; }
  .testimonial { grid-template-columns: 1fr; padding: 64px 28px; gap: 44px; }
  .testi-images { height: 340px; }
  .cta-wrap { padding: 24px 28px 64px; }
  .cta-box { grid-template-columns: 1fr; padding: 44px 32px; text-align: left; }
  footer { padding: 48px 28px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
