/* site-unified.css — supplemental styles for index.html SPA */

/* CTA band — About / Services / Contact */
.cta-band{position:relative;overflow:hidden;background:linear-gradient(135deg,var(--navy) 0%,var(--blue) 50%,#1d4ed8 100%);padding:7rem 2.5rem;text-align:center}
.cta-band::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 80% at 50% 50%,rgba(37,99,235,.18) 0%,transparent 65%),radial-gradient(ellipse 40% 40% at 82% 18%,rgba(255,255,255,.06) 0%,transparent 55%),radial-gradient(ellipse 30% 30% at 18% 82%,rgba(5,150,105,.07) 0%,transparent 55%)}
.cta-band>*{position:relative;z-index:1}
.cta-eyebrow{font-size:.62rem;font-weight:800;letter-spacing:.22em;text-transform:uppercase;color:rgba(255,255,255,.42);margin-bottom:.9rem;display:block}
.cta-h{font-family:var(--serif);font-size:clamp(2rem,4.2vw,3.4rem);font-weight:400;font-style:italic;color:#fff;line-height:1.08;margin-bottom:1.2rem}
.cta-h strong{font-family:var(--sans);font-weight:900;font-style:normal}
.cta-sub{font-size:.95rem;color:rgba(255,255,255,.58);line-height:1.78;max-width:520px;margin:0 auto 2.5rem}
.cta-btns{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap}

/* ═══════════════════════════════════════
   ABOUT HERO
═══════════════════════════════════════ */
.about-hero {
  padding: 130px 3rem 90px;
  position: relative; overflow: hidden;
}
.about-hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 6rem; align-items: center;
}
.about-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(37,99,235,.08); border: 1px solid var(--b-bdr); color: var(--mid);
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 14px 5px 9px; border-radius: 99px; margin-bottom: 1.5rem;
  animation: fadeUp .6s ease .1s both;
}
.about-h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400; font-style: italic; line-height: 1.05;
  color: var(--navy); margin-bottom: 1.5rem;
  animation: fadeUp .7s ease .2s both;
}
.about-h1 strong { font-family: var(--sans); font-weight: 900; font-style: normal; color: var(--mid) }
.about-lead {
  font-size: 1rem; color: var(--s500); line-height: 1.82;
  max-width: 500px; margin-bottom: 2.2rem;
  animation: fadeUp .7s ease .3s both;
}
.about-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  animation: fadeUp .7s ease .4s both;
}
.astat { }
.astat-n { font-size: 2rem; font-weight: 900; color: var(--mid); line-height: 1 }
.astat-l { font-size: .74rem; color: var(--s500); font-weight: 600; margin-top: 3px }

/* Founder Card */
.founder-card {
  background: #fff; border-radius: 24px;
  box-shadow: var(--sh-xl); border: 1px solid var(--s100);
  overflow: hidden; animation: fadeIn 1s ease .4s both;
}
.fc-top {
  background: linear-gradient(135deg, var(--blue) 0%, var(--mid) 100%);
  padding: 2rem 2rem 3.5rem; position: relative;
}
.fc-top::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 30px;
  background: #fff; border-radius: 30px 30px 0 0;
}
.fc-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: 3px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1rem;
}
.fc-name { font-size: 1.15rem; font-weight: 800; color: #fff }
.fc-title { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: 3px }
.fc-body { padding: 1rem 2rem 2rem }
.fc-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: .9rem }
.fc-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .9rem }
.fc-txt { font-size: .82rem; color: var(--s600); line-height: 1.55 }
.fc-txt strong { color: var(--navy); font-weight: 700 }
.fc-cta { padding: 0 2rem 1.8rem }

