@import url("fonts.css");

/* ============================================================
   MOBERS GLOBAL LIMITED
   Light-first, photography-led. White is the default ground;
   navy appears as ink, one feature band and the footer. Soft
   rounded geometry throughout.
   ============================================================ */

:root {
  /* Brand, from the logo. Navy is lifted slightly from the mark's
     #092650 so it stays legible as body-adjacent ink. */
  --navy: #0a2a5e;
  --navy-deep: #071e45;
  --red: #c81822;
  --red-deep: #a5121b;

  /* Grounds: white leads, with one cool tint for alternating bands. */
  --bg: #ffffff;
  --surface: #ffffff;
  --tint: #f4f7fc;
  --tint-2: #eaf0f9;

  --ink: #0b1a33;
  --ink-2: #47576f;
  --muted: #6b7c94;

  --line: rgba(10, 42, 94, 0.1);
  --line-2: rgba(10, 42, 94, 0.18);

  --red-ink: #be121c;
  --red-soft: rgba(200, 24, 34, 0.08);
  --navy-soft: rgba(10, 42, 94, 0.06);

  /* Ground behind the cut-out team portraits. */
  --avatar-bg: #e9eff8;

  /* Navy-on-white figures and icons; both lift on the dark ground. */
  --figure: #0a2a5e;
  --ico: #0a2a5e;

  /* Always-dark surfaces (feature band, footer). Fixed in both themes. */
  --band: #08224c;
  --band-2: #0d2f66;
  --band-ink: #ffffff;
  --band-muted: #a9bedd;
  --band-line: rgba(168, 195, 235, 0.22);

  --sh-sm: 0 1px 2px rgba(11, 26, 51, 0.04), 0 4px 12px -4px rgba(11, 26, 51, 0.08);
  --sh-md: 0 2px 6px rgba(11, 26, 51, 0.05), 0 18px 40px -14px rgba(11, 26, 51, 0.16);
  --sh-lg: 0 30px 70px -22px rgba(11, 26, 51, 0.3);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Type scale -- deliberately restrained. */
  --t-xs: 0.75rem;
  --t-sm: 0.875rem;
  --t-base: 1rem;
  --t-lede: clamp(1rem, 0.3vw + 0.95rem, 1.125rem);
  --t-h3: clamp(1.05rem, 0.4vw + 0.95rem, 1.18rem);
  --t-h2: clamp(1.6rem, 2.4vw + 0.9rem, 2.35rem);
  --t-h1: clamp(2rem, 3.6vw + 1.1rem, 3.35rem);

  /* Cards keep a small curve -- softened corners, not pills. */
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-pill: 999px;

  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --shell: 76rem;
  --sect-y: clamp(3.75rem, 7vw, 6.5rem);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #070f1e;
    --surface: #0d1a2f;
    --tint: #0a1526;
    --tint-2: #12213a;

    --ink: #eaf0f9;
    --ink-2: #b3c2d8;
    --muted: #8497b2;

    --line: rgba(150, 180, 225, 0.14);
    --line-2: rgba(150, 180, 225, 0.26);

    --red-ink: #ff6672;
    --red-soft: rgba(200, 24, 34, 0.18);
    --navy-soft: rgba(120, 160, 220, 0.1);
    --avatar-bg: #1c2f4f;

    --figure: #eaf0f9;
    --ico: #9dc0f5;

    --sh-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 12px -4px rgba(0, 0, 0, 0.6);
    --sh-md: 0 2px 6px rgba(0, 0, 0, 0.45), 0 18px 40px -14px rgba(0, 0, 0, 0.7);
    --sh-lg: 0 30px 70px -22px rgba(0, 0, 0, 0.85);
  }
}

:root[data-theme="dark"] {
  --bg: #070f1e;
  --surface: #0d1a2f;
  --tint: #0a1526;
  --tint-2: #12213a;

  --ink: #eaf0f9;
  --ink-2: #b3c2d8;
  --muted: #8497b2;

  --line: rgba(150, 180, 225, 0.14);
  --line-2: rgba(150, 180, 225, 0.26);

  --red-ink: #ff6672;
  --red-soft: rgba(200, 24, 34, 0.18);
  --navy-soft: rgba(120, 160, 220, 0.1);
  --avatar-bg: #1c2f4f;

  --figure: #eaf0f9;
  --ico: #9dc0f5;

  --sh-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 12px -4px rgba(0, 0, 0, 0.6);
  --sh-md: 0 2px 6px rgba(0, 0, 0, 0.45), 0 18px 40px -14px rgba(0, 0, 0, 0.7);
  --sh-lg: 0 30px 70px -22px rgba(0, 0, 0, 0.85);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--t-base);
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  font-size: var(--t-h1);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h2 {
  font-size: var(--t-h2);
  letter-spacing: -0.03em;
}

