:root {
  --navy: #233644;
  --navy-deep: #0f1e28;
  --teal: #078396;
  --teal-dark: #056281;
  --teal-light: #53B1CD;
  --teal-pale: #e4f2f5;
  --slate: #CAD9DD;
  --near-black: #171B1B;
  --off-white: #f4f7f6;
  --white: #ffffff;
  --mid: #5a6a72;
  --border: #dde6e8;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--near-black);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img, iframe { max-width: 100%; }
footer, .page-offset, .section, .section-sm, .page-hero,
.hero, .services-strip, .cta-section { max-width: 100%; overflow-x: clip; }
.container, .footer-top, .hero-left, .hero-right, .contact-info,
.booking-embed, .service-block, .pricing-card, .support-card,
.case-card-full, .mini-offer-card, .credential, .value-card,
.pain-card, .proof-stat, .ms-logo-card { min-width: 0; }
.footer-col a, .contact-method-text, .contact-method-text p,
.credential-text, .credential-text p, .case-card-body p,
.pricing-card p, .support-card p, .legal-content {
  overflow-wrap: anywhere;
  word-break: normal;
}
body.nav-lock { overflow: hidden; }
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 1100;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--gold-light));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  box-shadow: 0 0 18px rgba(83,177,205,0.35);
  pointer-events: none;
}
.scroll-progress::after {
  content: ''; position: absolute; right: -8px; top: 50%;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold-light);
  transform: translateY(-50%) scale(calc(0.45 + var(--scroll-progress, 0) * 0.55));
  box-shadow: 0 0 22px rgba(232,201,122,0.8), 0 0 36px rgba(83,177,205,0.4);
}

/* ── MOTION SYSTEM ── */
@keyframes glowDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate3d(26px, -18px, 0) scale(1.08); opacity: 1; }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 50px 50px, 50px 50px; }
}

@keyframes processFlow {
  from { transform: translateX(-120%); }
  to { transform: translateX(420%); }
}

@keyframes cardScan {
  from { transform: translateX(-120%); }
  to { transform: translateX(220%); }
}

@keyframes burstSpark {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--spark-x)), calc(-50% + var(--spark-y))) scale(0); }
}

.motion-burst {
  position: absolute; left: 50%; top: 50%; z-index: 5;
  width: 1px; height: 1px;
  pointer-events: none;
}

.motion-burst span {
  position: absolute; left: 0; top: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--gold-light));
  box-shadow: 0 0 14px rgba(83,177,205,0.55);
  animation: burstSpark 0.72s cubic-bezier(0.15, 0.9, 0.2, 1) var(--spark-delay, 0ms) both;
}

.case-card-full,
.case-card-header h3,
.hero h1,
.page-hero h1,
h2.display,
.service-block h3,
.pricing-card h3 {
  position: relative;
}

.mouse-aura {
  position: fixed; left: 0; top: 0; z-index: 900;
  width: 360px; height: 360px; border-radius: 50%;
  transform: translate3d(calc(var(--aura-x, 50vw) - 50%), calc(var(--aura-y, 50vh) - 50%), 0);
  background:
    radial-gradient(circle, rgba(83,177,205,0.18), rgba(83,177,205,0.08) 34%, transparent 68%),
    radial-gradient(circle at 64% 38%, rgba(232,201,122,0.16), transparent 30%);
  mix-blend-mode: multiply;
  opacity: 0;
  filter: blur(2px);
  pointer-events: none;
  transition: opacity 0.25s ease, width 0.22s ease, height 0.22s ease, filter 0.22s ease;
}

.mouse-aura.is-active { opacity: 1; }
.mouse-aura.is-over-target {
  width: 460px; height: 460px;
  filter: blur(0);
}

.scroll-fade {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(5px);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.75, 0.18, 1),
    transform 0.72s cubic-bezier(0.2, 0.75, 0.18, 1),
    filter 0.72s cubic-bezier(0.2, 0.75, 0.18, 1);
  transition-delay: var(--fade-delay, 0ms);
}

