/* ──────────────────────────────────────────────────────────────────
   Binding Minds — Custom styles (supplements Tailwind via CDN)
   Tokens map 1:1 to Figma. Mirror these into Laravel's CSS at port.
   ────────────────────────────────────────────────────────────────── */

:root {
  /* Brand */
  --brand-primary:    #1E90B3;   /* CTA teal */
  --brand-primary-2:  #378AA4;
  --brand-dark:       #143C55;   /* footer navy */
  --brand-dark-2:     #1E2229;   /* stat band */
  --brand-soft-1:     #B5EEFF;   /* pale teal hero ring */
  --brand-soft-2:     #E0F8FF;   /* pale teal halo */
  --brand-soft-3:     #DCF2F9;   /* CTA card bg */
  --brand-soft-4:     #FFF5F4;   /* peach circle bg */
  --brand-soft-5:     #FBFBFB;   /* section bg gray */
  --brand-pill:       #6F6968;   /* secondary dark pill button */

  --ink:              #000000;
  --ink-soft:         #444443;
  --ink-mute:         #8B8A8A;
  --rule:             #EBEBEB;
  --rule-2:           #D4D4D4;

  --shadow-card:      0 4px 44px rgba(195,195,195,.25);
  --shadow-cta:       0 4px 54px rgba(0,0,0,.18);
  --shadow-nav:       0 4px 80px rgba(190,190,190,.25);
  --shadow-pop:       0 12px 36px rgba(20,40,60,.12);

  /* Type */
  --f-display: "Syne", "Outfit", system-ui, sans-serif;
  --f-body:    "Montserrat", system-ui, sans-serif;
  --f-quote:   "Raleway", system-ui, sans-serif;

  /* Geometry */
  --radius-pill:  999px;
  --radius-card:  30px;
  --radius-card-lg: 80px;
  --radius-card-xl: 100px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }

/* Type primitives ─────────────────────────────────────────────── */
.h-display    { font-family: var(--f-display); font-weight: 700; letter-spacing: -.01em; line-height: 1.08; }
.h-eyebrow    { font-family: var(--f-body);    font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-primary); font-size: 12px; }
.h-quote      { font-family: var(--f-quote);   font-weight: 400; }
.t-mute       { color: var(--ink-mute); }
.section-headline { font-family: var(--f-display); font-weight: 700; font-size: clamp(28px, 4vw, 40px); line-height: 1.1; }
.section-subhead  { font-family: var(--f-body);    font-size: clamp(15px, 1.4vw, 18px); line-height: 1.7; color: var(--ink-soft); }

/* Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-pill);
  font-family: var(--f-body); font-weight: 700; font-size: 15px;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap;
}
.btn:hover    { transform: translateY(-2px); }
.btn:active   { transform: translateY(0); }
.btn--primary { background: var(--brand-primary); color: #fff; box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: #1a7d9c; }
.btn--dark    { background: var(--brand-pill); color: #fff; box-shadow: var(--shadow-cta); }
.btn--dark-soft { background: #6F6968; color: #fff; box-shadow: var(--shadow-cta); }
.btn--ghost   { background: transparent; color: var(--ink); border: 1.5px solid var(--rule-2); }
.btn--ghost:hover { background: var(--brand-soft-2); border-color: var(--brand-primary); color: var(--brand-primary); }
.btn--white   { background: #fff; color: var(--ink); box-shadow: var(--shadow-card); }

.btn .ic { width: 18px; height: 18px; }

/* Pill arrow icon used inside primary buttons */
.btn .ic-arrow { width: 18px; height: 18px; }