h3 {
  font-size: var(--t-h3);
}

p {
  margin: 0;
  max-width: 64ch;
}

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-size: var(--t-sm);
  font-weight: 600;
}
.skip:focus {
  left: 0;
}

.shell {
  width: min(100% - var(--gutter) * 2, var(--shell));
  margin-inline: auto;
}

/* ---------- Small shared parts ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: start;
  padding: 0.4rem 0.85rem 0.4rem 0.6rem;
  border-radius: var(--r-pill);
  background: var(--red-soft);
  color: var(--red-ink);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: max-content;
  max-width: 100%;
}

.eyebrow::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

.lede {
  color: var(--ink-2);
  font-size: var(--t-lede);
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, box-shadow 0.2s ease;
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  flex: none;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(200, 24, 34, 0.65);
}
.btn--primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(200, 24, 34, 0.7);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.btn--soft {
  background: var(--surface);
  border-color: var(--line-2);
  color: var(--ink);
  box-shadow: var(--sh-sm);
}
.btn--soft:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--wa {
  background: #1faa55;
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(31, 170, 85, 0.6);
}
.btn--wa:hover {
  background: #178f46;
  transform: translateY(-2px);
}

.btn--ghost-light {
  border-color: var(--band-line);
  color: #fff;
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* The repeating card: rounded, soft, quietly bordered. */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  box-shadow: var(--sh-sm);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--line-2);
}

/* ---------- Header ---------- */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  padding-top: 0;
  transition: padding-top 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hdr.is-stuck {
  padding-top: 0.7rem;
}

.hdr__in {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  height: 4.75rem;
  padding-inline: 0;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: transparent;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease, padding 0.35s ease;
}

.hdr.is-stuck .hdr__in {
  height: 3.9rem;
  padding-inline: 0.75rem 0.75rem;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  border-color: var(--line);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
  min-width: 0;
}

/* The logo is navy, so dark surfaces get a recoloured file rather than a CSS
   invert, which would flatten the red out of the mark. Both are in the markup
   and swapped by display so it works with no JS and inside a bundled build. */
.logo-light {
  display: none;
}

:root[data-theme="dark"] .logo-dark {
  display: none;
}
:root[data-theme="dark"] .logo-light {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .logo-dark {
    display: none;
  }
  :root:not([data-theme="light"]) .logo-light {
    display: block;
  }
}

.brand img {
  height: clamp(2rem, 7vw, 2.35rem);
  width: auto;
  flex: none;
  transition: height 0.35s ease;
}

.hdr.is-stuck .brand img {
  height: 2rem;
}

/* The company name shows at every width -- on a phone the mark alone does not
   tell a first-time visitor who the site belongs to. It scales down rather
   than disappearing, and never wraps. */
.brand__txt {
  font-size: clamp(0.82rem, 2.8vw, 0.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--figure);
  white-space: nowrap;
}