.scroll-fade.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,30,40,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(83,177,205,0.12);
  padding: 0 4rem;
  display: flex; align-items: center; height: 72px;
  max-width: 100%;
  overflow: visible;
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
nav.nav-scrolled {
  background: rgba(15,30,40,0.9);
  border-bottom-color: rgba(83,177,205,0.24);
  box-shadow: 0 14px 40px rgba(15,30,40,0.22);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.9rem;
  text-decoration: none; margin-right: auto;
  min-width: 0;
}
.nav-logo-mark {
  height: 44px; width: auto; flex-shrink: 0;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.nav-logo:hover .nav-logo-mark { transform: rotate(-3deg) scale(1.04); filter: drop-shadow(0 0 12px rgba(83,177,205,0.35)); }
.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.1;
  white-space: nowrap;
}
.nav-logo-text small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.64rem;
  color: var(--teal-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.12rem;
}
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 19px; height: 2px;
  background: white; border-radius: 100px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem; list-style: none;
}
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.65);
  font-size: 0.83rem; padding: 0.5rem 0.9rem; border-radius: 6px;
  transition: all 0.2s; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--navy-deep); border: 1px solid rgba(83,177,205,0.15);
  border-radius: 10px; padding: 0.5rem; min-width: 220px;
  margin-top: 0.5rem; box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.dropdown a {
  display: block; padding: 0.65rem 0.9rem; border-radius: 6px;
  color: rgba(255,255,255,0.7) !important; font-size: 0.82rem;
}
.dropdown a:hover { background: rgba(83,177,205,0.1) !important; color: white !important; }
.dropdown-label {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-light); padding: 0.5rem 0.9rem 0.25rem;
  font-weight: 600;
}
.nav-cta {
  background: var(--teal) !important; color: white !important;
  padding: 0.55rem 1.3rem !important; border-radius: 6px !important;
  font-weight: 600 !important; margin-left: 0.75rem;
  box-shadow: 0 2px 12px rgba(7,131,150,0.35);
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px) !important; }

/* ── PAGE OFFSET ── */
.page-offset { padding-top: 72px; min-height: 100vh; }

/* ── SECTION PRIMITIVES ── */
.section { padding: 6rem 4rem; }
.section-sm { padding: 4rem 4rem; }
.page-offset > .page-hero + .section { padding-top: 3rem; }
.page-offset > .page-hero + .section .container > :first-child { margin-top: 0; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); font-weight: 600; margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--teal); }
h2.display {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.12; color: var(--navy);
  margin-bottom: 1.2rem;
}
h2.display em { font-style: italic; color: var(--teal); }
h2.display-light { color: var(--white); }
h2.display-light em { color: var(--teal-light); }
.lead {
  font-size: 1rem; color: var(--mid); line-height: 1.75;
  max-width: 580px;
}
.lead-light { color: rgba(255,255,255,0.6); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; border-radius: 6px; font-size: 0.88rem;
  font-weight: 600; transition: all 0.2s; letter-spacing: 0.02em;
  font-family: 'DM Sans', sans-serif; cursor: pointer; border: none;
  position: relative; overflow: hidden; isolation: isolate;
}
.btn-primary { background: var(--teal); color: white; padding: 0.85rem 1.8rem; box-shadow: 0 2px 12px rgba(7,131,150,0.3); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(7,131,150,0.28); }
.btn-secondary { background: var(--navy); color: white; padding: 0.85rem 1.8rem; }
.btn-secondary:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--border); color: var(--navy); padding: 0.8rem 1.8rem; background: white; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(7,131,150,0.1); }
.btn-ghost-light { border: 1px solid rgba(255,255,255,0.25); color: white; padding: 0.85rem 1.8rem; }
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy-deep); padding: 4.5rem 4rem 4rem;
  height: 400px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(83,177,205,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83,177,205,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridDrift 18s linear infinite;
}
.page-hero::after {
  content: ''; position: absolute; inset: auto -10% -45% 35%;
  height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(83,177,205,0.16), transparent 68%);
  pointer-events: none;
  animation: glowDrift 9s ease-in-out infinite;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: white; line-height: 1.1; margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--teal-light); }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; max-width: 560px; }

.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--teal-light); text-decoration: none; }
.breadcrumb span { opacity: 0.4; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark), var(--navy-deep));
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: gridDrift 16s linear infinite;
}
.cta-section::after {
  content: ''; position: absolute; inset: 10% auto auto 50%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(83,177,205,0.14), transparent 66%);
  translate: -50% 0;
  animation: glowDrift 8s ease-in-out infinite reverse;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 4rem 4rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 1rem; max-width: 260px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer-logo img { height: 40px; width: auto; flex-shrink: 0; }
