/* ==========================================================================
   BUILT FOR LIFE — design system
   --------------------------------------------------------------------------
   ALL BRAND COLOURS LIVE IN THE :root BLOCK BELOW.
   To rebrand, change only those values — nothing else in this file
   hard-codes a colour.
   ========================================================================== */

:root {
  /* ---- Brand blues --------------------------------------------------- */
  --blue:        #0E74DD;   /* LOGO BLUE — buttons, links, accents        */
  --blue-dark:   #0A54A2;   /* hovers, deep fills                         */
  --blue-bright: #3B93F0;   /* highlights, glows, active states           */
  --blue-tint:   #E9F3FE;   /* pale wash backgrounds                      */
  --blue-tint-2: #D3E6FB;   /* slightly deeper wash                       */

  /* ---- Ink ----------------------------------------------------------- */
  --ink:       #0B1E33;     /* headlines                                  */
  --ink-soft:  #41566E;     /* body copy                                  */
  --ink-faint: #7B8DA3;     /* meta, captions                             */

  /* ---- Surfaces ------------------------------------------------------ */
  --paper:      #FFFFFF;
  --paper-soft: #F6F9FC;    /* off-white                                  */
  --line:       #E0E8F1;
  --line-strong:#C6D6E8;

  /* ---- Signal (promo / discount only) -------------------------------- */
  --signal:      #F26522;
  --signal-dark: #C94E13;

  /* ---- Type ---------------------------------------------------------- */
  --font: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* ---- Rhythm -------------------------------------------------------- */
  --shell: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 160px);
  --radius: 4px;
  --radius-lg: 8px;

  /* ---- Motion -------------------------------------------------------- */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);

  /* ---- Elevation ----------------------------------------------------- */
  --shadow-sm: 0 1px 2px rgba(10, 26, 47, .06),
               0 4px 14px -6px rgba(10, 26, 47, .10);
  --shadow-md: 0 2px 4px rgba(10, 26, 47, .05),
               0 18px 40px -18px rgba(10, 26, 47, .22);
  --shadow-lg: 0 30px 80px -30px rgba(10, 26, 47, .35);
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.02;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--soft { background: var(--paper-soft); }
.section--tint { background: var(--blue-tint); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ---- Section headers ------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
  flex: none;
}

.eyebrow--plain::before { display: none; }

.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.sec-head__lede {
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: var(--ink-soft);
  max-width: 52ch;
}

@media (max-width: 900px) {
  .sec-head { grid-template-columns: 1fr; align-items: start; }
}

/* ---- Type scale ------------------------------------------------------ */

.d1 { font-size: clamp(44px, 7.4vw, 104px); }
.d2 { font-size: clamp(34px, 4.7vw, 66px); }
.d3 { font-size: clamp(27px, 3vw, 42px); }
.d4 { font-size: clamp(21px, 1.9vw, 27px); letter-spacing: -.02em; }

.lede {
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
  letter-spacing: -.01em;
}

.muted { color: var(--ink-faint); }
.hl { color: var(--blue); }

/* Highlighted phrase inside a headline.
   Uses a background sweep rather than a positioned bar so the highlight
   wraps correctly across multiple lines. */
.mark {
  color: var(--blue);
  background-image: linear-gradient(var(--blue-tint-2), var(--blue-tint-2));
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 0% .26em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  transition: background-size .95s var(--ease) .3s;
}

.is-in .mark { background-size: 100% .26em; }

/* If JS never runs, show the highlight anyway */
.no-js .mark { background-size: 100% .26em; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-dark);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index: -1;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(0); }

.btn .arw { transition: transform .4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { --btn-fg: #fff; border-color: var(--ink); }
.btn--ghost::after { background: var(--ink); }

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
}
.btn--light::after { background: var(--blue-tint); }
.btn--light:hover { --btn-fg: var(--blue-dark); }

.btn--onblue {
  --btn-bg: #fff;
  --btn-fg: var(--blue-dark);
}
.btn--onblue::after { background: rgba(255,255,255,.82); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--outline-light::after { background: #fff; }
.btn--outline-light:hover { --btn-fg: var(--blue-dark); border-color: #fff; }

.btn--sm { padding: 11px 18px; font-size: 13.5px; }
.btn--block { width: 100%; }

/* Text link with animated underline */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--blue), var(--blue));
  background-repeat: no-repeat;
  background-size: 0% 1.5px;
  background-position: left bottom;
  transition: background-size .5s var(--ease), gap .35s var(--ease);
}

.tlink:hover { background-size: 100% 1.5px; gap: 13px; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */

.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  letter-spacing: .01em;
}

.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
  padding-block: 6px;
}