/* Containers ──────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1448px; margin: 0 auto; padding: 0 24px; }
.wrap-tight { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Top navigation ─────────────────────────────────────────────── */
.topnav-shell {
  position: sticky; top: 16px; z-index: 50;
  padding: 0 24px;
}
.topnav {
  display: flex; align-items: center; gap: 24px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-nav);
  padding: 14px 28px;
  max-width: 1448px; margin: 0 auto;
}
.topnav__logo img { height: 38px; width: auto; }
.topnav__links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.topnav__link {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--f-body); font-weight: 500; font-size: 15px;
  color: var(--ink); text-decoration: none;
  position: relative; padding: 6px 0;
}
.topnav__link:hover { color: var(--brand-primary); }
.topnav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--brand-primary); border-radius: 2px;
}
.topnav__link .chev { width: 16px; height: 16px; opacity: .7; transition: transform .18s; }
.topnav__has-children:hover .chev { transform: rotate(180deg); }

/* Mega-menu dropdown */
.topnav__has-children { position: relative; }
.dropdown {
  position: absolute; left: 50%; top: calc(100% + 14px);
  transform: translate(-50%, 8px);
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-pop);
  padding: 12px; min-width: 280px;
  opacity: 0; pointer-events: none; transition: opacity .18s, transform .18s;
}
/* Invisible hover-bridge spanning the 14px gap between the trigger and the
   panel, so moving the cursor down into the menu keeps :hover alive.
   Inherits pointer-events from .dropdown — inert while the menu is closed. */
.dropdown::before {
  content: ""; position: absolute; left: 0; right: 0;
  top: -14px; height: 14px;
}
.topnav__has-children:hover .dropdown,
.topnav__has-children:focus-within .dropdown {
  opacity: 1; pointer-events: auto; transform: translate(-50%, 0);
}
.dropdown a {
  display: block; padding: 12px 14px; border-radius: 10px;
  font-size: 14px; color: var(--ink); text-decoration: none;
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: var(--brand-soft-2); color: var(--brand-primary); }

/* Mobile top bar */
.mtopbar {
  display: none;
  position: sticky; top: 0; z-index: 50;
  background: #fff; padding: 10px 16px;
  border-bottom: 1px solid var(--rule);
  align-items: center; justify-content: space-between;
}
.mtopbar img { height: 30px; }
.mtopbar__menu {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--rule); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none;
}
.drawer__scrim {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0; transition: opacity .25s ease;
}
.drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(86vw, 360px); background: #fff;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column; padding: 18px;
  overflow-y: auto;
}
.drawer.is-open { pointer-events: auto; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__close {
  width: 40px; height: 40px; border-radius: 12px; margin-left: auto;
  background: #f4f4f5; border: 0; font-size: 20px; cursor: pointer;
}
.drawer__nav { margin-top: 12px; }
.drawer__nav a {
  display: block; padding: 14px 12px; font-size: 16px; font-weight: 600;
  color: var(--ink); text-decoration: none; border-radius: 12px;
}
.drawer__nav a:hover { background: var(--brand-soft-2); }
.drawer__group-label { padding: 18px 12px 6px; font-size: 12px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); }
.drawer__sub a { padding: 12px 18px; font-size: 14px; font-weight: 500; }

/* Mobile bottom tab bar */
.tabbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--rule);
  padding: 6px 6px env(safe-area-inset-bottom);
  justify-content: space-around; align-items: stretch;
}
.tabbar a {
  flex: 1 1 0; display: flex; flex-direction: column;
  align-items: center; gap: 4px; padding: 8px 4px;
  color: var(--ink-mute); text-decoration: none;
  font-size: 11px; font-weight: 600; min-height: 56px; min-width: 56px;
  border-radius: 14px; transition: color .15s, background .15s;
}
.tabbar a svg { width: 22px; height: 22px; }
.tabbar a.is-active {
  color: var(--brand-primary);
  background: var(--brand-soft-2);
}

/* Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero__bg-map {
  position: absolute; inset: 100px 0 auto 0;
  background: url(../images/dotted-map.png) center top / contain no-repeat;
  opacity: .35; height: 720px; pointer-events: none;
}
.hero__rings {
  position: absolute; inset: 0; pointer-events: none;
}
.hero__rings span {
  position: absolute;
  width: 520px; height: 520px; border-radius: 50%;
  background: var(--brand-soft-2); opacity: .55;
  filter: blur(2px);
}
.hero__rings span:nth-child(1) { left: -200px;  top: 120px; }
.hero__rings span:nth-child(2) { right: -180px; top: 200px; background: var(--brand-soft-4); }
.hero__rings span:nth-child(3) { left: 50%; top: 600px; transform: translateX(-50%); }
.hero__inner { position: relative; z-index: 2; text-align: center; padding-top: 70px; }
.hero h1 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(34px, 5vw, 55px); line-height: 1.08;
  margin: 0 auto; max-width: 1100px;
}
.hero p.lead {
  font-family: var(--f-body); font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.6; margin: 22px auto 36px; max-width: 920px; color: var(--ink-soft);
}
.hero__ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__image-card {
  position: relative; z-index: 2;
  margin: 0 auto; max-width: 1180px;
  border-radius: 32px; overflow: hidden;
}
.hero__image-card img { width: 100%; height: auto; display: block; }
.hero__logo-strip {
  margin: 36px auto 0; max-width: 1180px; padding: 0 24px;
  display: flex; gap: 28px; overflow: hidden;
}
.hero__logo-strip-inner {
  display: flex; gap: 80px; align-items: center;
  animation: marqueeL 38s linear infinite;
  flex-shrink: 0; padding-right: 80px;
}
.hero__logo-strip-inner img { height: 56px; opacity: .8; }
@keyframes marqueeL { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* About block on home */
.about-block {
  position: relative;
  margin: 64px auto 0;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 150px rgb(208,208,208);
  border-radius: var(--radius-card-xl);
  padding: 80px 60px;
  max-width: 1700px;
}
.about-block__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-block__title {
  text-align: center; font-family: var(--f-display); font-weight: 700;
  font-size: 40px; margin: 0 0 60px; line-height: 1;
}
.about-block__symbol {
  display: inline-block; vertical-align: middle;
  width: 50px; height: 56px;
  background: url(../images/symbol-binding.png) center / contain no-repeat;
  margin-right: 12px; margin-bottom: -8px;
}
.about-block__photo img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-card); }
.about-block__body p {
  font-family: var(--f-body); font-size: 16px; line-height: 2; margin: 0 0 18px;
  color: var(--ink-soft);
}

/* Specialties ─────────────────────────────────────────────────── */
.specialties {
  position: relative; padding: 96px 0; overflow: hidden;
  background: var(--brand-soft-5);
  margin-top: 80px;
}
.specialties__halo {
  position: absolute; left: 50%; top: 50%;
  width: 504px; height: 506px; border-radius: 50%;
  background: var(--brand-soft-1); opacity: .59;
  transform: translate(-50%, -50%); pointer-events: none;
}
.specialties__dots-1, .specialties__dots-2 {
  position: absolute; width: 534px; height: 534px;
  background: url(../images/dots-pattern.png) center / contain no-repeat;
  opacity: .1; pointer-events: none;
}
.specialties__dots-1 { left: -80px;  top: -100px; transform: rotate(-30deg); }
.specialties__dots-2 { right: -80px; top: -100px; transform: rotate(30deg); }
.specialties__header { text-align: center; max-width: 900px; margin: 0 auto 60px; position: relative; z-index: 2; }
.specialties__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 1448px; margin: 0 auto;
  position: relative; z-index: 2;
}
.spec-card {
  position: relative;
  background: #fff; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 60px rgba(30,144,179,.18);
}
.spec-card__img {
  height: 283px; background: var(--rule-2) center / cover no-repeat;
}
.spec-card__body { padding: 26px 28px 28px; }
.spec-card__code {
  font-family: var(--f-quote); font-weight: 800; font-size: 65px;
  line-height: 1; color: transparent; -webkit-text-stroke: 1.5px currentColor;
  margin-bottom: 12px;
}
.spec-card__title {
  font-family: var(--f-display); font-weight: 700; font-size: 26px;
  margin: 0 0 4px;
}
.spec-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-weight: 700; font-size: 16px;
  color: var(--ink); text-decoration: underline; text-underline-offset: 4px;
  margin-top: 12px;
}
.spec-card__cta svg { width: 18px; height: 18px; transition: transform .2s; }
.spec-card:hover .spec-card__cta svg { transform: translateX(4px); }