.footer-logo-text {
  font-family: 'DM Serif Display', serif;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.1;
}
.footer-logo-text small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  color: var(--teal-light);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.12rem;
}
.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 600; margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.83rem; color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
.ms-partner-badge { margin-top: 1rem; }
.ms-partner-badge img { height: 40px; width: auto; display: block; }

/* ══════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════ */

.hero {
  min-height: calc(100vh - 72px);
  background: var(--navy-deep);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 4rem 4rem 6rem;
  --pointer-x: 0;
  --pointer-y: 0;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(83,177,205,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83,177,205,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: translate3d(calc(var(--pointer-x) * -16px), calc(var(--pointer-y) * -16px), 0);
  animation: gridDrift 24s linear infinite;
  transition: transform 0.18s ease-out;
}
.hero-glow-1 {
  position: absolute; right: 5%; top: 10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(7,131,150,0.18) 0%, transparent 65%);
  pointer-events: none;
  translate: calc(var(--pointer-x) * 40px) calc(var(--pointer-y) * 40px);
  animation: glowDrift 8s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; left: -10%; bottom: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
  translate: calc(var(--pointer-x) * -34px) calc(var(--pointer-y) * -34px);
  animation: glowDrift 10s ease-in-out infinite reverse;
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(83,177,205,0.12); border: 1px solid rgba(83,177,205,0.25);
  color: var(--teal-light); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); }
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: white; line-height: 1.08; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--teal-light); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 500px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-social-proof {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.proof-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }

.hero-right {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 1rem;
  perspective: 1000px;
  transform: translate3d(calc(var(--pointer-x) * -14px), calc(var(--pointer-y) * -14px), 0);
  transition: transform 0.18s ease-out;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(83,177,205,0.15);
  border-radius: 14px; padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(83,177,205,0.13), transparent);
  pointer-events: none;
  animation: cardScan 5.6s ease-in-out infinite;
}
.hero-card:hover { border-color: rgba(83,177,205,0.36); background: rgba(255,255,255,0.06); box-shadow: 0 30px 70px rgba(0,0,0,0.24); }
.hero-card-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.hero-card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.hero-card-title { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.stat { text-align: center; }
.stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; color: white; display: block;
}
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }
.problem-list { display: flex; flex-direction: column; gap: 0.5rem; }
.problem-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  padding: 0.6rem 0.75rem; background: rgba(255,255,255,0.03);
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.problem-item:hover { transform: translateX(6px); border-color: rgba(83,177,205,0.24); background: rgba(83,177,205,0.08); }
.problem-icon { font-size: 0.9rem; flex-shrink: 0; }
.solution-tag {
  display: inline-block; margin-left: auto;
  background: rgba(7,131,150,0.2); color: var(--teal-light);
  font-size: 0.65rem; padding: 0.2rem 0.55rem; border-radius: 100px;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* Services strip */
.services-strip {
  background: white; padding: 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.strip-label { font-size: 0.75rem; color: var(--mid); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.strip-divider { width: 1px; height: 24px; background: var(--border); }
.strip-items { display: flex; gap: 1rem; flex-wrap: wrap; }
.strip-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--navy); font-weight: 500;
  padding: 0.4rem 0.9rem; border-radius: 100px;
  background: var(--teal-pale); border: 1px solid rgba(7,131,150,0.15);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.strip-item:hover { transform: translateY(-3px); background: white; border-color: var(--teal-light); box-shadow: 0 10px 24px rgba(7,131,150,0.1); }

/* What we build section */
.build-section { background: white; }
.build-pills { display: flex; flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 0.75rem; margin-top: 2rem; }

/* Pain section */
.pain-section { background: var(--off-white); }
.pain-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.pain-card {
  background: white; border-radius: 14px; padding: 2rem;
  border: 1px solid var(--border); transition: all 0.25s;
  position: relative; overflow: hidden;
}
.pain-card::before,
.pricing-card::before,
.case-card-full::before,
.value-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(83,177,205,0.12), transparent 42%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.pain-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.pain-card:hover { box-shadow: 0 18px 42px rgba(7,131,150,0.12); transform: translateY(-6px); }
.pain-card:hover::before,
.pricing-card:hover::before,
.case-card-full:hover::before,
.value-card:hover::before { opacity: 1; }
.pain-card:hover::after { transform: scaleX(1); }
.pain-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem; color: #5a9fb5; line-height: 1;
  margin-bottom: 1rem;
}
.pain-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.pain-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

/* Offer preview */
.offer-preview { background: white; }
.offer-preview-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center;
}
.offer-preview-right { display: flex; flex-direction: column; gap: 1rem; }
.mini-offer-card {
  border: 1px solid var(--border); border-radius: 12px; padding: 1.4rem;
  transition: all 0.25s; cursor: default;
  display: flex; gap: 1rem; align-items: flex-start;
  position: relative; overflow: hidden;
}
.mini-offer-card::after {
  content: ''; position: absolute; inset: 0 auto 0 0;
  width: 3px; background: linear-gradient(var(--teal), var(--teal-light));
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.28s ease;
}
.mini-offer-card:hover { border-color: var(--teal-light); transform: translateX(8px); box-shadow: 0 14px 32px rgba(7,131,150,0.1); }
.mini-offer-card:hover::after { transform: scaleY(1); }
.mini-offer-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-pale); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease;
}
.mini-offer-card:hover .mini-offer-icon { transform: rotate(-4deg) scale(1.08); background: white; }
.mini-offer-icon img { width: 24px; height: 24px; object-fit: contain; }
.mini-offer-card h3 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.mini-offer-card p { font-size: 0.8rem; color: var(--mid); line-height: 1.55; }
.price-badge {
  display: inline-flex; align-items: baseline; gap: 0.3rem;
  background: var(--teal-pale); border-left: 3px solid var(--teal);
  padding: 0.9rem 1.4rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0;
}
.price-from { font-size: 0.78rem; color: var(--mid); }
.price-val { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--navy); }
.price-note { font-size: 0.75rem; color: var(--mid); }