.brand__txt span {
  display: block;
  font-size: clamp(0.52rem, 1.7vw, 0.6rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-top: 0.15rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  position: relative;
  padding: 0.5rem 0.8rem;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav a:hover {
  color: var(--ink);
  background: var(--navy-soft);
}

.nav a.is-active {
  color: var(--red-ink);
  background: var(--red-soft);
}

@media (min-width: 64rem) {
  .nav {
    display: flex;
  }
}

.hdr__cta {
  display: none;
}

@media (min-width: 78rem) {
  .hdr__cta {
    display: inline-flex;
    padding: 0.65rem 1.15rem;
  }
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}

.icon-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.theme-btn .i-sun {
  display: none;
}
:root[data-theme="dark"] .theme-btn .i-sun {
  display: block;
}
:root[data-theme="dark"] .theme-btn .i-moon {
  display: none;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-btn .i-sun {
    display: block;
  }
  :root:not([data-theme="light"]) .theme-btn .i-moon {
    display: none;
  }
}

.burger {
  display: grid;
}
@media (min-width: 64rem) {
  .burger {
    display: none;
  }
}

/* Mobile drawer: a right-hand sheet over a dimmed scrim. */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 95;
  visibility: hidden;
  transition: visibility 0.4s;
}

.drawer.is-open {
  visibility: visible;
}

.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 32, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.drawer.is-open .drawer__scrim {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(23rem, 90vw);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--surface);
  box-shadow: -20px 0 60px -20px rgba(6, 16, 32, 0.45);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.drawer.is-open .drawer__panel {
  transform: none;
}

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.15rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.drawer__top img {
  height: 2.2rem;
  width: auto;
}

.drawer__nav {
  display: grid;
  align-content: start;
  gap: 0.15rem;
  padding: 0.9rem;
  overflow-y: auto;
}

.drawer__nav a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.7rem;
  border-radius: var(--r-md);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  /* Items settle in one after another once the sheet is open. */
  opacity: 0;
  transform: translateX(12px);
  transition: background-color 0.2s ease, opacity 0.4s ease, transform 0.4s ease;
}

.drawer.is-open .drawer__nav a {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i, 0) * 40ms + 120ms);
}

.drawer__nav a:hover {
  background: var(--tint);
}

.drawer__ico {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--r-sm);
  background: var(--navy-soft);
  color: var(--ico);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.drawer__ico svg {
  width: 1.15rem;
  height: 1.15rem;
}

.drawer__nav a:hover .drawer__ico {
  background: var(--red);
  color: #fff;
}

.drawer__chev {
  width: 1rem;
  height: 1rem;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.drawer__nav a:hover .drawer__chev {
  transform: translateX(3px);
}

.drawer__foot {
  display: grid;
  gap: 0.5rem;
  padding: 0.9rem 1.15rem 1.4rem;
  border-top: 1px solid var(--line);
  background: var(--tint);
}

.drawer__foot h4 {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.drawer__foot .btn {
  width: 100%;
}

.drawer__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .drawer__nav a {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(6.5rem, 12vh, 9rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

/* Soft brand glow, not a gradient slab. */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero::before {
  width: 44rem;
  height: 34rem;
  top: -14rem;
  right: -12rem;
  background: rgba(10, 42, 94, 0.13);
}

.hero::after {
  width: 26rem;
  height: 22rem;
  bottom: -10rem;
  left: -10rem;
  background: rgba(200, 24, 34, 0.09);
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 60rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }
}

.hero__copy {
  display: grid;
  gap: 1.25rem;
  justify-items: start;
}

.hero__copy h1 em {
  font-style: normal;
  color: var(--red-ink);
}

.hero__sub {
  color: var(--ink-2);
  font-size: var(--t-lede);
  max-width: 40ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.25rem;
}

/* Credential row under the buttons. */
.creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 0.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  width: 100%;
}

.creds div {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--t-sm);
  color: var(--muted);
}

.creds svg {
  width: 1rem;
  height: 1rem;
  color: var(--red-ink);
  flex: none;
}

.creds b {
  color: var(--ink);
  font-weight: 600;
}

/* Hero image panel */
.hero__media {
  position: relative;
}

.hero__frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 16 / 11;
  background: var(--tint-2);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating figure card overlapping the photo. */
.float-card {
  position: absolute;
  left: -0.5rem;
  bottom: -1.25rem;
  display: grid;
  gap: 0.1rem;
  padding: 0.9rem 1.15rem;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.float-card b {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--figure);
}

.float-card span {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 60rem) {
  .float-card {
    left: -1.75rem;
  }
}

/* ---------- Sections ---------- */
.sect {
  padding-block: var(--sect-y);
  scroll-margin-top: 5rem;
}

.sect--tint {
  background: var(--tint);
}

.sect__head {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 46rem;
}

.sect__head--center {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.sect__head p {
  color: var(--ink-2);
}

.sect__head--center p {
  margin-inline: auto;
}

/* Full-width brand banner, shown whole rather than cropped to a frame. */
.about__banner {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
}

.about__banner img {
  width: 100%;
  height: auto;
}

/* ---------- Products ---------- */
.prod {
  display: grid;
  gap: 1rem;
}

@media (min-width: 36rem) {
  .prod {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 62rem) {
  .prod {
    grid-template-columns: repeat(3, 1fr);
  }
}

.prod__card {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  position: relative;
  overflow: hidden;
}

.prod__card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod__card:hover::after {
  transform: scaleX(1);
}

.prod__code {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--figure);
  line-height: 1.1;
}

.prod__full {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.prod__use {
  font-size: var(--t-sm);
  color: var(--muted);
}

/* ---------- Split (image + copy) ---------- */
.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 58rem) {
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split--flip .split__media {
    order: 2;
  }
}

.split__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 4 / 3;
  background: var(--tint-2);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__copy {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.split__copy p {
  color: var(--ink-2);
}

/* ---------- Services ---------- */
.svc {
  display: grid;
  gap: 1rem;
}

@media (min-width: 40rem) {
  .svc {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 68rem) {
  .svc {
    grid-template-columns: repeat(3, 1fr);
  }
}

.svc__card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.svc__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-sm);
  background: var(--navy-soft);
  color: var(--ico);
  transition: background-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.svc__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.svc__card:hover .svc__icon {
  background: var(--red);
  color: #fff;
  transform: scale(1.06);
}

.svc__card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Operations ---------- */
.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 44rem) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 70rem) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  position: relative;
}

