/* ============================================================
   OUTSPIRE INNOVATIONS — styles.css v3
   ============================================================ */

/* 1. TOKENS */
:root {
  --bg:        #f8f6f1;
  --surface:   #ffffff;
  --text:      #111827;
  --muted:     #4b5563;
  --subtle:    #6b7280;
  --line:      #e5e7eb;
  --brand:     #0d3b3c;
  --brand-mid: #185e5f;
  --accent:    #c96c3a;
  --accent-lt: #fff3ec;
  --sh-xs: 0 1px 4px rgba(0,0,0,.06);
  --sh-sm: 0 4px 14px rgba(0,0,0,.08);
  --sh-md: 0 8px 28px rgba(0,0,0,.10);
  --sh-lg: 0 20px 56px rgba(0,0,0,.12);
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px;
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .22s;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: min(1160px, calc(100vw - 2.5rem));
}

/* 2. RESET */
*,*::before,*::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.25rem; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

/* 3. LAYOUT */
.container { width: var(--max); margin: 0 auto; }
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }

/* 4. TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem,6vw,5rem); }
h2 { font-size: clamp(2rem,4vw,3.2rem); }
h3 { font-size: clamp(1.1rem,2vw,1.35rem); }

.section-tag, .eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  color: var(--brand);
  font-size: .93rem;
  margin-top: 1.25rem;
  transition: gap var(--dur) var(--ease);
}
.text-link::after { content: '\2192'; }
.text-link:hover { gap: .7rem; }

.rich-text p { color: var(--muted); font-size: 1rem; margin-bottom: 1rem; }
.rich-text p:last-of-type { margin-bottom: 0; }

/* 5. BUTTONS */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.85rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 16px rgba(13,59,60,.22);
  white-space: nowrap;
}
.button:hover, .button:focus-visible {
  background: var(--brand-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,59,60,.28);
}

/* Shining CTA — subtle moving sheen + gentle glow */
.button--shine {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.button--shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 40%;
  height: 120%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.75) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  filter: blur(6px);
  opacity: .85;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: shine-move 2.4s linear infinite;
}
.button--shine:hover::before { animation-duration: 1.1s; }
.button--shine:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(13,59,60,.30); }

@keyframes shine-move {
  0% { left: -75%; }
  60% { left: 125%; }
  100% { left: 125%; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .button--shine::before { animation: none; display: none; }
}
.button--ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
  box-shadow: none;
}
.button--ghost:hover {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13,59,60,.22);
}
.button--sm { padding: .6rem 1.3rem; font-size: .85rem; }
.section-action {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* 6. HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,246,241,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.07); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { height: 52px; width: auto; object-fit: contain; }
/* Desktop: fixed at top-right, aligning with container edge */
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  gap: .2rem;
  height: 72px;
  padding-right: max(1.25rem, calc((100vw - 1160px) / 2));
  background: transparent;
}
.site-nav > a {
  padding: .45rem .9rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--dur) var(--ease);
}
.site-nav .nav-cta {
  color: #fff;
  background: var(--brand);
  border-color: transparent !important;
  box-shadow: 0 6px 20px rgba(13,59,60,.22);
}
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus {
  background: var(--brand-mid);
  color: #fff;
}
.site-nav > a:hover, .site-nav > a.is-active {
  color: var(--brand);
  background: rgba(13,59,60,.07);
}
.nav-cta { margin-left: .75rem !important; }
.nav-close { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7. NAV OVERLAY */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 98;
  backdrop-filter: blur(2px);
}
.nav-overlay.is-open { display: block; }

/* 8. HERO */
.hero {
  position: relative;
  padding: 5.5rem 0 3.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,59,60,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { margin-bottom: 1.25rem; max-width: 14ch; }
.hero-text { font-size: 1.08rem; color: var(--muted); max-width: 52ch; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0 1.75rem; }
.hero-points {
  list-style: none;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  padding: 0;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(13,59,60,.12);
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand);
}
.hero-points li::before { content: '\2713'; font-size: .75rem; }
.hero-panel {
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-mid) 100%);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  color: #fff;
  box-shadow: var(--sh-lg);
  will-change: transform;
}
.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  padding: 1.2rem;
  transition: background var(--dur);
}
.hero-card:hover { background: rgba(255,255,255,.16); }
.hero-card span {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,.6);
  margin-bottom: .45rem;
  font-weight: 600;
}
.hero-card strong { font-size: .98rem; line-height: 1.45; font-weight: 600; }
.hero-card--primary { margin-bottom: .75rem; }
.hero-card--primary strong { font-size: 1.1rem; font-family: var(--font-head); }
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.hero-card.wide { grid-column: 1 / -1; }