/* Social proof */
.proof-section { background: var(--navy); }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3rem; }
.proof-stat { text-align: center; }
.proof-stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem; color: white; display: block; line-height: 1;
  margin-bottom: 0.5rem;
  transition: transform 0.25s ease, text-shadow 0.25s ease;
}
.proof-stat:hover .proof-stat-val { transform: translateY(-4px) scale(1.04); text-shadow: 0 0 24px rgba(83,177,205,0.28); }
.proof-stat-val span { color: var(--teal-light); }
.proof-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Process */
.process-section { background: var(--off-white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem;
  margin-top: 3.5rem; position: relative;
}
.process-line {
  position: absolute; top: 28px; left: 12%; right: 12%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--teal-light), var(--teal), var(--teal-light), transparent);
  overflow: hidden;
}
.process-line::after {
  content: ''; position: absolute; top: -1px; bottom: -1px; left: 0;
  width: 30%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), var(--teal-light), transparent);
  animation: processFlow 3.2s ease-in-out infinite;
}
.process-step { text-align: center; position: relative; min-width: 0; }
.step-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal); color: white;
  font-family: 'DM Serif Display', serif; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 8px var(--teal-pale);
  position: relative; z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-step:hover .step-bubble { transform: translateY(-5px) scale(1.06); box-shadow: 0 0 0 8px var(--teal-pale), 0 14px 28px rgba(7,131,150,0.18); }
.process-step h3 { font-size: 0.92rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: var(--mid); line-height: 1.6; }

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */

.services-detail { background: white; }
.services-detail .service-block:first-child { padding-top: 0; }
.service-block {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem;
  align-items: start; padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block-left { position: sticky; top: 100px; }
.service-number {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem; color: var(--teal-pale); line-height: 1;
  margin-bottom: 0.5rem;
}
.service-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; color: var(--navy); margin-bottom: 0.75rem;
}
.service-block, .support-section { scroll-margin-top: 90px; }
.service-block > .service-block-left > p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }
.service-tag {
  display: inline-block; background: var(--teal-pale); color: var(--teal-dark);
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1rem;
  font-weight: 600;
}
.service-features { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.25rem; border-radius: 10px;
  border: 1px solid var(--border); background: var(--off-white);
  transition: all 0.2s;
}
.feature-item:hover { border-color: var(--teal-light); background: var(--teal-pale); transform: translateX(6px); box-shadow: 0 10px 24px rgba(7,131,150,0.08); }
.feature-check { color: var(--teal); font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.feature-item h4 { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.8rem; color: var(--mid); line-height: 1.55; }
.scope-box {
  background: var(--off-white); border-radius: 12px;
  padding: 1.5rem; border: 1px solid var(--border); margin-top: 1.5rem;
  transition: all 0.2s;
}
.scope-box:hover {
  border-color: var(--teal-light);
  background: var(--teal-pale);
  transform: translateX(6px);
  box-shadow: 0 10px 24px rgba(7,131,150,0.08);
}
.scope-box h4 {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 1rem; font-weight: 600;
}
.scope-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.scope-col h5 { font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.scope-item { font-size: 0.78rem; color: var(--mid); padding: 0.2rem 0; display: flex; gap: 0.5rem; }
.scope-yes::before { content: '✓'; color: var(--teal); font-weight: 700; }
.scope-no::before { content: '—'; color: var(--border); }

/* Pricing */
.pricing-section { background: var(--off-white); }
.support-section { background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.pricing-card {
  background: white; border-radius: 16px; padding: 2rem;
  border: 1px solid var(--border); transition: all 0.25s;
  position: relative; overflow: visible;
}
.pricing-card:hover { transform: translateY(-7px); box-shadow: 0 18px 46px rgba(7,131,150,0.12); border-color: rgba(7,131,150,0.24); }
.pricing-card.featured {
  background: var(--navy); border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(7,131,150,0.2);
}
.pricing-card.featured h3 { color: white; }
.pricing-card.featured p { color: rgba(255,255,255,0.6); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.75); }
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: white; font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 100px;
}
.pricing-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.pricing-card p { font-size: 0.82rem; color: var(--mid); margin-bottom: 1.5rem; line-height: 1.55; }
.pricing-price {
  font-family: 'DM Serif Display', serif;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-price { border-color: rgba(255,255,255,0.1); }
.pricing-price-val { font-size: 2.2rem; color: var(--navy); }
.pricing-card.featured .pricing-price-val { color: white; }
.pricing-price-note { font-size: 0.78rem; color: var(--mid); font-family: 'DM Sans', sans-serif; }
.pricing-card.featured .pricing-price-note { color: rgba(255,255,255,0.5); }
.pricing-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.pricing-feature {
  font-size: 0.82rem; color: var(--near-black);
  display: flex; gap: 0.6rem; align-items: flex-start;
}
.pricing-feature::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

.support-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
.support-card {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 1.5rem; align-items: center;
  background: var(--off-white); border: 1px solid var(--border);
  border-left: 4px solid var(--teal-light);
  border-radius: 12px; padding: 1.5rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.support-card:hover { transform: translateY(-4px); border-color: rgba(7,131,150,0.24); box-shadow: 0 16px 38px rgba(7,131,150,0.1); }
.support-card-featured {
  background: var(--teal-pale); border-color: rgba(7,131,150,0.25);
  border-left-color: var(--teal);
}
.support-card-top { grid-column: 1; grid-row: 1 / span 2; }
.support-card-top h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.support-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem; color: var(--teal-dark);
}
.support-card p { grid-column: 2; font-size: 0.82rem; color: var(--mid); line-height: 1.55; }
.support-features {
  grid-column: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}
.support-features div {
  font-size: 0.78rem; color: var(--near-black);
  display: flex; gap: 0.5rem; align-items: flex-start;
}
.support-features div::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.support-card .btn {
  margin-top: 1rem;
  justify-content: center;
  width: 150px;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  text-align: center;
}

/* ══════════════════════════════════════════
   CASE STUDIES PAGE
══════════════════════════════════════════ */

.cases-grid-full {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem;
  margin-top: 3rem;
}
.case-card-full {
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s;
  position: relative;
}
.case-card-full:hover { box-shadow: 0 20px 52px rgba(7,131,150,0.14); transform: translateY(-7px); }
.case-card-header {
  background: var(--navy); padding: 2rem;
  position: relative; overflow: hidden;
}
.case-card-header::before {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(7,131,150,0.15);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.case-card-full:hover .case-card-header::before { transform: scale(1.25); opacity: 0.85; }
.case-type {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 100px;
  margin-bottom: 1rem; font-weight: 600;
}
.case-type-tcs { background: rgba(7,131,150,0.2); color: var(--teal-light); }
.case-type-role { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.case-card-header h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; color: white; margin-bottom: 0.4rem;
  position: relative; z-index: 1;
}
.case-sector { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; position: relative; z-index: 1; }
.case-card-body { padding: 2rem; }
.case-problem-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); font-weight: 600; margin-bottom: 0.5rem; }
.case-card-body p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.5rem; }
.case-outcome-box {
  background: var(--teal-pale); border-left: 3px solid var(--teal);
  padding: 1rem 1.25rem; border-radius: 0 8px 8px 0; margin-bottom: 1.5rem;
  font-size: 0.85rem; color: var(--teal-dark); line-height: 1.6;
}
.case-tech-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tech-tag {
  background: var(--off-white); border: 1px solid var(--border);
  color: var(--mid); font-size: 0.72rem; padding: 0.25rem 0.65rem;
  border-radius: 100px; letter-spacing: 0.04em;
}
.case-attribution { font-size: 0.72rem; color: var(--mid); font-style: italic; margin-top: 1rem; opacity: 0.7; }