/* Why Binding Minds (split) ──────────────────────────────────── */
.why { padding: 100px 0 80px; position: relative; }
.why__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.why__visual { position: relative; }
.why__visual::before {
  content: ""; position: absolute;
  left: -40px; top: -40px; width: 110%; height: 105%;
  background: var(--brand-soft-1); border-radius: 50%; opacity: .35;
  z-index: 0;
}
.why__visual img {
  position: relative; z-index: 1;
  width: 100%; border-radius: 24px; box-shadow: var(--shadow-card);
}
.why__copy h2 { font-family: var(--f-display); font-size: 40px; margin: 0 0 24px; line-height: 1.05; }
.why__copy p  { font-family: var(--f-body); font-size: 16px; line-height: 2; color: var(--ink-soft); margin: 0 0 16px; }
.why__sub { font-family: var(--f-display); font-weight: 700; font-size: 26px; margin: 32px 0 18px; }
.why__pillars { display: grid; gap: 16px; }
.pillar {
  display: grid; grid-template-columns: 80px 1fr; gap: 22px; align-items: start;
  background: #fff; border-radius: 20px; padding: 22px;
  box-shadow: var(--shadow-card); transition: transform .2s, box-shadow .2s;
}
.pillar:hover { transform: translateX(4px); box-shadow: 0 10px 40px rgba(30,144,179,.14); }
.pillar__icon { width: 78px; height: 78px; background: var(--brand-soft-2); border-radius: 16px; display: grid; place-items: center; }
.pillar__icon img { width: 56px; height: 56px; object-fit: contain; }
.pillar h3 { font-family: var(--f-body); font-weight: 700; font-size: 20px; margin: 0 0 6px; }
.pillar p  { font-family: var(--f-body); font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* Culture (people are our culture) ───────────────────────────── */
.culture { padding: 100px 0; position: relative; overflow: hidden; }
.culture__head { text-align: center; max-width: 1100px; margin: 0 auto 56px; }
.culture__grid {
  display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 40px; max-width: 1448px; margin: 0 auto;
  align-items: center; position: relative;
}
.culture__halo {
  position: absolute; right: 0; top: 100px;
  width: 524px; height: 524px; border-radius: 50%;
  background: var(--brand-soft-1); opacity: .35; z-index: 0;
}
.culture__halo-2 {
  position: absolute; left: -100px; top: 200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: #e3e3e3; opacity: .35; z-index: 0;
}
.culture__illustration { position: relative; z-index: 1; }
.culture__illustration img { width: 100%; border-radius: 24px; }
.culture__cards {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.culture-card {
  background: #fff; border-radius: var(--radius-card); padding: 28px;
  box-shadow: var(--shadow-card); transition: transform .2s;
}
.culture-card:hover { transform: translateY(-4px); }
.culture-card__icon {
  width: 72px; height: 72px; border-radius: 16px;
  background: var(--brand-soft-2);
  display: grid; place-items: center; margin-bottom: 18px;
}
.culture-card__icon img { width: 44px; height: 44px; object-fit: contain; }
.culture-card h3 { font-family: var(--f-display); font-weight: 700; font-size: 22px; margin: 0 0 8px; }
.culture-card p  { font-family: var(--f-body);    font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* Stats band ─────────────────────────────────────────────────── */
.stats {
  background: var(--brand-dark-2); border-radius: var(--radius-card-lg);
  margin: 40px auto; max-width: 1448px;
  padding: 70px 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat { text-align: center; color: #fff; }
.stat__icon {
  width: 76px; height: 76px; margin: 0 auto 18px;
  border-radius: 50%; background: rgba(255,255,255,.06);
  display: grid; place-items: center;
}
.stat__icon img { width: 44px; height: 44px; opacity: .9; }
.stat__value {
  font-family: var(--f-body); font-weight: 700; font-size: 50px;
  line-height: 1.1; margin: 0;
}
.stat__label { font-family: var(--f-body); font-weight: 500; font-size: 14px; opacity: .8; margin-top: 6px; }

/* Referral ──────────────────────────────────────────────────── */
.referral {
  background: #FAFAFA; padding: 80px 0;
}
.referral__inner {
  max-width: 1448px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.referral__copy { text-align: left; }
.referral__copy h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(28px, 3.5vw, 40px); margin: 0 0 14px; }
.referral__copy p  { font-family: var(--f-quote); font-size: 20px; color: var(--ink-soft); margin: 0 0 28px; }
.referral__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.referral__image img { width: 100%; max-width: 460px; }

/* Testimonials ──────────────────────────────────────────────── */
.testimonials { padding: 100px 0 80px; position: relative; }
.testimonials__head {
  text-align: center; max-width: 700px; margin: 0 auto 50px;
  position: relative;
}
.testimonials__head::before {
  content: ""; position: absolute;
  left: 50%; top: -40px; transform: translateX(-50%);
  width: 550px; height: 200px; border-radius: 50%;
  background: var(--brand-soft-4); z-index: -1;
}
.t-track-wrap { position: relative; }
.t-track {
  display: flex; gap: 22px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 8px 24px 32px;
  scrollbar-width: none;
}
.t-track::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: #fff; border-radius: 24px; padding: 26px;
  box-shadow: var(--shadow-card); border: 1px solid #f1f1f1;
}
.t-card__stars { display: flex; gap: 4px; color: #f5b91f; margin-bottom: 14px; }
.t-card__stars svg { width: 18px; height: 18px; }
.t-card__quote { font-family: var(--f-quote); font-size: 14px; line-height: 1.7; color: var(--ink); margin: 0 0 24px; }
.t-card__author { display: flex; align-items: center; gap: 12px; }
.t-card__avatar { width: 40px; height: 40px; border-radius: 50%; background-size: cover; background-position: center; }
.t-card__name  { font-family: var(--f-quote); font-weight: 500; font-size: 14px; }
.t-card__role  { font-family: var(--f-quote); font-size: 13px; color: var(--ink-mute); }
.t-controls {
  display: flex; justify-content: center; gap: 12px; margin-top: 16px;
}
.t-controls button {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--rule); cursor: pointer;
  display: grid; place-items: center; transition: background .15s;
}
.t-controls button:hover { background: var(--brand-soft-2); }

/* Footprint ─────────────────────────────────────────────────── */
.footprint {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(#ffffff 0%, #E8E8E8 49%, #ffffff 100%);
  opacity: 1;
}
.footprint__head { text-align: center; max-width: 900px; margin: 0 auto 40px; }
.footprint__head h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(28px, 4vw, 40px); margin: 0 0 16px; }
.footprint__head p  { font-family: var(--f-quote); font-size: 20px; color: var(--ink-soft); margin: 0; }
.footprint__map-wrap {
  position: relative; max-width: 1300px; margin: 0 auto;
  aspect-ratio: 1300/700;
}
.footprint__halo {
  position: absolute; left: 50%; top: 60%;
  width: 550px; height: 550px; border-radius: 50%; transform: translate(-50%, -50%);
  background: var(--brand-soft-4); z-index: 0;
}
.footprint__halo-2 {
  position: absolute; left: 30%; top: 70%;
  width: 524px; height: 524px; border-radius: 50%; transform: translate(-50%, -50%);
  background: var(--brand-soft-1); opacity: .59; z-index: 0;
}
.footprint__map {
  position: absolute; inset: 0;
  background: url(../images/dotted-map.png) center / contain no-repeat;
  opacity: .9; z-index: 1;
}
.pin {
  position: absolute; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transform: translate(-50%, -100%);
}
.pin__dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--brand-primary);
  box-shadow: 0 0 0 6px rgba(30,144,179,.18), 0 0 0 12px rgba(30,144,179,.08);
  animation: pulse 2.6s ease-out infinite;
}
.pin--primary .pin__dot { background: #E11D48; box-shadow: 0 0 0 6px rgba(225,29,72,.18), 0 0 0 12px rgba(225,29,72,.08); }
.pin__label {
  font-family: var(--f-body); font-weight: 500; font-size: 14px;
  background: #fff; padding: 4px 10px; border-radius: 999px;
  box-shadow: var(--shadow-card);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 6px  rgba(30,144,179,.20), 0 0 0 12px rgba(30,144,179,.10); }
  60%  { box-shadow: 0 0 0 16px rgba(30,144,179,0),   0 0 0 28px rgba(30,144,179,0); }
  100% { box-shadow: 0 0 0 6px  rgba(30,144,179,.20), 0 0 0 12px rgba(30,144,179,.10); }
}

/* Vacancies CTA ─────────────────────────────────────────────── */
.vacancies {
  margin: 40px auto 80px; max-width: 1448px;
  background: var(--brand-soft-3); border-radius: 100px 100px 40px 40px;
  padding: 64px 60px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.vacancies__copy h2 {
  font-family: var(--f-body); font-weight: 700; font-size: clamp(28px, 3.5vw, 45px);
  color: #fff;
  background: var(--brand-primary);
  display: inline-block; padding: 10px 26px; border-radius: 16px;
  margin: 0 0 24px;
}
.vacancies__copy p {
  font-family: var(--f-body); font-size: 16px; line-height: 1.7; margin: 0 0 28px; color: var(--ink-soft);
}
.vacancies__image img { width: 100%; max-width: 540px; margin-left: auto; display: block; }
.vacancies__squiggle {
  display: block; width: 240px; height: 12px; margin-bottom: 16px;
}

/* Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--brand-dark); color: #fff;
  border-radius: 80px 80px 0 0; margin-top: 40px;
  padding: 64px 0 24px;
}
.site-footer__grid {
  max-width: 1448px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 1.2fr .8fr 1fr 1.1fr; gap: 40px;
}
.site-footer img.logo { height: 56px; margin-bottom: 22px; }
.site-footer p.lede   { font-family: var(--f-quote); font-size: 15px; line-height: 1.7; opacity: .9; max-width: 320px; }
.site-footer h4 { font-family: var(--f-quote); font-weight: 700; font-size: 22px; margin: 0 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a  { color: rgba(235,235,235,.7); text-decoration: none; font-family: var(--f-quote); font-size: 16px; transition: color .15s, opacity .15s; }
.site-footer a:hover { color: #fff; }
.site-footer .contact-row { display: grid; grid-template-columns: 28px 1fr; gap: 8px 12px; align-items: start; margin-bottom: 14px; }
.site-footer .contact-row svg { width: 22px; height: 22px; stroke: rgba(255,255,255,.8); margin-top: 2px; }
.site-footer .contact-row span { font-family: var(--f-quote); font-size: 15px; line-height: 1.6; opacity: .85; }
.site-footer .bottom {
  max-width: 1448px; margin: 36px auto 0; padding: 24px 56px 0;
  border-top: 1px solid rgba(135,135,135,.4);
  display: flex; align-items: center; justify-content: space-between;
}
.site-footer .copy { font-family: var(--f-quote); font-size: 13px; opacity: .8; margin: 0; }
.site-footer .social { display: flex; gap: 12px; }
.site-footer .social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: grid; place-items: center;
  transition: background .15s;
}
.site-footer .social a:hover { background: var(--brand-primary); }
.site-footer .social img { width: 18px; height: 18px; filter: invert(1); }

/* Reveal animation utility */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* Toast for stub forms */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 14px;
  font-family: var(--f-body); font-size: 14px; font-weight: 600;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ────────────────────────────────────────────────────────────── */
/*  RESPONSIVE — mobile-first app shell                          */
/* ────────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .topnav__links { gap: 18px; }
  .topnav__cta { display: none; }
}

@media (max-width: 900px) {
  .topnav-shell { display: none; }
  .mtopbar      { display: flex; }
  .tabbar       { display: flex; }
  body          { padding-bottom: 80px; }

  /* Hero */
  .hero        { padding-top: 24px; }
  .hero__inner { padding-top: 8px; padding-inline: 4px; }
  .hero h1     { font-size: clamp(28px, 7vw, 34px); }
  .hero p.lead { font-size: 16px; margin: 16px auto 24px; }
  .hero__ctas  { gap: 10px; flex-direction: column; align-items: stretch; padding: 0 24px; }
  .hero__ctas .btn { justify-content: center; width: 100%; }
  .hero__image-card { border-radius: 24px; margin-inline: 16px; }
  .hero__logo-strip { padding: 0 12px; }
  .hero__logo-strip-inner img { height: 40px; }

  /* About */
  .about-block { padding: 48px 24px; border-radius: 40px; margin: 32px 16px 0; }
  .about-block__grid { grid-template-columns: 1fr; gap: 28px; }
  .about-block__title { font-size: 28px; margin-bottom: 28px; }

  /* Specialties → horizontal scroll */
  .specialties { padding: 64px 0; margin-top: 32px; }
  .specialties__halo { display: none; }
  .specialties__grid {
    grid-template-columns: none;
    grid-auto-flow: column; grid-auto-columns: 78%;
    overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 16px; padding: 8px 16px 24px;
  }
  .specialties__grid::-webkit-scrollbar { display: none; }
  .spec-card { scroll-snap-align: start; }
  .spec-card__img { height: 200px; }

  /* Why */
  .why { padding: 64px 0 32px; }
  .why__grid { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .why__visual::before { display: none; }
  .why__copy h2 { font-size: 28px; }
  .pillar { grid-template-columns: 64px 1fr; padding: 18px; }
  .pillar__icon { width: 64px; height: 64px; }
  .pillar__icon img { width: 44px; height: 44px; }

  /* Culture */
  .culture { padding: 64px 0; }
  .culture__grid { grid-template-columns: 1fr; padding: 0 20px; }
  .culture__halo, .culture__halo-2 { display: none; }
  .culture__cards {
    grid-template-columns: none;
    grid-auto-flow: column; grid-auto-columns: 75%;
    overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; padding-bottom: 12px;
    margin: 0 -20px; padding-inline: 20px;
  }
  .culture__cards::-webkit-scrollbar { display: none; }
  .culture-card { scroll-snap-align: start; }

  /* Stats */
  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 44px 24px; border-radius: 48px; margin: 24px 16px;
  }
  .stat__value { font-size: 38px; }

  /* Referral */
  .referral { padding: 56px 0; }
  .referral__inner { grid-template-columns: 1fr; padding: 0 24px; text-align: center; }
  .referral__copy { text-align: center; }
  .referral__ctas { justify-content: center; }

  /* Testimonials already scrollable */
  .testimonials { padding: 64px 0 40px; }

  /* Footprint - convert pin layout to a city list under map */
  .footprint { padding: 56px 0; }
  .footprint__map-wrap { aspect-ratio: 4/3; margin: 0 12px; }
  .pin__label { font-size: 12px; }

  /* Vacancies */
  .vacancies {
    grid-template-columns: 1fr; padding: 48px 24px;
    margin: 24px 16px; border-radius: 48px 48px 28px 28px;
  }
  .vacancies__copy h2 { font-size: 28px; }
  .vacancies__image img { margin: 24px auto 0; }

  /* Footer */
  .site-footer { border-radius: 48px 48px 0 0; padding: 48px 0 24px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; padding: 0 24px; gap: 32px; }
  .site-footer__col--brand { grid-column: 1 / -1; }
  .site-footer .bottom { padding: 24px 24px 0; flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 540px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* Print / utility */
[hidden] { display: none !important; }
