/* ============================================================
   NAK DIGITECH — Digital Marketing Agency
   Shared stylesheet — LIGHT THEME
   Brand palette sampled from the logo:
     navy #14294A · teal #17A79A · orange #F2543D
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand */
  --brand-navy:   #14294A;
  --brand-teal:   #17A79A;
  --brand-orange: #F2543D;

  /* Surfaces */
  --bg:            #FFFFFF;
  --bg-2:          #F4F8FA;   /* alternating sections */
  --bg-3:          #EDF3F7;   /* inputs, wells        */
  --bg-tint:       #EAF6F4;   /* soft teal wash       */
  --surface:       #FFFFFF;
  --surface-hover: #FFFFFF;
  --dark:          #14294A;   /* navy anchor blocks   */

  --line:        rgba(20, 41, 74, 0.11);
  --line-strong: rgba(20, 41, 74, 0.22);

  /* Text */
  --text:       #14294A;
  --text-muted: #4E6B85;
  --text-dim:   #566F88;

  /* Accents (darkened for contrast on white) */
  --neon-1: #0F8F84;   /* teal            */
  --neon-2: #12A396;   /* bright teal     */
  --neon-3: #FF7A52;   /* light orange    */
  --neon-4: #E8462C;   /* brand orange    */

  --grad:      linear-gradient(120deg, #0E8478, #0A5F6E);
  --grad-warm: linear-gradient(120deg, #D33C20, #C0361B);
  --grad-lime: linear-gradient(120deg, #C93A1E, #E15029);

  --shadow-sm: 0 2px 8px rgba(20, 41, 74, .06);
  --shadow-md: 0 8px 26px rgba(20, 41, 74, .09);
  --shadow-lg: 0 18px 48px rgba(20, 41, 74, .13);
  --glow-1:    0 8px 26px rgba(15, 143, 132, .28);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 36px;

  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: rgba(18, 163, 150, .2); color: var(--text); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--neon-2), var(--neon-1));
  border-radius: 10px;
}

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 116px 0; position: relative; }
.section--tight { padding: 76px 0; }

.grid { display: grid; gap: 28px; }
/* Grid items default to min-width:auto, which lets long content push a column
   wider than the viewport. Clamping it prevents horizontal overflow. */