.step__n {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: background-color 0.28s ease;
}

.step:hover .step__n {
  background: var(--red);
}

.step p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Feature band (the one dark section) ---------- */
.band {
  background: var(--band);
  color: var(--band-ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  gap: 0;
}

@media (min-width: 58rem) {
  .band {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

.band__copy {
  display: grid;
  gap: 1rem;
  justify-items: start;
  align-content: center;
  padding: clamp(1.75rem, 4vw, 3.25rem);
}

.band__copy h2 {
  color: #fff;
}

.band__copy p {
  color: var(--band-muted);
}

.band .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #ffb3b9;
}

.band__media {
  min-height: 15rem;
  background: var(--band-2);
}

.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band__list {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.band__list div {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--band-muted);
}

.band__list svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #6ee7a8;
  flex: none;
  margin-top: 0.15rem;
}

/* ---------- Vision / mission / values ---------- */
.vm {
  display: grid;
  gap: 1rem;
}

@media (min-width: 52rem) {
  .vm {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vm__card {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.vm__card p {
  color: var(--ink-2);
  font-size: 0.96rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.values div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.values div:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.values svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--red-ink);
  flex: none;
}

/* ---------- Partners ---------- */
/* Explicit stack gap rather than a margin on the lead card: the card's soft
   shadow spreads ~40px, which visually bridged a smaller sibling margin and
   made the two tiers look joined on narrow screens. */
.partners-stack {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3rem);
}

/* The principal partner gets its own wide card above the others, with a
   larger logo and room for context -- the rest sit in an even row below. */
.partner-lead {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border-color: var(--line-2);
  box-shadow: var(--sh-md);
}

.partner-lead:hover {
  transform: none;
}

@media (min-width: 48rem) {
  .partner-lead {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

.partner-lead__logo {
  display: grid;
  place-items: center;
  width: clamp(8.5rem, 16vw, 11rem);
  aspect-ratio: 1;
  padding: 1rem;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
}

.partner-lead__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-lead__body {
  display: grid;
  gap: 0.6rem;
  justify-items: start;
}

.partner-lead__name {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
}

.partner-lead__body p {
  color: var(--ink-2);
  font-size: 0.96rem;
}

.partner-lead__role {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--red-ink);
}

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
}

.partners__card {
  display: grid;
  gap: 0.3rem;
  text-align: center;
  justify-items: center;
  padding: 1.5rem 1.15rem;
}

/* Every logo sits in the same square footprint so the row reads evenly
   regardless of each mark's own proportions. Supplied artwork is drawn for a
   white ground, so the tile keeps one in both themes -- which is how a logo
   wall reads anyway. */
.partners__logo {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  max-width: 100%;
  margin-bottom: 0.6rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
}

/* Contain, so a logo can never spill past its tile whatever its proportions. */
.partners__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners__name {
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
}

.partners__role {
  font-size: var(--t-sm);
  color: var(--muted);
}

/* ---------- Team ---------- */
.team {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

/* Column layout so the contact row can be pushed to the bottom -- not every
   person has one, and cards stretch to the tallest in the row. */
.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
  padding: 1.4rem 1rem 1.5rem;
}

.person__pic {
  width: 5.5rem;
  height: 5.5rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--avatar-bg);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 0 0 4px var(--surface), 0 0 0 5px var(--line-2);
  transition: box-shadow 0.28s ease;
}

.person:hover .person__pic {
  box-shadow: 0 0 0 4px var(--surface), 0 0 0 5px var(--red);
}

.person__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.person__name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.person__role {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.4;
}

.person__links {
  display: flex;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.85rem;
}

.person__links a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.person__links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.person__links svg {
  width: 0.95rem;
  height: 0.95rem;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 62rem) {
  .contact {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }
}

.form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.1rem);
}