/* Specialize banner */
.specialize-banner {
  background: linear-gradient(180deg, rgba(13,59,60,0.03) 0%, transparent 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.25rem 0;
}
.specialize-inner {
  text-align: center;
  padding: 1rem 1.5rem;
}
.specialize-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem,3vw,2.4rem);
  margin: 0 0 .5rem;
  color: var(--brand);
}
.specialize-inner h2 strong { color: var(--accent); }
.specialize-lead { color: var(--muted); max-width: 72ch; margin: 0 auto 1rem; }
.specialize-inner .section-action { justify-content: center; margin-top: .75rem; }

/* 9. STATS */
.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  gap: 2rem;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.8rem,5vw,4.2rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* 10. TRUST BAR */
.trust-bar { background: var(--brand); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid article {
  padding: 1.4rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background var(--dur);
}
.trust-grid article:last-child { border-right: 0; }
.trust-grid article:hover { background: rgba(255,255,255,.06); }
.trust-grid p {
  margin: 0;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
}

/* 11. SECTION HEADS */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
.section-head h2 { margin-bottom: 0; }
.section-head > p { color: var(--muted); font-size: 1rem; align-self: end; }
.section-head.compact { margin-bottom: 2.5rem; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }

/* 12. METHODOLOGY */
.methodology { background: linear-gradient(160deg,rgba(13,59,60,.03) 0%,transparent 55%); }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.method-panel p { color: var(--muted); font-size: 1rem; }
.method-list { display: flex; flex-direction: column; }
.method-list article {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left var(--dur) var(--ease);
}
.method-list article:first-child { border-top: 1px solid var(--line); }
.method-list article:hover { padding-left: .5rem; }
.method-list article > span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  margin-top: .55rem;
}
.method-list p { margin: 0; font-size: .97rem; font-weight: 500; }

/* 13. PROCESS STEPS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.process-card { background: var(--surface); padding: 2rem 1.5rem; transition: background var(--dur); }
.process-card:hover { background: rgba(13,59,60,.025); }
.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-sm);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 1.1rem;
}
.process-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.process-card p { color: var(--muted); font-size: .88rem; margin: 0; line-height: 1.6; }

/* 14. SERVICE CARDS */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 0; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: var(--r-md);
  padding: 1.85rem;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--sh-xs);
  will-change: transform, opacity;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-top-color: var(--accent);
}
.service-card h3, .service-card h2 { font-size: 1.2rem; margin-bottom: .8rem; }
.service-card--full h2 { font-size: 1.4rem; }
.service-card p { color: var(--muted); font-size: .93rem; margin-bottom: 1rem; }
.service-card ul { margin: 0; padding-left: 1rem; }
.service-card li { font-size: .875rem; color: var(--muted); padding: .2rem 0; }

/* 15. INDUSTRY CARDS */
.industry-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.industry-grid--full { grid-template-columns: repeat(3,1fr); }
.industry-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.85rem;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--sh-xs);
}
.industry-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--sh-md); }
.industry-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.industry-card p { color: var(--muted); font-size: .9rem; margin: 0; line-height: 1.6; }

/* 16. CAPABILITY GRID */
.capability-strip { padding-top: 0; }
.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.capability-grid article {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: .93rem;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--sh-xs);
}
.capability-grid article::before {
  content: '';
  flex: 0 0 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}
.capability-grid article:hover { border-color: var(--brand); transform: translateX(4px); }