.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--blue-bright); }

.topbar__promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.topbar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(242,101,34,.65);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(242,101,34,.6); }
  70%  { box-shadow: 0 0 0 9px rgba(242,101,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,101,34,0); }
}

.topbar__meta { display: inline-flex; gap: 22px; align-items: center; }

@media (max-width: 860px) {
  .topbar__meta { display: none; }
  .topbar__in { justify-content: center; }
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease),
              background-color .4s var(--ease);
}

.site-head.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(10,26,47,.35);
  background: rgba(255,255,255,.94);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 82px;
  transition: height .4s var(--ease);
}

.site-head.is-stuck .nav { height: 68px; }

/* ---- Logo ------------------------------------------------------------ */

.logo { display: inline-flex; align-items: center; gap: 12px; }

.logo__mark {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 3px;
  background: var(--blue);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  transition: transform .5s var(--ease);
}

.logo:hover .logo__mark { transform: rotate(-6deg) scale(1.04); }
.logo__mark svg { width: 22px; height: 22px; }

.logo__type { display: flex; flex-direction: column; line-height: 1; }

.logo__name {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}

.logo__sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}

/* ---- Nav links ------------------------------------------------------- */

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto 0 12px;
  padding: 0;
  list-style: none;
}

.nav__link {
  position: relative;
  display: block;
  padding: 9px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius);
  transition: color .3s var(--ease), background-color .3s var(--ease);
}

.nav__link:hover { color: var(--blue); background: var(--blue-tint); }
.nav__link[aria-current="page"] { color: var(--blue); }

.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

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

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--ink);
  letter-spacing: -.01em;
}

.nav__phone svg { color: var(--blue); }
.nav__phone:hover { color: var(--blue); }

/* ---- Dropdown -------------------------------------------------------- */

.has-sub { position: relative; }

.sub {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 330px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease),
              visibility .3s;
}

.has-sub:hover .sub,
.has-sub:focus-within .sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub::before {
  content: "";
  position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}

.sub a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}

.sub a:hover { background: var(--blue-tint); color: var(--blue); }

.sub__n {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: .08em;
  flex: none;
}

.sub a:hover .sub__n { color: var(--blue); }

/* ---- Burger ---------------------------------------------------------- */

.burger {
  display: none;
  width: 46px; height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.burger span {
  position: absolute;
  left: 13px;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}

.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__links, .nav__phone { display: none; }
  .burger { display: block; }
  .nav { justify-content: space-between; }
}

@media (max-width: 560px) {
  .nav__actions .btn { display: none; }
}

/* ---- Mobile drawer --------------------------------------------------- */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--paper);
  padding: 24px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .55s var(--ease), visibility .55s;
}

.drawer.is-open { transform: translateY(0); visibility: visible; }

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.drawer__close {
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}

.drawer__list { list-style: none; margin: 0 0 28px; padding: 0; }

.drawer__list > li { border-bottom: 1px solid var(--line); }

.drawer__list a {
  display: block;
  padding: 16px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}

.drawer__list a:hover { color: var(--blue); }

.drawer__sub { list-style: none; margin: 0 0 14px; padding: 0 0 0 2px; }

.drawer__sub a {
  padding: 9px 0;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.drawer__foot { display: grid; gap: 12px; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding-block: clamp(52px, 7vw, 104px) clamp(60px, 8vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 0%, var(--blue-tint) 0%, transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__title { font-size: clamp(42px, 6.6vw, 92px); margin-bottom: 26px; }
.hero__lede { margin-bottom: 34px; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero__trust-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.brandchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}

.brandchip::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--blue);
  transform: rotate(45deg);
}

/* ---- Hero media ------------------------------------------------------ */

.hero__media { position: relative; }

.hero__badge {
  position: absolute;
  top: -18px; right: -12px;
  z-index: 3;
  width: 118px; height: 118px;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.05;
  box-shadow: 0 18px 40px -14px rgba(242,101,34,.6);
  transform: rotate(-9deg);
  animation: bob 5s var(--ease-io) infinite;
}

.hero__badge b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
.hero__badge span { display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }

@keyframes bob {
  0%, 100% { transform: rotate(-9deg) translateY(0); }
  50%      { transform: rotate(-9deg) translateY(-9px); }
}

.hero__stack { display: grid; gap: 16px; }

.hero__stack-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 560px) {
  .hero__badge { width: 92px; height: 92px; top: -12px; right: 0; }
  .hero__badge b { font-size: 24px; }
}