.grid > *,
.contact-grid > *,
.footer-grid > *,
.footer-grid--alt > *,
.price-grid > *,
.tile-grid > * { min-width: 0; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

.h-xxl { font-size: clamp(2.7rem, 6.6vw, 5.2rem); }
.h-xl  { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.h-lg  { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.h-md  { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }

.lead {
  font-size: clamp(1.03rem, 1.35vw, 1.16rem);
  color: var(--text-muted);
  max-width: 62ch;
}

.muted { color: var(--text-muted); }
.dim   { color: var(--text-dim); }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text--lime {
  background: var(--grad-lime);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #0B7A70;
  padding: 8px 16px;
  border: 1px solid rgba(18, 163, 150, .28);
  border-radius: 100px;
  background: var(--bg-tint);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon-4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .35; transform: scale(.7); }
}

.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.text-center { margin-inline: auto; }
.section-head p { margin-top: 18px; }
.section-head.text-center p { margin-inline: auto; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  /* Explicit list, not `all` — transitioning background-image alongside a
     transform makes Chrome drop gradient fills mid-hover. */
  transition: transform .3s var(--ease),
              box-shadow .3s var(--ease),
              border-color .3s var(--ease),
              color .3s var(--ease),
              background-color .3s var(--ease);
  position: relative;
  white-space: nowrap;
}

/* background-color sits UNDER the gradient as a guaranteed fallback — if a
   browser drops the gradient layer (compositing quirks on transformed
   elements) the button still renders its brand colour instead of white. */
.btn-primary {
  background-color: #0A5F6E;
  background-image: linear-gradient(120deg, #0E8478, #0A5F6E);
  color: #fff;
  box-shadow: 0 6px 20px rgba(15, 143, 132, .28);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #084F5D;
  background-image: linear-gradient(120deg, #0A6E64, #084F5D);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 143, 132, .38);
}

.btn-ghost {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  border-color: var(--neon-1);
  color: #0B7A70;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-lime {
  background-color: #C0361B;
  background-image: linear-gradient(120deg, #D33C20, #C0361B);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 70, 44, .26);
}
.btn-lime:hover,
.btn-lime:focus-visible {
  background-color: #A82E15;
  background-image: linear-gradient(120deg, #C0361B, #A82E15);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 70, 44, .36);
}

.btn-sm { padding: 11px 22px; font-size: .86rem; }
.btn-block { width: 100%; }

.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  color: #0B7A70;
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 14px; }

/* ---------- 6. Background FX ---------- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .16;
  pointer-events: none;
  z-index: 0;
}
.orb--1 { width: 520px; height: 520px; background: var(--brand-teal);   top: -140px; left: -160px; }
.orb--2 { width: 440px; height: 440px; background: #3AB7FF;             bottom: -180px; right: -130px; opacity: .12; }
.orb--3 { width: 340px; height: 340px; background: var(--brand-orange); top: 40%; right: 18%; opacity: .10; }

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 41, 74, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 41, 74, .05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 25%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.noise { display: none; }

.section > .container { position: relative; z-index: 2; }

/* ---------- 7. Header / nav ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .4s var(--ease);
}
.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(20, 41, 74, .06);
}
/* While the mobile menu is open the header must stay a solid bar so the
   scrolling menu content does not run underneath the logo. */
body.menu-open .header {
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  box-shadow: none;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: inline-flex; align-items: center; flex-shrink: 0; transition: transform .35s var(--ease); }
.logo:hover { transform: translateY(-2px); }
.logo img {
  height: 42px;
  width: auto;
  display: block;
  transition: height .4s var(--ease);
}
.header.scrolled .logo img { height: 36px; }
.footer .logo img { height: 46px; }

.brand-tagline {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #0B7A70;
  margin-top: 14px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 9px 16px;
  border-radius: 100px;
  transition: all .3s var(--ease);
}
.nav-links a:hover { color: var(--text); background: var(--bg-2); }
.nav-links a.active { color: #0B7A70; background: var(--bg-tint); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ----- Mega menu (desktop) ----- */
.nav-item { position: relative; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-trigger svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.nav-item:hover .nav-trigger svg { transform: rotate(180deg); }
.nav-item:hover .nav-trigger { color: var(--text); background: var(--bg-2); }

.mega {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(1080px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease);
  z-index: 1200;
}
.mega::before {           /* invisible bridge so hover survives the gap */
  content: '';
  position: absolute;
  top: -18px; left: 0; right: 0;
  height: 18px;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-col h6 {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 12px;
  margin-bottom: 8px;
}
.mega-col a {
  display: block;
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: .89rem;
  font-weight: 600;
  line-height: 1.3;
  transition: all .25s var(--ease);
}
.mega-col a span {
  display: block;
  font-size: .765rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 2px;
}
.mega-col a:hover { background: var(--bg-tint); color: #0B7A70; }
.mega-col a:hover span { color: var(--text-muted); }
.mega-col a.active { background: var(--bg-tint); color: #0B7A70; }

.mega-promo {
  /* The glow is a second background layer rather than a clipped pseudo-element.
     overflow:hidden here made the transformed button lose its gradient on hover. */
  background:
    radial-gradient(circle at 88% 6%, rgba(110, 231, 216, .18), transparent 46%),
    linear-gradient(140deg, #14294A, #0E3B4A);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* was space-between — that stretched the gap */
  align-items: flex-start;
  gap: 16px;
}
.mega-promo h6 {
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6EE7D8;
  margin-bottom: 8px;
}
.mega-promo p {
  color: rgba(255, 255, 255, .9);
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.mega-promo .btn,
.mega-promo .btn:hover,
.mega-promo .btn:focus-visible {
  padding: 11px 20px;
  font-size: .82rem;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background-color: #C0361B;
  white-space: nowrap;
}
.mega-promo .btn:hover { background-color: #A82E15; }

/* ----- Mobile menu with submenu ----- */
.mm-inner {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  padding: 84px 0 56px;
}

/* Top-level rows */
.mm-inner > a,
.mm-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 16px 2px;
  margin: 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color .25s var(--ease);
}
.mm-inner > a:hover,
.mm-inner > a.active,
.mm-toggle:hover { color: #0B7A70; }

.mm-toggle span {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--text-muted);
  transition: all .3s var(--ease);
}
.mm-toggle.open { color: #0B7A70; border-bottom-color: transparent; }
.mm-toggle.open span {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  transform: rotate(45deg);
}

/* Sub-lists */
.mm-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.mm-toggle.open + .mm-sub { border-bottom-color: var(--line); }
.mm-sub a {
  display: block;
  width: 100%;
  padding: 12px 0 12px 18px;
  margin: 0;
  border: none;
  border-left: 2px solid var(--line);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-muted);
  transition: all .25s var(--ease);
}
.mm-sub a:first-child { padding-top: 6px; }
.mm-sub a:last-child  { padding-bottom: 18px; }
.mm-sub a:hover,
.mm-sub a.active { color: #0B7A70; border-left-color: var(--neon-1); }

.mm-cta { margin-top: 30px; }
.mm-cta .btn { width: 100%; }

.burger {
  display: none;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  place-items: center;
  box-shadow: 0 2px 10px rgba(20, 41, 74, .07);
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}
.burger:hover  { border-color: rgba(18, 163, 150, .45); box-shadow: 0 4px 14px rgba(20, 41, 74, .10); }
.burger:active { transform: scale(.94); }
.burger.open   { background: var(--grad); border-color: transparent; box-shadow: 0 6px 18px rgba(15, 143, 132, .32); }

/* Bars are absolutely positioned so the X animation stays perfectly centred */
.burger span {
  position: absolute;
  left: 50%;
  width: 17px; height: 1.5px;
  margin-left: -8.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .32s var(--ease), opacity .2s var(--ease), background .3s var(--ease);
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }

.burger.open span { background: #fff; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  padding: 0 24px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { transform: translateY(0); }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 170px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 62%);
}
.hero-inner { position: relative; z-index: 3; max-width: 900px; }
.hero h1 { margin-bottom: 26px; }
.hero .lead { margin-bottom: 38px; font-size: 1.14rem; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 76px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 3;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat .lbl {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 10px;
}

.page-hero {
  position: relative;
  padding: 190px 0 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 85%);
}
.page-hero .container { position: relative; z-index: 3; }
.breadcrumb {
  display: flex; align-items: center; gap: 9px;
  font-size: .85rem; color: var(--text-dim);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: #0B7A70; }

/* ---------- 9. Marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll-x 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 60px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color .3s;
}
.marquee-item:hover { color: #0B7A70; }
.marquee-item::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--neon-4);
}

/* ---------- 10. Cards ---------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  transition: all .4s var(--ease);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, 0%), rgba(18, 163, 150, .07), transparent 55%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.card:hover {
  border-color: rgba(18, 163, 150, .35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }

.card > * { position: relative; z-index: 2; }

.card-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: var(--grad);
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(15, 143, 132, .26);
}
.card-icon svg { width: 25px; height: 25px; stroke: #fff; }
.card-icon--cyan { background: linear-gradient(120deg, #0E8478, #14688F); box-shadow: 0 8px 20px rgba(23, 167, 154, .26); }
.card-icon--lime { background: var(--grad-warm); box-shadow: 0 8px 20px rgba(242, 84, 61, .26); }
.card-icon--lime svg { stroke: #fff; }
.card-icon--pink { background: linear-gradient(120deg, #C93A1E, #14294A); box-shadow: 0 8px 20px rgba(232, 70, 44, .24); }

.card h3 { margin-bottom: 12px; font-size: 1.24rem; }
.card p  { color: var(--text-muted); font-size: .95rem; }

.card-num {
  position: absolute;
  top: 24px; right: 30px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(20, 41, 74, .06);
  line-height: 1;
}

.card-list { margin-top: 22px; display: grid; gap: 10px; }
.card-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text-muted);
}
.card-list li::before {
  content: '';
  width: 11px; height: 11px; flex-shrink: 0;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--grad);
}

.card--wide { grid-column: span 2; }

/* ---------- 11. Stats band ---------- */
.stats-band {
  background: var(--bg-tint);
  border-block: 1px solid var(--line);
  padding: 72px 0;
}
.stat { text-align: center; padding: 12px; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-lime);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .lbl {
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ---------- 12. Process ---------- */
.process-line { position: relative; }
.process-line::before {
  content: '';
  position: absolute;
  left: 27px; top: 20px; bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--neon-1), rgba(15, 143, 132, .15));
}
.process-step { display: flex; gap: 30px; padding: 24px 0; position: relative; }
.process-dot {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line-strong);
  font-family: var(--font-display);
  font-weight: 700;
  color: #0B7A70;
  z-index: 2;
  transition: all .4s var(--ease);
  box-shadow: var(--shadow-sm);
}
.process-step:hover .process-dot {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--glow-1);
}
.process-step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.process-step p  { color: var(--text-muted); font-size: .95rem; max-width: 60ch; }

/* ---------- 13. Testimonials ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  background: var(--grad-lime);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.testimonial p { color: var(--text); font-size: 1rem; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  background: var(--grad);
  flex-shrink: 0;
}
.testimonial-author .name { font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.testimonial-author .role { font-size: .82rem; color: var(--text-dim); }

.swiper-slide { height: auto; }

/* Fallback: if the Swiper script fails to load, Swiper never adds
   .swiper-initialized — degrade to a plain grid instead of clipping
   everything except the first card. */
.testimonial-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  transform: none !important;
}
.testimonial-swiper:not(.swiper-initialized) { overflow: visible; }
.testimonial-swiper:not(.swiper-initialized) .swiper-pagination { display: none; }

.swiper-pagination { position: static !important; margin-top: 38px; }
.swiper-pagination-bullet {
  background: var(--text-dim);
  opacity: .35;
  width: 8px; height: 8px;
  transition: all .3s;
}
.swiper-pagination-bullet-active {
  background: var(--neon-1);
  opacity: 1;
  width: 26px;
  border-radius: 4px;
}

/* ---------- 14. Work cards ---------- */
.work-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: all .4s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 163, 150, .35);
  box-shadow: var(--shadow-lg);
}
.work-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}
.work-thumb .gfx {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: rgba(20, 41, 74, .22);
  letter-spacing: -.04em;
  position: relative; z-index: 2;
}
.work-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.work-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag {
  font-size: .71rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--text-muted);
  background: var(--bg-2);
}
.work-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.work-body p { color: var(--text-muted); font-size: .93rem; flex: 1; }
.work-metrics {
  display: flex; gap: 28px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line);
}
.work-metrics .m .v {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 700;
  background: var(--grad-lime);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.work-metrics .m .k { font-size: .72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .09em; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .87rem;
  cursor: pointer;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.filter-btn:hover { color: var(--text); border-color: var(--line-strong); }
.filter-btn.active { background: var(--grad); color: #fff; border-color: transparent; }

.work-item.hide { display: none; }

/* ---------- 15. Team ---------- */
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .4s var(--ease);
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(18,163,150,.35); }
.team-photo {
  aspect-ratio: 1;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--bg-tint), var(--bg-3));
  border-bottom: 1px solid var(--line);
}
.team-photo .initials {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team-info { padding: 22px; text-align: center; }
.team-info h4 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; }
.team-info span { font-size: .83rem; color: #0B7A70; font-weight: 500; }

/* ---------- 16. Accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--text);
  transition: color .3s;
}
.acc-head:hover { color: #0B7A70; }
.acc-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: all .35s var(--ease);
  font-size: 1.05rem;
  line-height: 1;
}
.acc-item.open .acc-icon { background: var(--grad); border-color: transparent; color: #fff; transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-body p { padding-bottom: 24px; color: var(--text-muted); max-width: 78ch; }

/* ---------- 17. Forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-card { padding: 44px; }
.map-placeholder {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, var(--bg-3), var(--bg-2));
  aspect-ratio: 21 / 7;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}

.form-grid { display: grid; gap: 20px; }
.field label {
  display: block;
  font-size: .78rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 17px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: .95rem;
  color: var(--text);
  transition: all .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--neon-1);
  box-shadow: 0 0 0 3px rgba(18, 163, 150, .14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field.error input, .field.error textarea { border-color: var(--neon-4); background: #FFF6F4; }
.err-msg { display: none; color: #C8341C; font-size: .8rem; margin-top: 7px; }
.field.error .err-msg { display: block; }

.form-note { font-size: .83rem; color: var(--text-dim); margin-top: 6px; }

.form-success {
  display: none;
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: var(--bg-tint);
  border: 1px solid rgba(18, 163, 150, .3);
  color: #0B6E64;
  font-size: .94rem;
  margin-bottom: 24px;
}
.form-success.show { display: block; }

/* ---------- 18. CTA band (navy anchor) ---------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: 78px 54px;
  background: linear-gradient(135deg, #14294A 0%, #0E3B4A 100%);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band > * { position: relative; z-index: 3; }
/* Orbs must stay out of the flow — otherwise they add ~440px of dead space */
.cta-band > .orb,
.cta-banner > .orb,
.footer > .orb,
.section > .orb { position: absolute; }

/* ----- Final CTA banner (site-wide) ----- */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, #041a33 0%, #0c3c45 48%, #062a3c 100%);
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 18%, rgba(38, 222, 211, .12), transparent 32%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #d7f9f1;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0;
}
.cta-banner .eyebrow::before { background: #6EE7D8; box-shadow: none; }
.cta-banner h2 {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(1.85rem, 3vw, 3.1rem);
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}
.cta-banner p {
  margin: 0 auto;
  max-width: 640px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.02rem;
  line-height: 1.75;
}
.cta-banner .cta-actions {
  display: inline-flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-banner .cta-actions .btn { min-width: 200px; }
.cta-banner .cta-actions .btn-ghost {
  border: 1px solid rgba(255, 255, 255, .26);
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.cta-banner .cta-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: #6EE7D8;
  color: #fff;
}

/* ----- Home hero visual ----- */
.hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
}
.hero-visual .visual-card {
  width: clamp(220px, 28vw, 420px);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbffff, rgba(245, 250, 249, .95));
  border: 1px solid rgba(10, 25, 40, .06);
  box-shadow: 0 12px 30px rgba(10, 20, 30, .08);
  padding: 14px;
}
.hero-visual .visual-card img { width: 100%; height: auto; display: block; }
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band p  { color: #B9CBD9; margin: 0 auto 32px; }
.cta-band .eyebrow {
  color: #6EE7D8;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}
.cta-band .gradient-text {
  background: linear-gradient(120deg, #6EE7D8, #FF9B7A);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-band .btn-ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  box-shadow: none;
}
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, .16); color: #fff; border-color: #6EE7D8; }
.cta-band .orb { opacity: .30 !important; }

/* ---------- 19. Footer ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 76px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer .container { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid--alt {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: .93rem; margin: 14px 0 24px; max-width: 34ch; }
.footer-links a { overflow-wrap: anywhere; }
.footer h5 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.footer-links { display: grid; gap: 11px; }
.footer-links a { font-size: .92rem; color: var(--text-muted); transition: all .3s; }
.footer-links a:hover { color: #0B7A70; padding-left: 5px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text-muted);
  transition: all .35s var(--ease);
}
.socials a:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }

/* ------------------------------------------------------------- MODAL ---
   Lifted out of index.html's inline <style> so any page can open a modal.
   index.html keeps its own inline copy, which simply wins the cascade and
   renders identically — nothing there needed touching. */
.modal {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1200;
  pointer-events: none; opacity: 0;
  /* visibility:hidden is what actually takes the modal's buttons and inputs
     out of the keyboard tab order. opacity:0 alone leaves them focusable, so
     a keyboard or screen-reader user could tab into a dialog they cannot see
     — which is what "ARIA hidden element must not contain focusable elements"
     is reporting. The 0s delay lets the fade-out finish before it vanishes. */
  visibility: hidden;
  transition: opacity .18s ease, visibility 0s linear .18s;
}
.modal[aria-hidden="false"] {
  pointer-events: auto; opacity: 1;
  visibility: visible;
  transition: opacity .18s ease, visibility 0s linear 0s;
}
.modal-overlay { position: absolute; inset: 0; background: rgba(7,10,14,.55); }
.modal-content {
  position: relative;
  background: #fff;
  color: var(--text);
  padding: 28px;
  border-radius: 16px;
  width: clamp(320px, 92%, 640px);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px -20px rgba(20,41,74,.45);
  border: 1px solid var(--line);
}
.modal-content h3 { margin: 0 0 12px; font-size: 1.25rem; font-family: var(--font-display); }
.modal-close {
  position: absolute; right: 12px; top: 12px;
  background: none; border: 0;
  font-size: 20px; line-height: 1; cursor: pointer;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  padding: 6px; border-radius: 8px;
}
.modal-close:hover { background: rgba(20,41,74,.06); }
.modal-form label { display: block; font-size: .95rem; margin-bottom: 10px; color: var(--text-muted); }
.modal-form input,
.modal-form textarea,
.modal-form select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin-top: 6px;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
}
.modal-form input::placeholder,
.modal-form textarea::placeholder { color: var(--text-dim); }
.phone-row { display: flex; gap: 8px; align-items: center; }
.phone-row select { min-width: 130px; margin-top: 6px; }
.phone-row input { margin-top: 6px; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 12px; }
.modal-thanks { text-align: center; padding: 18px; }
@media (max-width: 520px) {
  .modal-content { padding: 18px; border-radius: 12px; width: 92%; }
  .phone-row { flex-wrap: wrap; }
  .phone-row select, .phone-row input { min-width: 0; flex: 1 1 100%; }
  .modal-actions { flex-direction: column-reverse; }
  .modal-actions .btn { width: 100%; }
}

/* ---------------------------------------------------- FOOTER REACH BAND ---
   States which markets we serve WITHOUT implying an office in any of them.
   The wording carries that distinction, so the styling must not undo it:
   no pin icons, no "location" language, no flags arranged like an office
   list. Chips read as markets, and the note below says plainly where the
   team actually is. */
.footer-reach {
  position: relative;
  margin: 60px 0 44px;
  padding: 34px 36px;
  border-radius: 22px;
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(18,163,150,.10), transparent 60%),
    radial-gradient(120% 160% at 100% 100%, rgba(242,84,61,.07), transparent 60%),
    #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(20,41,74,.04), 0 18px 46px -30px rgba(20,41,74,.30);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
}
/* Hairline accent so the band reads as deliberate rather than as another card */
.footer-reach::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, #0E8478, #12A396 38%, #F2543D 100%);
  opacity: .85;
}
.footer-reach h4 {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.1vw, 1.5rem);
  line-height: 1.28;
  letter-spacing: -.01em;
  margin: 12px 0 0;
  color: var(--text);
}
.footer-reach h4 .gradient-text { display: inline; }
.reach-note {
  margin: 14px 0 0;
  font-size: .87rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 46ch;
}
.reach-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.reach-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.reach-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(18,163,150,.42);
  box-shadow: 0 10px 24px -16px rgba(20,41,74,.45);
}
/* A dot, not a map pin — the difference is the whole point of this band */
.reach-chip i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad);
  flex: none;
}
.reach-chip:nth-child(even) i { background: var(--grad-warm); }