/* ═══════════════════════════════════════
   TIMELINE SECTION
═══════════════════════════════════════ */
.timeline-sec {
  padding: 7rem 3rem;
  background: var(--cloud);
  border-top: 1px solid var(--s100);
  border-bottom: 1px solid var(--s100);
}
.tl-head { max-width: 1180px; margin: 0 auto 4rem; }
.timeline {
  max-width: 1180px; margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--b-bdr), var(--mid), var(--b-bdr));
  transform: translateX(-50%);
}
.tl-item {
  display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; margin-bottom: 3.5rem; align-items: center;
}
.tl-item:last-child { margin-bottom: 0 }
.tl-left { padding-right: 2.5rem; text-align: right }
.tl-right { padding-left: 2.5rem; text-align: left }
.tl-center {
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.tl-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 0 0 6px rgba(37,99,235,.1), var(--sh-blue);
  position: relative; z-index: 2; flex-shrink: 0;
}
.tl-dot.green {
  background: linear-gradient(135deg, #047857, var(--green));
  box-shadow: 0 0 0 6px rgba(5,150,105,.1), 0 6px 20px rgba(5,150,105,.28);
}
.tl-year {
  font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); margin-bottom: .5rem;
}
.tl-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; line-height: 1.3 }
.tl-desc { font-size: .84rem; color: var(--s500); line-height: 1.7 }
.tl-card {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  border: 1px solid var(--s100); box-shadow: var(--sh-sm);
  transition: all .35s;
}
.tl-card:hover { border-color: var(--b-bdr); box-shadow: var(--sh-md), 0 0 0 1px var(--b-bdr); transform: translateY(-3px) }
.tl-metric {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--b-light); border: 1px solid var(--b-bdr);
  border-radius: 99px; padding: 3px 10px;
  font-size: .68rem; font-weight: 700; color: var(--mid); margin-top: .75rem;
}
.tl-metric.green { background: var(--g-light); border-color: var(--g-bdr); color: var(--green) }

/* ═══════════════════════════════════════
   CORE VALUES — FLIP CARDS
═══════════════════════════════════════ */
.values-sec { padding: 7rem 3rem }
.values-grid {
  max-width: 1180px; margin: 3.5rem auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.val-card {
  perspective: 1000px; height: 260px; cursor: pointer;
}
.val-card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.val-card:hover .val-card-inner { transform: rotateY(180deg) }
.val-front, .val-back {
  position: absolute; inset: 0; backface-visibility: hidden;
  border-radius: 20px; padding: 1.8rem;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.val-front {
  background: #fff; border: 1px solid var(--s100); box-shadow: var(--sh-sm);
}
.val-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--blue), var(--mid)); color: #fff;
  justify-content: center;
}
.val-icon { font-size: 2.2rem; margin-bottom: auto; padding-top: .3rem }
.val-num { font-size: .62rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--s300); margin-bottom: .5rem }
.val-name { font-size: 1rem; font-weight: 800; color: var(--navy) }
.val-desc { font-size: .83rem; color: rgba(255,255,255,.85); line-height: 1.65 }
.val-back-title { font-size: 1rem; font-weight: 800; margin-bottom: .75rem }

/* ═══════════════════════════════════════
   INFRASTRUCTURE / HOW WE WORK
═══════════════════════════════════════ */
.infra-sec {
  padding: 7rem 3rem;
  background: var(--cloud);
  border-top: 1px solid var(--s100);
}
.infra-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start }
.infra-stack { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem }
.stack-item {
  display: flex; align-items: center; gap: 14px;
  padding: 1rem 1.2rem; background: #fff;
  border: 1px solid var(--s100); border-radius: 14px;
  transition: all .3s;
}
.stack-item:hover { border-color: var(--b-bdr); box-shadow: var(--sh-sm) }
.si-badge {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.si-name { font-size: .88rem; font-weight: 700; color: var(--navy) }
.si-role { font-size: .75rem; color: var(--s500) }

.process-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem }
.ps-item { display: flex; gap: 1.2rem; align-items: flex-start }
.ps-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--mid));
  color: #fff; font-size: .78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ps-title { font-size: .93rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem }
.ps-desc { font-size: .82rem; color: var(--s500); line-height: 1.65 }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-hero-inner { grid-template-columns: 1fr; gap: 3.5rem }
  .values-grid { grid-template-columns: repeat(2, 1fr) }
  .infra-inner { grid-template-columns: 1fr; gap: 3.5rem }
  .timeline::before { left: 24px }
  .tl-item { grid-template-columns: 24px 1fr; grid-template-rows: auto auto }
  .tl-left { text-align: left; padding-right: 0; padding-left: 1.2rem; grid-column: 2 }
  .tl-right { padding-left: 1.2rem; grid-column: 2 }
  .tl-center { grid-column: 1; grid-row: 1 / 3; align-items: flex-start; padding-top: .2rem }
  .tl-dot { width: 38px; height: 38px; font-size: .9rem }
}
@media (max-width: 768px) {
  .about-hero { padding: 100px 1.25rem 60px }
  .timeline-sec, .values-sec, .infra-sec { padding: 4.5rem 1.25rem }
  .values-grid { grid-template-columns: 1fr 1fr }
  .about-stats { gap: 1.5rem }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr }
}
/* ═══════════════════════════════════════
   CONTACT PAGE HERO
═══════════════════════════════════════ */
.contact-hero {
  padding: 120px 3rem 70px;
  text-align: center; position: relative; overflow: hidden;
}
.contact-hero-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1 }
.contact-hero-h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 400; font-style: italic; color: var(--navy); line-height: 1.05;
  margin-bottom: 1.2rem; animation: fadeUp .7s ease .2s both;
}
.contact-hero-h1 strong { font-family: var(--sans); font-weight: 900; font-style: normal; color: var(--mid) }
.contact-hero-lead { font-size: 1rem; color: var(--s500); line-height: 1.8; margin-bottom: 2rem; animation: fadeUp .7s ease .3s both }

/* Response time badges */
.response-badges { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; animation: fadeUp .7s ease .4s both }
.rbadge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 99px; font-size: .72rem; font-weight: 700;
  background: #fff; border: 1px solid var(--s100); box-shadow: var(--sh-xs); color: var(--s600);
}
.rbadge-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0 }

/* ═══════════════════════════════════════
   CONTACT SPLIT LAYOUT
═══════════════════════════════════════ */
.contact-split {
  padding: 4rem 3rem 7rem;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 5rem; align-items: start;
}

/* ── FORM SIDE ── */
.contact-form-wrap {
  background: #fff; border-radius: 24px;
  border: 1px solid var(--s100); box-shadow: var(--sh-xl);
  overflow: hidden;
}
.cfh {
  background: linear-gradient(135deg, var(--blue), var(--mid));
  padding: 1.8rem 2rem;
}
.cfh-title { font-size: 1.05rem; font-weight: 800; color: #fff }
.cfh-sub { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 4px; line-height: 1.55 }

.cf-body { padding: 2rem }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.1rem }
.cf-row { margin-bottom: 1.1rem }

/* Floating label inputs */
.fl-wrap { position: relative }
.fl-input, .fl-select, .fl-textarea {
  width: 100%; padding: 20px 16px 8px;
  border: 1.5px solid var(--s200); border-radius: 12px;
  font-size: .9rem; font-family: var(--sans); color: var(--navy);
  background: var(--cloud); outline: none; transition: all .25s;
  appearance: none; -webkit-appearance: none;
}
.fl-textarea { min-height: 120px; resize: vertical; padding: 22px 16px 12px }
.fl-input:focus, .fl-select:focus, .fl-textarea:focus {
  border-color: var(--mid); background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,.07);
}
.fl-input.filled, .fl-input:focus, .fl-select:focus, .fl-textarea.filled, .fl-textarea:focus {
  padding-top: 22px; padding-bottom: 6px;
}
.fl-label {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: .9rem; color: var(--s300); font-weight: 500; pointer-events: none;
  transition: all .2s; transform-origin: left top;
}
.fl-textarea + .fl-label { top: 20px; transform: none }
.fl-input:focus ~ .fl-label,
.fl-input.has-val ~ .fl-label,
.fl-select:focus ~ .fl-label,
.fl-textarea:focus ~ .fl-label,
.fl-textarea.has-val ~ .fl-label {
  top: 10px; transform: translateY(0) scale(.78);
  color: var(--mid); font-weight: 700;
}
/* For select, label always floated */
.fl-select ~ .fl-label { top: 10px; transform: translateY(0) scale(.78); color: var(--s300); font-weight: 600 }
.fl-select:focus ~ .fl-label { color: var(--mid) }