/* 17. CLIENT WALL */
.client-wall {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.client-wall article {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90px;
  padding: 1.2rem;
  background: var(--surface);
  font-weight: 700;
  font-size: .875rem;
  color: var(--muted);
  transition: all var(--dur) var(--ease);
}
.client-logo { max-height: 64px; width: auto; display: block; margin: 0 auto; filter: none; }
.client-wall article:hover { background: rgba(13,59,60,.04); color: var(--brand); }

/* 18. LEADER CARDS */
.leader-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem; }
.leader-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--sh-xs);
}
.leader-card:hover { box-shadow: var(--sh-md); border-color: rgba(13,59,60,.2); }
.leader-top { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.25rem; }
.leader-initial {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  font-family: var(--font-head);
}
.leader-top h3 { margin-bottom: .15rem; font-size: 1.15rem; }
.leader-top > div > p { margin: 0; font-size: .85rem; color: var(--accent); font-weight: 600; }
.leader-summary { color: var(--muted); font-size: .92rem; line-height: 1.65; margin-bottom: 1rem; }
.leader-card ul { margin: 0; padding-left: 1rem; }
.leader-card li { font-size: .875rem; color: var(--muted); padding: .2rem 0; }

/* 19. PACKAGE CARDS */
.package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.package-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--sh-xs);
}
.package-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--brand); }
.package-card__label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: .3rem .8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.package-card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.package-card > p { color: var(--muted); font-size: .93rem; margin-bottom: 1.25rem; }

/* 20. FAQ ACCORDION */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-card { border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.faq-card:first-child { border-top: 1px solid var(--line); }
.faq-card__question {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
  transition: color var(--dur);
}
.faq-card__question:hover { color: var(--brand); }
.faq-card__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand);
  flex: 0 0 auto;
  transition: transform .25s var(--ease);
  line-height: 1;
}
.faq-card.is-open .faq-card__question::after { transform: rotate(45deg); }
.faq-card__answer {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .25s var(--ease);
}
.faq-card.is-open .faq-card__answer { max-height: 300px; padding-top: 1rem; }

/* 21. INSIGHT CARDS */
.insight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.insight-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--sh-xs);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.insight-card__category {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: .3rem .8rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.insight-card h2 { font-size: 1.25rem; margin-bottom: .75rem; line-height: 1.3; }
.insight-card > p { color: var(--muted); font-size: .92rem; margin: 0; }

/* 22. CTA BAND */
.cta-band { padding: 2rem 0 4rem; }
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 3.5rem;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 55%, #1a7a6e 100%);
  color: #fff;
  box-shadow: 0 20px 56px rgba(13,59,60,.32);
}
.cta-panel .section-tag { color: rgba(255,255,255,.65); }
.cta-panel h2 { color: #fff; margin-bottom: .5rem; font-size: clamp(1.8rem,3vw,2.8rem); }
.cta-panel > div > p { color: rgba(255,255,255,.78); margin: 0; }
.cta-panel .button { flex: 0 0 auto; background: #fff; color: var(--brand); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.cta-panel .button:hover { background: #f0f9f9; transform: translateY(-2px); }

/* 23. PAGE HERO */
.page-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(180deg, #ede9e1 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero__grid { display: grid; grid-template-columns: 1fr .85fr; gap: 3rem; align-items: end; }
.page-hero h1 { font-size: clamp(2.5rem,5vw,4.4rem); line-height: 1.12; margin-bottom: 0; }
.page-hero__grid > p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

/* 24. CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 3rem; align-items: start; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  box-shadow: var(--sh-sm);
}
.contact-card h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.contact-card h3 { font-size: 1.05rem; margin: 1.75rem 0 .75rem; }
.contact-card ul { padding-left: 1rem; }
.contact-card li { font-size: .9rem; color: var(--muted); padding: .3rem 0; }
.contact-card--plain { background: 0 none; border: 0; box-shadow: none; padding: 0; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; margin: 1rem 0 1.75rem; }
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand);
  transition: color var(--dur);
  line-height: 1.4;
}
.contact-links a svg { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; }
.contact-links a:hover { color: var(--accent); }
.contact-links a.wa-link { color: #128C7E; }
.contact-links a.wa-link:hover { color: #075E54; }
/* footer contact icon sizing */
.footer-contact a { display: flex; align-items: center; gap: .6rem; }
.footer-contact a svg { width: 1rem; height: 1rem; flex: 0 0 auto; opacity: .75; }
/* offices heading icon */
.offices-heading { display: flex; align-items: center; gap: .5rem; }
.offices-heading svg { width: 1rem; height: 1rem; flex: 0 0 auto; color: var(--accent); }
.form-card { background: var(--surface); }
.quote-form { display: grid; gap: 1.25rem; }
.quote-form label { display: grid; gap: .4rem; font-weight: 600; font-size: .85rem; color: var(--muted); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: .875rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--text);
  font-size: .95rem;
  line-height: 1.5;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
  appearance: none;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13,59,60,.09);
  background: var(--surface);
}
.quote-form textarea { resize: vertical; min-height: 120px; }
.contact-note { color: var(--subtle); font-size: .8rem; margin-top: 1rem; }

/* 25. FOOTER */
.site-footer { background: var(--brand); color: rgba(255,255,255,.8); padding: 4.5rem 0 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: start;
}
.footer-logo { height: 52px; width: auto; object-fit: contain; margin-bottom: 1.5rem; filter: brightness(0) invert(1); opacity: .88; }
.footer-top h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem,2.5vw,2.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: .8rem;
}
.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #fff;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.footer-top > div > p { font-size: .88rem; line-height: 1.65; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-links strong, .footer-contact strong {
  display: block;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .6rem;
}
.footer-links a, .footer-contact a { font-size: .9rem; color: rgba(255,255,255,.72); transition: color .2s; padding: .2rem 0; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* 26. FORM ALERTS & HONEYPOT */
.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: .93rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.form-alert--success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}
.form-alert--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}
.req { color: var(--accent); }
/* Honeypot — off-screen, invisible to real users */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* 27. WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: .75rem 1.25rem .75rem .8rem;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--dur) var(--ease);
}
.whatsapp-float:hover { transform: scale(1.06) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 24px; height: 24px; flex: 0 0 auto; }