@media (max-width: 900px) {
  .footer-reach {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
    margin: 44px 0 36px;
  }
  .reach-chips { justify-content: flex-start; }
  .reach-note { max-width: none; }
}
@media (max-width: 480px) {
  .reach-chip { padding: 9px 13px; font-size: .84rem; }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--text-dim);
}
.footer-bottom a:hover { color: #0B7A70; }

/* ---------- 20. Misc ---------- */
.scroll-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad);
  border: none;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .4s var(--ease);
  box-shadow: 0 8px 24px rgba(15, 143, 132, .38);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top svg { width: 18px; height: 18px; stroke: #fff; }

/* ----- Service page components ----- */
.check-list { display: grid; gap: 14px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: .97rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: '';
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--grad) center/13px no-repeat;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"),
    linear-gradient(120deg, #0E8478, #0A5F6E);
  background-size: 13px, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.related-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  height: 100%;
}
.related-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 163, 150, .35);
  box-shadow: var(--shadow-lg);
}
.related-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.related-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 14px; }

/* ----- Pricing cards ----- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(18,163,150,.4); }
.price-card.featured {
  border-color: var(--neon-1);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--bg-tint), #fff 40%);
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-warm);
  color: #fff;
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card h3 {
  font-size: 1.12rem;
  margin-bottom: 4px;
}
.price-card .tier-note {
  font-size: .78rem;
  color: var(--text-dim);
  margin-bottom: 18px;
  min-height: 2.2em;
}
.price-tag {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  letter-spacing: -.03em;
}
.price-tag sup { font-size: .95rem; font-weight: 600; top: -.7em; }
.price-tag .per { font-size: .82rem; font-weight: 500; color: var(--text-dim); letter-spacing: 0; }
.price-card .kw {
  margin: 14px 0 20px;
  padding: 8px 12px;
  background: var(--bg-2);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.price-card ul { display: grid; gap: 9px; text-align: left; margin-bottom: 22px; flex: 1; }
.price-card ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .84rem; color: var(--text-muted);
}
.price-card ul li::before {
  content: '✓';
  color: #0B7A70;
  font-weight: 700;
  flex-shrink: 0;
  font-size: .82rem;
  line-height: 1.5;
}
.price-card .btn { width: 100%; }

/* ----- Comparison table ----- */
.cmp-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
.cmp {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: .88rem;
}
.cmp thead th {
  position: sticky;
  top: 0;
  background: var(--brand-navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .86rem;
  padding: 16px 14px;
  text-align: center;
  z-index: 2;
}
.cmp thead th:first-child { text-align: left; min-width: 260px; }
.cmp thead th span {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: #6EE7D8;
  margin-top: 3px;
}
.cmp tbody td {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--text-muted);
}
.cmp tbody td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}
.cmp tbody tr:nth-child(even) { background: var(--bg-2); }
.cmp tbody tr:hover { background: var(--bg-tint); }
.cmp .yes { color: #0B7A70; font-weight: 700; }
.cmp .no  { color: var(--text-dim); }
.cmp .grp td {
  background: var(--bg-3) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
}
.cmp tfoot td { padding: 18px 14px; text-align: center; border-top: 1px solid var(--line); }

.table-hint {
  font-size: .82rem;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ----- Package / industry link tiles ----- */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease);
}
.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(18,163,150,.4);
  box-shadow: var(--shadow-md);
  color: #0B7A70;
}
.tile .ico {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--bg-tint);
  font-size: 1.1rem;
}
.tile span.sub {
  display: block;
  font-size: .76rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 1px;
}