/* Budget select arrow */
.fl-select-wrap { position: relative }
.fl-select-wrap::after {
  content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 6px solid var(--s300); pointer-events: none;
}

/* Checkbox */
.cf-check-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .83rem; color: var(--s600); line-height: 1.55; margin-bottom: 1.5rem;
}
.cf-check {
  width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--s200);
  background: var(--cloud); cursor: pointer; flex-shrink: 0; margin-top: 2px;
  appearance: none; -webkit-appearance: none; transition: all .2s; position: relative;
}
.cf-check:checked { background: var(--mid); border-color: var(--mid) }
.cf-check:checked::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: #fff; font-weight: 900;
}

/* Submit button */
.cf-submit {
  width: 100%; padding: 15px; border-radius: 50px; border: none;
  background: linear-gradient(135deg, var(--blue), var(--mid));
  color: #fff; font-size: .95rem; font-weight: 800; cursor: pointer;
  font-family: var(--sans); letter-spacing: .01em;
  box-shadow: var(--sh-blue); transition: all .35s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  position: relative; overflow: hidden;
}
.cf-submit::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg); transition: left .55s ease;
}
.cf-submit:hover::after { left: 160% }
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(37,99,235,.32) }
.cf-submit:disabled { opacity: .65; transform: none; cursor: not-allowed }

/* Success state */
.cf-success {
  display: none; text-align: center; padding: 2rem;
  animation: fadeUp .5s ease both;
}
.cf-success.show { display: block }
.cf-success-icon { font-size: 3rem; margin-bottom: 1rem }
.cf-success-title { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem }
.cf-success-desc { font-size: .88rem; color: var(--s500); line-height: 1.65 }

/* ── INFO SIDE ── */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem }

.ci-cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d5a 100%);
  border-radius: 20px; padding: 2rem; position: relative; overflow: hidden;
}
.ci-cta-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(37,99,235,.2); pointer-events: none;
}
.ci-cta-title { font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .7rem }
.ci-cta-head { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; font-style: italic; color: #fff; margin-bottom: .7rem; line-height: 1.2 }
.ci-cta-head strong { font-family: var(--sans); font-weight: 900; font-style: normal }
.ci-cta-desc { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 1.5rem }
.ci-cta-meta { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .8rem }

/* Contact detail cards */
.ci-card {
  background: #fff; border-radius: 20px; padding: 1.6rem;
  border: 1px solid var(--s100); box-shadow: var(--sh-sm);
  transition: all .3s;
}
.ci-card:hover { border-color: var(--b-bdr); box-shadow: var(--sh-md) }
.ci-card-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1.2rem;
}
.ci-card-icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.ci-card-title { font-size: .85rem; font-weight: 800; color: var(--navy) }
.ci-card-sub { font-size: .73rem; color: var(--s500); margin-top: 2px }

.ci-detail-row {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: .8rem;
  padding-bottom: .8rem; border-bottom: 1px solid var(--s100);
}
.ci-detail-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none }
.ci-detail-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; width: 20px; text-align: center }
.ci-detail-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--s300); margin-bottom: 2px }
.ci-detail-val { font-size: .88rem; color: var(--navy); font-weight: 600; line-height: 1.4 }
.ci-detail-val a { color: var(--mid); text-decoration: none; transition: color .2s }
.ci-detail-val a:hover { color: var(--blue) }

/* Office flag */
.ci-flag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--b-light); border: 1px solid var(--b-bdr); color: var(--mid);
  padding: 3px 9px; border-radius: 99px;
}