/* ==========================================================================
   Image placeholders
   (swap .ph elements for real <img> when photography lands)
   ========================================================================== */

.ph {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 45%, var(--blue-bright) 100%);
  isolation: isolate;
  min-height: 180px;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(120% 100% at 20% 0%, #000 10%, transparent 85%);
  -webkit-mask-image: radial-gradient(120% 100% at 20% 0%, #000 10%, transparent 85%);
}

.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 14px; bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 12px;
  background: rgba(10,26,47,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
}

.ph--soft {
  background:
    linear-gradient(135deg, var(--blue-tint-2) 0%, var(--blue-tint) 100%);
}
.ph--soft::before {
  background-image:
    linear-gradient(rgba(14,116,221,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,116,221,.14) 1px, transparent 1px);
}
.ph--soft::after {
  background: rgba(255,255,255,.85);
  border-color: var(--line-strong);
  color: var(--blue-dark);
}

.ph--ink {
  background: linear-gradient(135deg, #071527 0%, var(--ink) 55%, #143257 100%);
}

.ph--hero    { aspect-ratio: 4 / 3.05; }
.ph--tall    { aspect-ratio: 3 / 4; }
.ph--wide    { aspect-ratio: 16 / 9; }
.ph--sq      { aspect-ratio: 1 / 1; }
.ph--band    { aspect-ratio: 21 / 9; }
.ph--card    { aspect-ratio: 16 / 10; min-height: 0; }

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stat {
  background: var(--paper);
  padding: clamp(26px, 3.4vw, 44px) clamp(18px, 2.2vw, 32px);
}

.section--soft .stat { background: var(--paper-soft); }

.stat__n {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 800;
  letter-spacing: -.045em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}

.stat__n i { font-style: normal; color: var(--blue); }

.stat__l {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: .01em;
  max-width: 22ch;
}

@media (max-width: 800px) {
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  --speed: 42s;
  position: relative;
  overflow: hidden;
  padding-block: 22px;
  background: var(--ink);
  color: rgba(255,255,255,.55);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: slide var(--speed) linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__group {
  display: flex;
  align-items: center;
  gap: 46px;
  padding-right: 46px;
  flex: none;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.marquee__item::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-bright);
  opacity: .8;
}

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Service cards
   ========================================================================== */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 2.6vw, 34px);
  background: var(--paper);
  min-height: 268px;
  isolation: isolate;
  transition: color .45s var(--ease);
}

.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .55s var(--ease);
  z-index: -1;
}

.svc:hover::before { transform: scaleY(1); }
.svc:hover, .svc:hover .svc__t, .svc:hover .svc__n { color: #fff; }
.svc:hover .svc__d { color: rgba(255,255,255,.82); }
.svc:hover .svc__go { color: #fff; border-color: rgba(255,255,255,.4); }

.svc__n {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--blue);
  transition: color .45s var(--ease);
}

.svc__ico {
  width: 34px; height: 34px;
  color: var(--blue);
  transition: color .45s var(--ease), transform .5s var(--ease);
}

.svc:hover .svc__ico { color: #fff; transform: translateY(-3px); }

.svc__t {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--ink);
  transition: color .45s var(--ease);
}

.svc__d {
  font-size: 14.8px;
  line-height: 1.6;
  color: var(--ink-soft);
  transition: color .45s var(--ease);
  margin-bottom: auto;
}

.svc__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--blue);
  transition: color .45s var(--ease), border-color .45s var(--ease),
              transform .45s var(--ease);
}

.svc:hover .svc__go { transform: translateX(4px); }

/* ==========================================================================
   Feature / split blocks
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.split--media-first .split__media { order: -1; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--media-first .split__media { order: 0; }
}

.checks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 13px; }

.checks li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  color: var(--ink-soft);
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--blue-tint);
}

.checks li::after {
  content: "";
  position: absolute;
  left: 7px; top: 9px;
  width: 7px; height: 4px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.checks li b { color: var(--ink); font-weight: 700; }

/* ==========================================================================
   Why-us cards
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
}

@media (max-width: 940px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .why-grid { grid-template-columns: 1fr; } }

.why {
  position: relative;
  padding: clamp(26px, 2.6vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease),
              border-color .5s var(--ease);
}

.why:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-tint-2);
}

.why__ico {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-tint);
  color: var(--blue);
  margin-bottom: 22px;
  transition: background-color .45s var(--ease), color .45s var(--ease);
}

.why:hover .why__ico { background: var(--blue); color: #fff; }

.why h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -.025em; }
.why p { font-size: 15.2px; line-height: 1.6; }

/* ==========================================================================
   Process
   ========================================================================== */