/* ----- Landing page extras ----- */
.x-list { display: grid; gap: 12px; }
.x-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .96rem;
  color: var(--text-muted);
}
.x-list li::before {
  content: '×';
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-3);
  color: var(--text-dim);
  font-weight: 700;
  font-size: .9rem;
  line-height: 1;
}

.tree {
  background: var(--brand-navy);
  color: #CFE3EE;
  border-radius: var(--r-lg);
  padding: 26px 28px;
  overflow-x: auto;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .86rem;
  line-height: 1.9;
  white-space: pre;
  margin: 0;
}
.tree b { color: #6EE7D8; font-weight: 600; }
.tree i { color: #FF9B7A; font-style: normal; }

.offer-box {
  background: var(--bg-tint);
  border: 1px solid rgba(18, 163, 150, .3);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
}
.offer-box .price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  letter-spacing: -.03em;
}
.offer-box .price sup { font-size: .5em; top: -.55em; }
.offer-box .price small {
  display: block;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
  margin-top: 10px;
}

.note {
  border-left: 3px solid var(--neon-4);
  background: var(--bg-2);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 20px;
  font-size: .92rem;
  color: var(--text-muted);
  margin-top: 24px;
}
.note strong { color: var(--text); }

.src-list { display: grid; gap: 10px; font-size: .88rem; }
.src-list a { color: #0B7A70; text-decoration: underline; text-underline-offset: 3px; }
.src-list a:hover { color: var(--text); }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--bg-tint);
  color: #0B7A70;
  border: 1px solid rgba(18, 163, 150, .22);
}