/* Response time bar */
.ci-response {
  background: var(--cloud); border-radius: 12px; padding: 1rem 1.2rem;
  border: 1px solid var(--s100); display: flex; align-items: center; gap: 12px;
}
.ci-response-icon { font-size: 1.4rem }
.ci-response-title { font-size: .83rem; font-weight: 700; color: var(--navy) }
.ci-response-desc { font-size: .75rem; color: var(--s500); margin-top: 2px }

/* ═══════════════════════════════════════
   OFFICE MAP STRIP
═══════════════════════════════════════ */
.offices-strip {
  padding: 5rem 3rem;
  background: var(--cloud); border-top: 1px solid var(--s100);
}
.offices-grid { max-width: 1180px; margin: 3rem auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem }
.office-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--s100); box-shadow: var(--sh-md); transition: all .35s;
}
.office-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--b-bdr) }
.oc-map {
  height: 160px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.oc-map-boston { background: linear-gradient(135deg, #1e3a5f 0%, #1e4d8c 40%, #2d6ab4 70%, #3a84dc 100%) }
.oc-map-gurugram { background: linear-gradient(135deg, #1a3a2a 0%, #155c38 40%, #1d7847 70%, #28a060 100%) }
.oc-map-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
}
.oc-map-city {
  position: relative; z-index: 1; text-align: center;
}
.oc-map-flag { font-size: 2.5rem; margin-bottom: .5rem }
.oc-map-name { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.8) }

/* Map grid lines decorative */
.oc-grid-lines {
  position: absolute; inset: 0; opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 30px 30px;
}

.oc-body { padding: 1.5rem }
.oc-label { font-size: .64rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--s300); margin-bottom: .8rem }
.oc-name { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: .6rem }
.oc-detail { display: flex; align-items: flex-start; gap: 8px; margin-bottom: .5rem }
.oc-detail-icon { font-size: .85rem; flex-shrink: 0; margin-top: 2px }
.oc-detail-text { font-size: .84rem; color: var(--s600); line-height: 1.5 }
.oc-detail-text a { color: var(--mid); text-decoration: none; transition: color .2s; font-weight: 700 }
.oc-detail-text a:hover { color: var(--blue) }
.oc-cta { margin-top: 1.2rem }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-sec { padding: 7rem 3rem }
.faq-wrap { max-width: 760px; margin: 0 auto }
.faq-list { display: flex; flex-direction: column; gap: .7rem; margin-top: 3rem }
.faq-item {
  background: #fff; border: 1px solid var(--s100); border-radius: 14px;
  overflow: hidden; box-shadow: var(--sh-xs); transition: all .3s;
}
.faq-item.open { border-color: var(--b-bdr) }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 1.3rem; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 1rem; font-size: .92rem; font-weight: 700; color: var(--navy);
  font-family: var(--sans);
}
.faq-q:hover { background: var(--cloud) }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s; color: var(--s300) }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--mid) }
.faq-a {
  display: none; padding: 0 1.3rem 1.2rem;
  font-size: .86rem; color: var(--s600); line-height: 1.75;
  border-top: 1px solid var(--s100); padding-top: 1rem;
}
.faq-item.open .faq-a { display: block }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .contact-split { grid-template-columns: 1fr; gap: 3rem }
  .offices-grid { grid-template-columns: 1fr }
}
@media (max-width: 768px) {
  .contact-hero { padding: 100px 1.25rem 50px }
  .contact-split { padding: 3rem 1.25rem 5rem }
  .cf-grid { grid-template-columns: 1fr }
  .offices-strip, .faq-sec { padding: 4.5rem 1.25rem }
}
/* ═══════════════════════════════════════
   SERVICES HERO
═══════════════════════════════════════ */
.svc-hero {
  padding: 130px 3rem 90px;
  position: relative; overflow: hidden;
}
.svc-hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center;
}
.svc-hero-h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400; font-style: italic; line-height: 1.05;
  color: var(--navy); margin-bottom: 1.4rem;
  animation: fadeUp .7s ease .2s both;
}
.svc-hero-h1 strong { font-family: var(--sans); font-weight: 900; font-style: normal; color: var(--mid) }
.svc-hero-lead { font-size: 1rem; color: var(--s500); line-height: 1.82; max-width: 480px; margin-bottom: 2rem; animation: fadeUp .7s ease .3s both; }