/* Legal pages */
.legal-section { background: white; }
.legal-content {
  max-width: 860px;
  color: var(--mid);
  font-size: 0.94rem;
  line-height: 1.8;
}
.legal-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.65rem;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul {
  margin: 0 0 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-content a { color: var(--teal-dark); font-weight: 600; }
.legal-note {
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */

.about-intro { background: white; }
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 3rem; align-items: start; }
.about-photo-placeholder {
  max-width: 360px;
}
.about-photo-placeholder img {
  width: 100%; height: auto; display: block;
  border-radius: 16px; border: 1px solid rgba(7,131,150,0.2);
}
.photo-label { font-size: 0.78rem; color: var(--teal-dark); text-align: center; }
.photo-icon { font-size: 3rem; opacity: 0.4; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 1.25rem; }
.credentials { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; margin-top: 2rem; }
.credential {
  display: flex; gap: 1rem; align-items: center;
  padding: 1rem 1.25rem; background: var(--off-white);
  border-radius: 10px; border: 1px solid var(--border);
  text-decoration: none; transition: all 0.2s;
}
.credential-link:hover { border-color: var(--teal); background: var(--teal-pale); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(7,131,150,0.08); }
.credential-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.25rem; }
.credential-icon img { width: 28px; height: 28px; object-fit: contain; }
.credential-text h4 { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.credential-text p { font-size: 0.78rem; color: var(--mid); margin-bottom: 0; }

/* Values */
.values-section { background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: white; border-radius: 14px; padding: 2rem;
  border: 1px solid var(--border); text-align: center; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.value-card:hover { border-color: var(--teal); box-shadow: 0 16px 38px rgba(7,131,150,0.12); transform: translateY(-6px); }
.value-letter {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem; color: var(--teal); line-height: 1; margin-bottom: 0.75rem;
}
.value-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.82rem; color: var(--mid); line-height: 1.65; }

/* Microsoft stack */
.microsoft-section { background: white; }
.ms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ms-logos { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.ms-logo-card {
  border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem;
  text-align: center; transition: all 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.ms-logo-card { position: relative; overflow: hidden; }
.ms-logo-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.ms-logo-card:hover { border-color: var(--teal-light); background: var(--teal-pale); transform: translateY(-6px) scale(1.02); box-shadow: 0 14px 28px rgba(7,131,150,0.14); }
.ms-logo-card:hover::after { transform: scaleX(1); }
.ms-logo-card img { width: 36px; height: 36px; object-fit: contain; transition: transform 0.24s ease; }
.ms-logo-card:hover img { transform: scale(1.12) rotate(-3deg); }
.ms-logo-name { font-size: 0.72rem; color: var(--mid); font-weight: 500; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */

.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; margin-bottom: 3rem; }
.booking-full-width { margin-top: 0; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { font-size: 0.92rem; color: var(--mid); line-height: 1.75; margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-method {
  display: flex; flex-direction: row; gap: 1rem; align-items: center;
  padding: 1.25rem; border-radius: 10px;
  border: 1px solid var(--border); background: var(--off-white);
  text-decoration: none; transition: all 0.2s;
}
.contact-method:hover { border-color: var(--teal); background: var(--teal-pale); transform: translateX(6px); box-shadow: 0 12px 28px rgba(7,131,150,0.08); }
.contact-method-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-pale); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
  border: 1px solid rgba(7,131,150,0.2); overflow: hidden;
}
.contact-method-icon img { width: 22px; height: 22px; object-fit: contain; }
.contact-method-text h4 { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.contact-method-text p { font-size: 0.8rem; color: var(--mid); margin-bottom: 0; }
.contact-phone-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  align-items: baseline;
}
.contact-phone-line span + span::before {
  content: '•';
  margin-right: 0.55rem;
  color: var(--teal);
}
.booking-embed {
  background: var(--off-white); border-radius: 16px; padding: 2.5rem;
  border: 1px solid var(--border);
}
.booking-embed h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem;
}
.booking-embed p { font-size: 0.85rem; color: var(--mid); margin-bottom: 2rem; line-height: 1.6; }
.booking-placeholder {
  background: white; border-radius: 12px; border: 1px dashed var(--teal-light);
  padding: 3rem; text-align: center; color: var(--mid); font-size: 0.85rem;
}
.booking-placeholder strong { display: block; color: var(--teal-dark); font-size: 0.9rem; margin-bottom: 0.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select {
  border: 1.5px solid var(--border); border-radius: 8px; padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--near-black);
  background: white; transition: border 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-recaptcha { min-height: 78px; overflow-x: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav { padding: 0 2rem; }
  .nav-logo-mark { height: 40px; }
  .nav-links a { padding: 0.5rem 0.65rem; }
  .hero, .contact-grid, .ms-grid { gap: 2.5rem; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2rem; }
  .scroll-fade {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  nav { padding: 0 1.5rem; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    z-index: 1001;
    display: flex; flex-direction: column; align-items: stretch;
    gap: 0.4rem; padding: 0 1.5rem;
    width: 100vw; max-width: 100vw;
    max-height: 0;
    overflow: hidden;
    background: rgba(15,30,40,0.99);
    border-bottom: 1px solid rgba(83,177,205,0.16);
    box-shadow: 0 18px 40px rgba(0,0,0,0.26);
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.24s ease, opacity 0.18s ease, padding 0.18s ease;
  }
  .nav-open .nav-links {
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    padding: 1rem 1.5rem 1.5rem;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    width: 100%; justify-content: flex-start;
    padding: 0.85rem 1rem; font-size: 0.95rem;
  }
  .nav-cta { margin-left: 0; justify-content: center !important; }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto; grid-template-columns: 1fr;
    padding: 4rem 1.5rem 4.5rem;
  }
  .hero-right {
    display: flex;
    gap: 0.85rem;
    transform: none;
    perspective: none;
  }
  .hero-card {
    padding: 1.15rem;
    border-radius: 12px;
  }
  .hero-card::before { display: none; }
  .stat-row { gap: 0.55rem; }
  .stat-val { font-size: 1.45rem; }
  .stat-label { font-size: 0.66rem; }
  .problem-item {
    padding: 0.55rem 0.65rem;
    gap: 0.55rem;
    font-size: 0.78rem;
  }
  .solution-tag { font-size: 0.58rem; padding: 0.16rem 0.42rem; }
  .hero h1 { font-size: clamp(2.35rem, 9vw, 3.6rem); }
  .hero-sub { max-width: 680px; }
  .section, .section-sm { padding: 4rem 1.5rem; }
  .page-offset > .page-hero + .section { padding-top: 2.5rem; }
  .page-hero { height: 380px; padding: 3.5rem 1.5rem 3.5rem; }
  .services-strip { padding: 1.5rem; }
  .strip-inner { align-items: flex-start; gap: 1rem; }
  .strip-divider { display: none; }
  .offer-preview-grid, .service-block, .about-grid,
  .contact-grid, .ms-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-block { padding: 3rem 0; }
  .service-block-left { position: static; }
  .pain-grid, .proof-grid, .values-grid, .pricing-grid,
  .cases-grid-full { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-steps, .ms-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ms-logo-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 1rem) / 2);
  }
  .process-line { display: none; }
  .scope-cols, .support-card, .support-features { grid-template-columns: 1fr; }
  .support-card-top, .support-card p, .support-features, .support-card .btn { grid-column: 1; grid-row: auto; }
  .support-card .btn { width: 100%; max-width: 220px; }
  .about-photo-placeholder { max-width: 320px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  footer { padding: 3rem 1.5rem 2rem; }
}

@media (max-width: 640px) {
  body > * { max-width: 100%; }
  nav { height: 64px; padding: 0 1rem; }
  .page-offset { padding-top: 64px; }
  .nav-links {
    top: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .nav-open .nav-links {
    max-height: calc(100vh - 64px);
    max-height: calc(100dvh - 64px);
    padding-top: 0.8rem;
    padding-bottom: 1.25rem;
  }
  .nav-logo { gap: 0.65rem; }
  .nav-logo-mark { height: 36px; }
  .nav-logo-text { font-size: 0.92rem; }
  .nav-logo-text small { font-size: 0.54rem; letter-spacing: 0.08em; }
  .nav-toggle { width: 40px; height: 40px; }
  .hero { padding: 3rem 1rem 3.5rem; }
  .hero-right { margin-top: -0.75rem; }
  .hero-card-title { font-size: 0.68rem; }
  .hero-eyebrow { font-size: 0.65rem; line-height: 1.4; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-actions .btn, .booking-embed .btn { justify-content: center; width: 100%; }
  .hero-social-proof { gap: 0.8rem; }
  .price-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 0.9rem 1rem;
  }
  .page-hero { height: auto; min-height: 320px; padding: 2.75rem 1rem 3rem; }
  .page-hero h1 { font-size: clamp(2rem, 12vw, 2.7rem); }
  .page-hero p, .lead, .cta-section p { font-size: 0.94rem; }
  .section, .section-sm { padding: 3rem 1rem; }
  .page-offset > .page-hero + .section { padding-top: 2rem; }
  h2.display { font-size: clamp(1.85rem, 10vw, 2.35rem); }
  .pain-grid, .proof-grid, .values-grid, .pricing-grid,
  .cases-grid-full, .process-steps, .form-row,
  .credentials, .footer-top { grid-template-columns: 1fr; }
  .ms-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-steps { gap: 1rem; margin-top: 2rem; }
  .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem 1rem;
    text-align: left;
    align-items: start;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.15rem;
  }
  .process-step .step-bubble {
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    margin: 0;
    box-shadow: 0 0 0 5px var(--teal-pale);
    font-size: 1.1rem;
  }
  .process-step h3 { margin-bottom: 0; }
  .pain-card, .pricing-card, .value-card, .case-card-body,
  .booking-embed { padding: 1.35rem; }
  .case-card-header { padding: 1.5rem; }
  .mini-offer-card, .feature-item, .credential, .contact-method {
    padding: 1rem; gap: 0.8rem;
  }
  .contact-method { align-items: flex-start; }
  .contact-method-icon { width: 36px; height: 36px; }
  .service-number { font-size: 3rem; }
  .service-block h3 { font-size: 1.35rem; }
  .pricing-price-val { font-size: 1.8rem; }
  .support-card { padding: 1.25rem; gap: 1rem; }
  .support-features { gap: 0.55rem; }
  .support-card .btn { max-width: none; }
  .ms-logo-card { padding: 1rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-legal { flex-wrap: wrap; gap: 1rem; }
  .booking-full-width iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    height: 720px;
    min-width: 0 !important;
  }
}

@media (max-width: 420px) {
  .nav-logo-mark { height: 32px; }
  .nav-logo-text { font-size: 0.84rem; }
  .nav-logo-text small { font-size: 0.48rem; }
  .hero h1 { font-size: 2.25rem; }
  .btn { padding-left: 1rem; padding-right: 1rem; }
  .strip-items { gap: 0.6rem; }
  .strip-item { width: 100%; justify-content: flex-start; }
  .footer-logo img { height: 36px; }
}