.steps { position: relative; display: grid; gap: 0; }

.step {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
  padding-block: clamp(26px, 3vw, 40px);
  border-top: 1px solid var(--line);
  transition: background-color .45s var(--ease);
}

.step:last-child { border-bottom: 1px solid var(--line); }
.step:hover { background: var(--paper-soft); }
.section--soft .step:hover { background: #fff; }

.step__n {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--line-strong);
  transition: color .45s var(--ease);
}

.step:hover .step__n { color: var(--blue); }

.step__t { font-size: clamp(20px, 2vw, 26px); letter-spacing: -.03em; }
.step__d { font-size: 15.6px; line-height: 1.62; }

@media (max-width: 820px) {
  .step { grid-template-columns: 56px minmax(0, 1fr); }
  .step__d { grid-column: 2; }
}

/* ==========================================================================
   Work gallery — drag to explore
   ========================================================================== */

.rail-wrap { position: relative; }

.rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rail::-webkit-scrollbar { display: none; }
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail.is-dragging * { pointer-events: none; user-select: none; }

.work {
  flex: 0 0 clamp(260px, 30vw, 400px);
  scroll-snap-align: start;
}

.work__img { margin-bottom: 16px; transition: transform .6s var(--ease); }
.work:hover .work__img { transform: translateY(-5px); }

.work__t { font-size: 18px; font-weight: 800; letter-spacing: -.025em; color: var(--ink); margin-bottom: 4px; }
.work__m { font-size: 13.5px; color: var(--ink-faint); font-weight: 600; }

.rail-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.rail-bar {
  position: relative;
  height: 2px;
  background: var(--line);
  margin-top: 26px;
  border-radius: 2px;
  overflow: hidden;
}

.rail-bar__fill {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 22%;
  background: var(--blue);
  border-radius: 2px;
}

/* Static grid version (Our Work page) */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .work-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
}

@media (max-width: 940px) { .quotes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .quotes { grid-template-columns: 1fr; } }

.quote {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.6vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stars { display: flex; gap: 3px; color: var(--blue); margin-bottom: 18px; }
.stars svg { width: 15px; height: 15px; }

.quote p {
  font-size: 16.4px;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: -.011em;
  margin-bottom: 22px;
}

.quote footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13.6px;
  font-weight: 700;
  color: var(--ink);
}

.quote footer span { display: block; font-weight: 500; color: var(--ink-faint); margin-top: 2px; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { border-top: 1px solid var(--line); }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--ink);
  transition: color .3s var(--ease);
}

.faq__q:hover { color: var(--blue); }

.faq__sign {
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background-color .4s var(--ease), border-color .4s var(--ease),
              transform .4s var(--ease);
}

.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 1.8px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease), background-color .4s var(--ease);
}

.faq__sign::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__q[aria-expanded="true"] .faq__sign {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(180deg);
}

.faq__q[aria-expanded="true"] .faq__sign::before,
.faq__q[aria-expanded="true"] .faq__sign::after { background: #fff; }
.faq__q[aria-expanded="true"] .faq__sign::after { transform: translate(-50%, -50%) rotate(0); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease);
}

.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }

.faq__a > div { overflow: hidden; }