/* Quick-nav pills */
.svc-pills-nav { display: flex; gap: .65rem; flex-wrap: wrap; animation: fadeUp .7s ease .4s both; }
.spill {
  padding: 6px 16px; border-radius: 99px; font-size: .78rem; font-weight: 700;
  border: 1.5px solid var(--s200); color: var(--s600); cursor: pointer;
  transition: all .25s; text-decoration: none;
}
.spill:hover, .spill.active { border-color: var(--mid); color: var(--mid); background: var(--b-light) }

/* Right side quick metrics */
.svc-hero-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  animation: fadeIn 1s ease .4s both;
}
.shm {
  background: #fff; border-radius: 16px; padding: 1.2rem 1.4rem;
  border: 1px solid var(--s100); box-shadow: var(--sh-sm);
  transition: all .3s;
}
.shm:hover { border-color: var(--b-bdr); box-shadow: var(--sh-md) }
.shm-val { font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1 }
.shm-lbl { font-size: .75rem; color: var(--s500); margin-top: 4px }
.shm-delta { font-size: .68rem; font-weight: 700; color: var(--green); margin-top: 3px }

/* ═══════════════════════════════════════
   SERVICES TABS
═══════════════════════════════════════ */
.svc-tabs-sec {
  padding: 0 3rem 7rem;
  background: transparent;
}
.svc-tabs-wrap { max-width: 1180px; margin: 0 auto; }

.tab-nav {
  display: flex; gap: 0; border-bottom: 2px solid var(--s100);
  margin-bottom: 4rem; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none }
.tab-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 1rem 1.6rem; background: none; border: none;
  font-size: .875rem; font-weight: 700; color: var(--s500);
  cursor: pointer; transition: all .25s; white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
}
.tab-btn:hover { color: var(--navy) }
.tab-btn.active { color: var(--mid); border-bottom-color: var(--mid) }
.tab-icon { font-size: 1.2rem }

/* Tab panels */
.tab-panel { display: none }
.tab-panel.active { display: block; animation: pageEnter .4s cubic-bezier(.16,1,.3,1) both }

/* Service detail layout */
.svc-detail-layout {
  display: grid; grid-template-columns: 1fr 400px; gap: 5rem; align-items: start;
}
.svc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 99px; font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.svc-badge.blue  { background: var(--b-light); border: 1px solid var(--b-bdr); color: var(--mid) }
.svc-badge.green { background: var(--g-light); border: 1px solid var(--g-bdr); color: var(--green) }
.svc-badge.purple{ background: #faf0ff; border: 1px solid rgba(168,85,247,.2); color: #7c3aed }
.svc-badge.orange{ background: #fff7ed; border: 1px solid rgba(249,115,22,.2); color: #ea580c }

.svc-detail-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 400; font-style: italic; color: var(--navy); line-height: 1.1;
  margin-bottom: 1rem;
}
.svc-detail-title strong { font-family: var(--sans); font-weight: 900; font-style: normal }
.svc-detail-lead { font-size: .95rem; color: var(--s500); line-height: 1.82; margin-bottom: 2rem }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem }
.acc-item {
  background: #fff; border: 1px solid var(--s100); border-radius: 14px; overflow: hidden;
  transition: all .3s; box-shadow: var(--sh-xs);
}
.acc-item.open { border-color: var(--b-bdr); box-shadow: var(--sh-sm) }
.acc-item.open.green-acc { border-color: var(--g-bdr) }
.acc-item.open.purple-acc { border-color: rgba(168,85,247,.25) }
.acc-item.open.orange-acc { border-color: rgba(249,115,22,.25) }
.acc-trigger {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1rem 1.2rem; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 1rem;
}
.acc-trigger:hover { background: var(--cloud) }
.acc-trigger-content { display: flex; align-items: center; gap: 10px }
.acc-trigger-icon { font-size: 1.1rem }
.acc-trigger-title { font-size: .9rem; font-weight: 700; color: var(--navy) }
.acc-chevron {
  width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s;
  color: var(--s300);
}
.acc-item.open .acc-chevron { transform: rotate(180deg); color: var(--mid) }
.acc-body {
  display: none; padding: 0 1.2rem 1.2rem 1.2rem;
  font-size: .85rem; color: var(--s600); line-height: 1.75;
  border-top: 1px solid var(--s100); padding-top: 1rem;
}
.acc-item.open .acc-body { display: block }
.acc-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-top: .5rem }
.acc-list li { display: flex; align-items: flex-start; gap: 8px }
.acc-list li::before { content: '→'; color: var(--mid); font-weight: 700; flex-shrink: 0; margin-top: 1px }