/* 27. SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.fade-up.is-visible { opacity: 1; transform: none; }
.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.stagger.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.stagger.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.08s; }
.stagger.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.16s; }
.stagger.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.24s; }
.stagger.is-visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.32s; }
.stagger.is-visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.40s; }

/* subtle float for hero panel */
.hero-panel { transform: translateZ(0); }
.hero-panel.float { animation: float-anim 6s ease-in-out infinite; }
@keyframes float-anim {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* entrance polish */
.fade-up { will-change: opacity, transform; }
.fade-up.is-visible { opacity: 1; transform: none; }

/* service card subtle pop on entrance */
.service-card { transform: translateY(6px); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease); }
.stagger.is-visible .service-card { transform: translateY(0); opacity: 1; }

/* reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  .hero-panel.float { animation: none; }
  .service-card, .fade-up, .stagger > * { transition: none !important; animation: none !important; }
}

/* 28. RESPONSIVE — tablet */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
  .split-layout, .method-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-grid, .capability-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .cta-panel { flex-direction: column; align-items: flex-start; padding: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
}

/* 29. RESPONSIVE — mobile nav */
@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 88vw);
    height: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--surface);
    box-shadow: -4px 0 32px rgba(0,0,0,.18);
    transform: translateX(110%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav.is-open { transform: translateX(0); }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    min-height: 64px;
    flex: 0 0 auto;
    background: var(--bg);
    border: 0;
    border-bottom: 2px solid var(--line);
    width: 100%;
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    font-family: var(--font-body);
  }
  .nav-close svg { width: 1.4rem; height: 1.4rem; color: var(--muted); flex: 0 0 auto; }
  .site-nav > a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    color: var(--text);
    transition: background var(--dur), color var(--dur);
  }
  .site-nav > a:hover,
  .site-nav > a.is-active {
    background: rgba(13,59,60,.06);
    color: var(--brand);
  }
  .nav-cta {
    margin: 1.25rem 1.5rem 1rem !important;
    text-align: center;
    display: block;
    width: calc(100% - 3rem);
    border-bottom: 0 !important;
    border-radius: 999px !important;
    padding: .875rem 1rem;
  }
}

/* 30. RESPONSIVE — mobile */
@media (max-width: 680px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3rem; }
  .hero h1 { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; justify-content: center; }
  .service-grid, .industry-grid, .industry-grid--full,
  .package-grid, .insight-grid, .leader-grid,
  .client-wall, .capability-grid, .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { border-right: 0; }
  .cta-panel { padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: .85rem; border-radius: 50%; }
  .section-action { flex-direction: column; align-items: center; }
}