.faq__a p {
  max-width: 72ch;
  padding-bottom: 26px;
  font-size: 16px;
  line-height: 1.65;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 120% at 88% 15%, rgba(59,147,240,.42) 0%, transparent 58%),
    radial-gradient(70% 100% at 5% 90%, rgba(14,116,221,.32) 0%, transparent 60%);
  z-index: -1;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  mask-image: radial-gradient(90% 90% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(90% 90% at 50% 50%, #000, transparent 75%);
}

.cta h2 { color: #fff; margin-bottom: 20px; }
.cta .lede { color: rgba(255,255,255,.74); }
.cta .eyebrow { color: var(--blue-bright); }
.cta .eyebrow::before { background: var(--blue-bright); }

.cta .mark {
  color: var(--blue-bright);
  background-image: linear-gradient(rgba(59,147,240,.3), rgba(59,147,240,.3));
}

.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 900px) { .cta__grid { grid-template-columns: 1fr; } }

.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.cta__card {
  padding: clamp(26px, 3vw, 40px);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta__card dl { margin: 0; display: grid; gap: 20px; }
.cta__card dt {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 5px;
}
.cta__card dd { margin: 0; font-size: 19px; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.cta__card dd small { display: block; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: 0; margin-top: 3px; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */

.phero {
  position: relative;
  padding-block: clamp(48px, 6vw, 88px) clamp(40px, 5vw, 70px);
  background:
    radial-gradient(110% 130% at 92% 0%, var(--blue-tint) 0%, transparent 62%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-faint);
  margin-bottom: 26px;
}

.crumbs a:hover { color: var(--blue); }
.crumbs span { opacity: .5; }

.phero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}

@media (max-width: 900px) { .phero__grid { grid-template-columns: 1fr; align-items: start; } }

/* ==========================================================================
   Forms
   ========================================================================== */

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 8px; }

.field label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.field textarea { min-height: 138px; resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,116,221,.14);
}

.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }

.form__note { font-size: 13.5px; color: var(--ink-faint); }

.form-card {
  padding: clamp(26px, 3vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Contact details list
   ========================================================================== */

.cdetails { display: grid; gap: 2px; }

.cdetail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.cdetail:first-child { border-top: 1px solid var(--line); }

.cdetail__ico {
  flex: none;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-tint);
  color: var(--blue);
}

.cdetail__k {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}

.cdetail__v { font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.cdetail__v:hover { color: var(--blue); }
.cdetail small { display: block; font-size: 14px; font-weight: 500; color: var(--ink-faint); margin-top: 3px; letter-spacing: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-foot {
  background: var(--ink);
  color: rgba(255,255,255,.62);
  font-size: 14.6px;
  padding-block: clamp(56px, 6vw, 88px) 0;
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 4vw, 60px);
}

@media (max-width: 1000px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .foot__grid { grid-template-columns: 1fr; } }

.site-foot .logo__name { color: #fff; }
.site-foot .logo__sub  { color: rgba(255,255,255,.45); }

.foot__blurb { margin: 22px 0 26px; max-width: 40ch; line-height: 1.62; }

.foot__h {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.foot__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot__list a { transition: color .3s var(--ease), padding-left .3s var(--ease); }
.foot__list a:hover { color: #fff; padding-left: 5px; }

.foot__contact { display: grid; gap: 16px; }
.foot__contact b { display: block; color: #fff; font-size: 18px; letter-spacing: -.02em; }
.foot__contact b:hover { color: var(--blue-bright); }

.socials { display: flex; gap: 10px; margin-top: 6px; }

.socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  color: rgba(255,255,255,.72);
  transition: background-color .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}

.socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.foot__areas {
  padding-block: 30px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.foot__areas p {
  font-size: 13.4px;
  line-height: 1.9;
  color: rgba(255,255,255,.44);
  margin: 0;
}

.foot__areas a { color: rgba(255,255,255,.56); }
.foot__areas a:hover { color: #fff; }

.foot__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13.4px;
  color: rgba(255,255,255,.42);
}

.foot__bar nav { display: flex; flex-wrap: wrap; gap: 22px; }
.foot__bar a:hover { color: #fff; }

/* ==========================================================================
   Mobile sticky action bar
   ========================================================================== */

.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  box-shadow: 0 -10px 30px -16px rgba(11, 30, 51, .35);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 10px;
  background: #fff;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.mobile-bar a svg { color: var(--blue); }
.mobile-bar a.is-primary { background: var(--blue); color: #fff; }
.mobile-bar a.is-primary svg { color: #fff; }

@media (max-width: 720px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 58px; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-in { opacity: 1; transform: none; }

/* Scroll progress bar */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  z-index: 200;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.stack-sm > * + * { margin-top: 14px; }
.mt-l { margin-top: clamp(28px, 3vw, 44px); }
.mt-m { margin-top: 24px; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: var(--blue-tint);
  color: var(--blue-dark);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .01em;
}

.tag--signal { background: rgba(242,101,34,.12); color: var(--signal-dark); }

.taglist { display: flex; flex-wrap: wrap; gap: 8px; }