/* Metric card (right sticky) */
.svc-metric-sidebar {
  background: #fff; border-radius: 20px; border: 1px solid var(--s100);
  box-shadow: var(--sh-lg); overflow: hidden; position: sticky; top: 90px;
}
.sms-head {
  padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--s100);
}
.sms-title { font-size: .72rem; font-weight: 800; color: var(--navy); letter-spacing: .07em; text-transform: uppercase }
.sms-sub { font-size: .75rem; color: var(--s500); margin-top: 3px }
.sms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--s100) }
.sms-item { background: #fff; padding: 1.2rem }
.sms-val { font-size: 1.55rem; font-weight: 900; color: var(--navy) }
.sms-lbl { font-size: .72rem; color: var(--s500); margin-top: 3px; line-height: 1.4 }
.sms-delta { font-size: .68rem; font-weight: 700; color: var(--green); margin-top: 3px }
.sms-footer { padding: 1.2rem 1.5rem }
.sms-includes { margin-top: 1.2rem }
.sms-includes-title { font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--s300); margin-bottom: .7rem }
.sms-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 99px; font-size: .72rem; font-weight: 700;
  background: var(--cloud); border: 1px solid var(--s100); color: var(--s600);
  margin: 2px 3px 2px 0; transition: all .2s;
}
.sms-tag:hover { border-color: var(--b-bdr); color: var(--mid); background: var(--b-light) }

/* ═══════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════ */
.compare-sec { padding: 7rem 3rem; background: var(--cloud); border-top: 1px solid var(--s100) }
.compare-wrap { max-width: 900px; margin: 0 auto }
.compare-table {
  width: 100%; border-collapse: collapse; margin-top: 3rem;
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--sh-lg); border: 1px solid var(--s100);
}
.compare-table th {
  padding: 1.1rem 1.4rem; text-align: left;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: var(--cloud); color: var(--s500); border-bottom: 1px solid var(--s100);
}
.compare-table th:first-child { width: 40% }
.compare-table td {
  padding: 1rem 1.4rem; font-size: .88rem; border-bottom: 1px solid var(--s100);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none }
.compare-table tr:hover td { background: var(--cloud) }
.ct-feat { font-weight: 700; color: var(--navy) }
.ct-bad  { color: #dc2626; font-size: .85rem }
.ct-good { color: var(--green); font-weight: 700 }
.ct-check { color: var(--green); font-size: 1.1rem }
.ct-cross { color: #dc2626; font-size: 1rem }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-detail-layout { grid-template-columns: 1fr }
  .svc-metric-sidebar { position: static }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 3rem }
}
@media (max-width: 768px) {
  .svc-hero { padding: 100px 1.25rem 60px }
  .svc-tabs-sec { padding: 0 1.25rem 5rem }
  .compare-sec { padding: 4.5rem 1.25rem }
  .svc-hero-metrics { grid-template-columns: repeat(2, 1fr) }
  .tab-btn { padding: .8rem 1rem; font-size: .8rem }
}