.form__head {
  display: grid;
  gap: 0.4rem;
}

.form__head p {
  font-size: 0.92rem;
  color: var(--muted);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink-2);
}

.field label i {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 6rem;
  line-height: 1.55;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--navy-soft);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) 55%, calc(100% - 0.8rem) 55%;
  background-size: 0.32rem 0.32rem, 0.32rem 0.32rem;
  background-repeat: no-repeat;
  padding-right: 2.3rem;
}

.form__row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 34rem) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form__actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

@media (min-width: 30rem) {
  .form__actions {
    grid-template-columns: 1fr 1fr;
  }
}

.form__err {
  font-size: 0.85rem;
  color: var(--red-ink);
  min-height: 1.2em;
}

.form__note {
  font-size: 0.82rem;
  color: var(--muted);
}

.form__note a {
  color: var(--red-ink);
  font-weight: 600;
}

/* Contact cards */
.reach {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.reach__row {
  display: grid;
  /* minmax(0,...) lets the text column shrink below the email's min-content
     width instead of overflowing the card. */
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.15rem;
}

.reach__ico {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-sm);
  background: var(--navy-soft);
  color: var(--ico);
  flex: none;
}

.reach__ico svg {
  width: 1.15rem;
  height: 1.15rem;
}

.reach__lbl {
  display: block;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.reach__val {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 0.15rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.reach__val small {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: 0;
}

/* ---------- Footer ---------- */
.ftr {
  background: var(--band);
  color: var(--band-ink);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.ftr__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 46rem) {
  .ftr__grid {
    grid-template-columns: 1.7fr 1fr 1fr;
  }
}
@media (min-width: 70rem) {
  .ftr__grid {
    grid-template-columns: 1.9fr 1fr 1fr 1.2fr;
  }
}

.ftr__brand {
  display: grid;
  gap: 1rem;
  align-content: start;
  justify-items: start;
}

.ftr__brand img {
  height: 3.1rem;
  width: auto;
}

.ftr__brand p {
  color: var(--band-muted);
  font-size: 0.92rem;
  max-width: 34ch;
}

.ftr__rc {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--band-line);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}

.ftr h4 {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb3b9;
  margin-bottom: 0.9rem;
}

.ftr ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ftr li {
  min-width: 0;
}

.ftr li a,
.ftr li span {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--band-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
  /* The email address is one unbreakable token wider than the narrowest
     footer column, so it must be allowed to break rather than overflow. */
  overflow-wrap: anywhere;
}

/* Icons sit on the text baseline-ish and keep wrapped lines indented past
   them, so a long address stays aligned under its own first line. */
.ftr li svg {
  width: 1rem;
  height: 1rem;
  flex: none;
  margin-top: 0.2rem;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.ftr li a:hover {
  color: #fff;
}

.ftr li a:hover svg {
  opacity: 1;
}

.ftr__bar {
  border-top: 1px solid var(--band-line);
  padding-block: 1.25rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--band-muted);
}

.ftr__bar a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid var(--band-line);
  transition: border-color 0.2s ease;
}

.ftr__bar a:hover {
  border-bottom-color: #fff;
}

/* Floating WhatsApp */
.fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 80;
  display: grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  background: #1faa55;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(31, 170, 85, 0.75);
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.fab.is-in {
  transform: none;
}

.fab:hover {
  background: #178f46;
}

.fab svg {
  width: 1.55rem;
  height: 1.55rem;
}

/* ---------- Motion ---------- */
.rise {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0ms);
}

.rise.is-in {
  opacity: 1;
  transform: none;
}

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

@media print {
  .hdr,
  .fab,
  .drawer {
    display: none !important;
  }
}