.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

/* ---------- 21. Responsive ---------- */
/* Three mega menus need more room, so the mobile nav starts earlier */
@media (max-width: 1180px) {
  .nav-links { display: none !important; }
  .mega { display: none !important; }
  .burger { display: grid; }
  .nav-cta .btn { display: none; }
}

@media (max-width: 1024px) {
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid,
  .footer-grid--alt { grid-template-columns: 1fr 1fr !important; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 88px 0; }
}

@media (max-width: 1150px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .tile-grid  { grid-template-columns: repeat(3, 1fr); }
}

/* Hero visual drops below the copy once there is no room beside it */
@media (max-width: 980px) {
  .hero-visual {
    position: static;
    transform: none;
    right: auto;
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 30px auto 0;
  }
  .hero-visual .visual-card { width: 100%; border-radius: 16px; padding: 10px; }
}

@media (max-width: 768px) {
  .price-grid { grid-template-columns: 1fr; }
  .tile-grid  { grid-template-columns: 1fr; }
  .cmp-wrap { border-radius: var(--r-md); }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .hero { min-height: auto; padding: 122px 0 64px; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
    margin-top: 44px;
    padding-top: 30px;
  }
  .hero-stat .lbl { font-size: .7rem; letter-spacing: .09em; }
  .page-hero { padding: 140px 0 60px; }
  .cta-band { padding: 52px 24px; border-radius: var(--r-lg); }
  .contact-grid { gap: 32px; }
  .form-card { padding: 24px 20px; }
  .map-placeholder { aspect-ratio: 4 / 3; padding: 24px; }
  .field input, .field textarea, .field select { font-size: 16px; }
  .cta-banner { padding: 44px 22px; border-radius: 22px; gap: 16px; }
  .cta-banner p { font-size: .96rem; line-height: 1.65; }
  .cta-banner .cta-actions { flex-direction: column; width: 100%; gap: 12px; }
  .cta-banner .cta-actions .btn { width: 100%; min-width: 0; }
  .card { padding: 26px; }
  .testimonial { padding: 28px; }
  .process-step { gap: 18px; }
  .process-line::before { left: 22px; }
  .process-dot { width: 46px; height: 46px; font-size: .9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .mm-inner > a, .mm-toggle { font-size: 1.08rem; padding: 15px 2px; }
  .mm-sub a { font-size: .92rem; padding: 11px 0 11px 16px; }
  .work-metrics { gap: 20px; }
  /* The wordmark is a wide 4:1 lockup, so it needs real height to stay legible */
  .logo img { height: 46px; }
  .header.scrolled .logo img { height: 40px; }
  .footer .logo img { height: 52px; }

  /* Footer stacks to a single column on phones */
  .footer { padding: 56px 0 26px; }
  .footer-grid,
  .footer-grid--alt {
    grid-template-columns: 1fr !important;
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-brand p { max-width: none; }
  .footer h5 { margin-bottom: 14px; }
  .footer-links { gap: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Small phones — pull the logo back slightly so it never crowds the burger */
@media (max-width: 400px) {
  .logo img { height: 40px; }
  .header.scrolled .logo img { height: 36px; }
  .footer .logo img { height: 46px; }
  .burger { width: 40px; height: 40px; }
  .container { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
