/* ============================================================
   Terramare PHS — phs.terramareglobal.com
   Global stylesheet
   ------------------------------------------------------------
   Built on the Terramare PHS design system.
   Brand surface (marketing) typeset in Mulish; the embedded
   Nexus report panel uses Inter to match the live product.
   Pure CSS, no frameworks. All design tokens are custom props.
   ============================================================ */

/* ---------- Webfonts ---------- */
@font-face {
  font-family: 'Mulish';
  src: url('assets/fonts/Mulish-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('assets/fonts/Mulish-Italic-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}
/* Inter (Nexus product UI) — loaded from Google Fonts in each page <head> */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand */
  --teal: #31B4AB;
  --teal-400: #33C7BF;
  --teal-600: #2A9D95;
  --teal-700: #23867F;
  --navy: #0D1625;
  --navy-800: #122036;
  --navy-700: #16314D;
  --white: #FFFFFF;

  /* Marketing surfaces */
  --bone: #F2EEE4;          /* primary light section */
  --bone-deep: #E9E3D5;     /* nested tints on bone */
  --bone-line: #DAD3C2;

  /* Status (semantic — keep regardless of section) */
  --warning: #E8A838;
  --danger: #E2675F;
  --success: #31B4AB;

  /* Teal tints */
  --teal-04: rgba(49,180,171,0.04);
  --teal-08: rgba(49,180,171,0.08);
  --teal-12: rgba(49,180,171,0.12);
  --teal-20: rgba(49,180,171,0.20);
  --teal-30: rgba(49,180,171,0.30);

  /* Text on light (bone/white) */
  --ink: #0D1625;
  --ink-body: rgba(13,22,37,0.74);
  --ink-muted: rgba(13,22,37,0.54);
  --ink-faint: rgba(13,22,37,0.34);
  --line: rgba(13,22,37,0.12);
  --line-soft: rgba(13,22,37,0.08);

  /* Text on navy */
  --on-navy: #FFFFFF;
  --on-navy-body: rgba(255,255,255,0.74);
  --on-navy-muted: rgba(255,255,255,0.52);
  --on-navy-line: rgba(255,255,255,0.12);
  --on-navy-line-soft: rgba(255,255,255,0.07);

  /* Type */
  --font-brand: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radius */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 999px;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 74px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 0.18s;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
::selection { background: var(--teal-30); color: var(--navy); }

/* ============================================================
   TYPOGRAPHY PRIMITIVES
   ============================================================ */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1;
}
.display {
  font-weight: 300;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.h-section {
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.h-card {
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
}
.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  font-weight: 300;
  line-height: 1.55;
}
.muted-italic { font-style: italic; color: var(--ink-muted); font-weight: 300; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 130px); }
.section--tight { padding-block: clamp(56px, 7vw, 90px); }

/* Section themes */
.s-navy { background: var(--navy); color: var(--on-navy); }
.s-navy .eyebrow { color: var(--teal); }
.s-bone { background: var(--bone); color: var(--ink); }
.s-white { background: var(--white); color: var(--ink); }

.section-head { max-width: 760px; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head .h-section { margin-bottom: 20px; }
.section-head .lead { color: var(--ink-body); max-width: 640px; }
.s-navy .section-head .lead { color: var(--on-navy-body); }
.center { text-align: center; margin-inline: auto; }
.center .lead { margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease),
    color var(--fast) var(--ease), transform var(--fast) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-600); }
.btn-ghost-dark { background: transparent; color: var(--on-navy); border-color: var(--on-navy-line); }
.btn-ghost-dark:hover { border-color: var(--teal); color: var(--teal); }
.btn-ghost-light { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost-light:hover { border-color: var(--teal); color: var(--teal-700); }
.btn-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 15px; color: var(--teal-700);
  transition: gap var(--fast) var(--ease), color var(--fast) var(--ease);
}
.s-navy .btn-link { color: var(--teal); }
.btn-link svg { width: 17px; height: 17px; transition: transform var(--fast) var(--ease); }
.btn-link:hover { gap: 11px; }
.btn-link:hover svg { transform: translateX(3px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease),
    backdrop-filter var(--fast) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
/* default (over navy hero) */
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo .mark { width: 38px; height: 38px; }
.nav-logo .wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .wm-name { font-weight: 600; font-size: 19px; letter-spacing: 0.01em; color: var(--teal); }
.nav-logo .wm-desc { font-weight: 600; font-size: 8.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-navy-muted); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 9px 16px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 15px; color: var(--on-navy-body);
  transition: color var(--fast) var(--ease), background var(--fast) var(--ease);
}
.nav-link:hover { color: var(--on-navy); }
.nav-link.active { color: var(--teal); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cross {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--teal); padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--fast) var(--ease), opacity var(--fast) var(--ease);
}
.nav-cross svg { width: 13px; height: 13px; }
.nav-cross:hover { border-color: var(--teal-30); }
.nav-divider { width: 1px; height: 22px; background: var(--on-navy-line); }

/* scrolled / solid state — light */
.nav.scrolled {
  background: rgba(242,238,228,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav.scrolled .nav-logo .wm-name { color: var(--teal-700); }
.nav.scrolled .nav-logo .wm-desc { color: var(--ink-muted); }
.nav.scrolled .nav-link { color: var(--ink-body); }
.nav.scrolled .nav-link:hover { color: var(--ink); }
.nav.scrolled .nav-link.active { color: var(--teal-700); }
.nav.scrolled .nav-cross { color: var(--teal-700); }
.nav.scrolled .nav-divider { background: var(--line); }
/* light pages (non-navy hero) always use solid-light nav from load */
.nav.light-page:not(.scrolled) {
  background: rgba(242,238,228,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav.light-page .nav-logo .wm-name { color: var(--teal-700); }
.nav.light-page .nav-logo .wm-desc { color: var(--ink-muted); }
.nav.light-page .nav-link { color: var(--ink-body); }
.nav.light-page .nav-link.active { color: var(--teal-700); }
.nav.light-page .nav-cross { color: var(--teal-700); }
.nav.light-page .nav-divider { background: var(--line); }

.nav-toggle { display: none; background: none; border: 0; padding: 6px; color: currentColor; }
.nav-toggle svg { width: 26px; height: 26px; }
.nav.scrolled .nav-toggle, .nav.light-page .nav-toggle { color: var(--ink); }
.nav:not(.scrolled):not(.light-page) .nav-toggle { color: var(--on-navy); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: var(--navy); border-bottom: 1px solid var(--on-navy-line);
  padding: 18px var(--gutter) 30px;
  display: none; flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0;
  transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease);
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a { padding: 13px 6px; font-weight: 600; font-size: 18px; color: var(--on-navy-body); border-bottom: 1px solid var(--on-navy-line-soft); }
.mobile-menu a.active { color: var(--teal); }
.mobile-menu .mm-cross { color: var(--teal); display: flex; align-items: center; gap: 6px; }
.mobile-menu .mm-cross svg { width: 15px; height: 15px; }
.mobile-menu .btn { margin-top: 18px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy); color: var(--on-navy);
  padding-top: calc(var(--nav-h) + clamp(60px, 9vw, 120px));
  padding-bottom: clamp(72px, 10vw, 130px);
}
.hero--short { padding-bottom: clamp(56px, 7vw, 96px); padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 90px)); }
/* Home hero — generous, dominant headline with breathing room */
.hero:not(.hero--short) { padding-top: calc(var(--nav-h) + clamp(96px, 13vw, 188px)); padding-bottom: clamp(104px, 14vw, 188px); }
.hero:not(.hero--short) .eyebrow { margin-bottom: 42px; }
.hero:not(.hero--short) .display { margin-bottom: 36px; }
.hero:not(.hero--short) .hero-sub { margin-bottom: 34px; }
.hero:not(.hero--short) .hero-body { margin-bottom: 54px; }
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 820px; }
.hero .eyebrow { margin-bottom: 26px; }
.hero .display { margin-bottom: 22px; }
.hero-sub {
  font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500;
  color: var(--teal); letter-spacing: -0.01em; margin-bottom: 22px;
}
.hero-body { color: var(--on-navy-body); max-width: 600px; font-weight: 300; font-size: clamp(1.05rem, 1.5vw, 1.22rem); margin-bottom: 38px; }
.hero-cta { display: flex; align-items: center; gap: 14px 26px; flex-wrap: wrap; }

/* hero abstract background visual */
.hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-bg .glow {
  position: absolute; right: -10%; top: -35%; width: 72vw; height: 130%;
  background: radial-gradient(closest-side, rgba(49,180,171,0.09), rgba(49,180,171,0) 70%);
}
.hero-bg .grid-lines { position: absolute; inset: 0; opacity: 0.85; }

/* ============================================================
   GENERIC CARD GRID
   ============================================================ */
.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  transition: border-color var(--fast) var(--ease), transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.s-navy .card {
  background: rgba(255,255,255,0.025);
  border-color: var(--on-navy-line);
}
.card-hover:hover { border-color: var(--teal-30); transform: translateY(-3px); }
.s-navy .card-hover:hover { background: rgba(49,180,171,0.06); border-color: var(--teal-30); }

.card-ico {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-08); color: var(--teal-700);
  margin-bottom: 22px;
}
.s-navy .card-ico { background: var(--teal-12); color: var(--teal); }
.card-ico svg { width: 26px; height: 26px; stroke-width: 1.5; }
.card .h-card { margin-bottom: 12px; }
.card-num {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--teal); margin-bottom: 18px;
}
.card p { color: var(--ink-body); font-weight: 400; font-size: 16px; }
.s-navy .card p { color: var(--on-navy-body); }
.card .btn-link { margin-top: 22px; }

/* Icon presentation — outline lucide */
.ico { stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   CREDENTIAL CHIPS
   ============================================================ */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600;
  background: var(--teal-08); color: var(--teal-700);
  border: 1px solid var(--teal-12);
}
.s-navy .chip { background: var(--teal-12); color: var(--teal); border-color: var(--teal-20); }
.chip svg { width: 15px; height: 15px; stroke-width: 1.75; }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.quote-card {
  background: var(--teal-08);
  border: 1px solid var(--teal-20);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 52px);
}
.s-navy .quote-card { background: rgba(49,180,171,0.08); border-color: var(--teal-20); }
.quote-card .mark-tab {
  font-family: Georgia, serif; font-size: 72px; line-height: 0.6;
  color: var(--teal); height: 38px; display: block;
}
.quote-card blockquote {
  font-size: clamp(1.3rem, 2.1vw, 1.7rem); font-weight: 300;
  line-height: 1.4; letter-spacing: -0.01em; margin-bottom: 24px;
}
.quote-card cite {
  font-style: normal; font-weight: 600; font-size: 15px; color: var(--teal-700);
}
.s-navy .quote-card cite { color: var(--teal); }

/* ============================================================
   TWO-COLUMN (inspector / about)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--top { align-items: start; }
.col-stack > * + * { margin-top: 22px; }

/* Portrait placeholder — abstract, on-brand */
.portrait {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-xl);
  overflow: hidden; background: var(--navy-800);
  border: 1px solid var(--on-navy-line);
}
.portrait .ph-mark { position: absolute; inset: 0; margin: auto; width: 60%; opacity: 0.18; }
.portrait .ph-label {
  position: absolute; left: 20px; bottom: 18px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--on-navy-muted);
}
.portrait .ph-waves { position: absolute; inset: 0; opacity: 0.4; }

/* ============================================================
   AREA GRID (8 areas)
   ============================================================ */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.area {
  background: var(--bone); padding: 30px 26px;
  transition: background var(--fast) var(--ease);
}
.area:hover { background: var(--white); }
.area-ico { color: var(--teal-700); margin-bottom: 18px; }
.area-ico svg { width: 28px; height: 28px; stroke-width: 1.5; }
.area h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; letter-spacing: 0.01em; }
.area p { font-size: 14px; color: var(--ink-muted); line-height: 1.5; }

/* ============================================================
   NEXUS REPORT PANEL (embedded product UI — Inter)
   ============================================================ */
.report {
  font-family: var(--font-ui);
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 24px 60px rgba(13,22,37,0.18);
}
.report-top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #111;
}
.report-vessel { display: flex; align-items: center; gap: 13px; }
.report-vessel .rv-mark { width: 30px; height: 30px; opacity: 0.95; }
.report-vessel .rv-name { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.report-vessel .rv-sub { font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.report-tags { display: flex; align-items: center; gap: 10px; }
.tag {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-sm);
}
.tag-amber { background: rgba(232,168,56,0.14); color: var(--warning); border: 1px solid rgba(232,168,56,0.28); }
.tag-neutral { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.62); border: 1px solid rgba(255,255,255,0.1); }

.report-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(255,255,255,0.07); }
.rstat { padding: 22px; border-right: 1px solid rgba(255,255,255,0.07); }
.rstat:last-child { border-right: 0; }
.rstat .rs-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.01em; margin-bottom: 12px; }
.rstat .rs-val { font-size: 30px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.rstat .rs-val.teal { color: var(--teal); }
.rstat .rs-val.amber { color: var(--warning); }
.rstat .rs-val .rs-unit { font-size: 15px; color: rgba(255,255,255,0.4); margin-left: 3px; }

.report-body { display: grid; grid-template-columns: 1.55fr 1fr; }
.report-findings { padding: 20px 22px; border-right: 1px solid rgba(255,255,255,0.07); }
.rf-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.rf-head .rf-title { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.rf-head .rf-count { font-size: 12px; color: rgba(255,255,255,0.4); }
.finding {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.finding:first-of-type { border-top: 0; }
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 9px; border-radius: var(--r-pill); white-space: nowrap; height: fit-content;
}
.pill svg { width: 11px; height: 11px; stroke-width: 2; }
.pill-critical { background: rgba(226,103,95,0.15); color: var(--danger); }
.pill-advisory { background: rgba(232,168,56,0.15); color: var(--warning); }
.pill-pass { background: rgba(49,180,171,0.15); color: var(--teal); }
.finding-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 5px; }
.finding-loc { font-size: 12.5px; font-weight: 500; color: #fff; }
.finding-ref { font-size: 11px; color: var(--teal); font-family: var(--font-ui); background: rgba(49,180,171,0.1); padding: 2px 7px; border-radius: 4px; }
.finding-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

.report-side { padding: 20px 22px; }
.rside-title { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.cov-row { margin-bottom: 15px; }
.cov-row .cov-head { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 7px; }
.cov-row .cov-head .cov-name { color: rgba(255,255,255,0.75); font-weight: 500; }
.cov-row .cov-head .cov-pct { font-weight: 600; }
.cov-pct.teal { color: var(--teal); }
.cov-pct.amber { color: var(--warning); }
.cov-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.07); overflow: hidden; }
.cov-fill { height: 100%; border-radius: 3px; }
.cov-fill.teal { background: var(--teal); }
.cov-fill.amber { background: var(--warning); }
.fleet-chip {
  display: flex; align-items: center; gap: 10px; margin-top: 22px;
  padding: 14px 16px; border-radius: var(--r-md);
  background: rgba(49,180,171,0.07); border: 1px solid rgba(49,180,171,0.18);
}
.fleet-chip svg { width: 18px; height: 18px; color: var(--teal); stroke-width: 1.75; flex-shrink: 0; }
.fleet-chip .fc-t { font-size: 12.5px; font-weight: 600; color: #fff; }
.fleet-chip .fc-s { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.report-foot {
  padding: 13px 22px; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 11.5px; color: rgba(255,255,255,0.38); background: #0d0d0d;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { text-align: center; }
.cta-strip .h-section { margin-bottom: 14px; }
.cta-strip p { color: var(--on-navy-body); font-weight: 300; font-size: clamp(1.05rem, 1.5vw, 1.25rem); margin-bottom: 34px; }
.cta-strip .cta-row { display: flex; align-items: center; justify-content: center; gap: 14px 22px; flex-wrap: wrap; }

/* ============================================================
   CROSS-LINK CARD (to Project Solutions)
   ============================================================ */
.crosslink {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 28px 32px; border-radius: var(--r-lg);
  background: var(--teal-08); border: 1px solid var(--teal-20);
  transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease);
}
.s-navy .crosslink { background: rgba(49,180,171,0.08); }
.crosslink:hover { border-color: var(--teal); }
.crosslink .cl-t { font-size: 1.12rem; font-weight: 600; margin-bottom: 5px; }
.crosslink .cl-s { font-size: 14px; color: var(--ink-muted); }
.s-navy .crosslink .cl-s { color: var(--on-navy-muted); }
.crosslink .cl-go { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 15px; color: var(--teal-700); white-space: nowrap; }
.s-navy .crosslink .cl-go { color: var(--teal); }
.crosslink .cl-go svg { width: 16px; height: 16px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.form-field { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: 0.01em; }
.form-field label .opt { color: var(--ink-faint); font-weight: 400; }
.input, .textarea, .select {
  width: 100%; font-family: var(--font-brand); font-size: 16px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 13px 15px; transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-faint); }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-12);
}
.textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230D1625' stroke-opacity='0.5' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
/* Honeypot anti-spam field — pulled off-screen, never shown to real users */
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
/* Inline error shown when the contact request fails */
.form-error {
  margin-top: 18px; padding: 13px 16px; border-radius: var(--r-md);
  background: rgba(226,103,95,0.10); border: 1px solid rgba(226,103,95,0.32);
  color: #C0463E; font-size: 14px; font-weight: 600; line-height: 1.5;
}
.form-error a { color: inherit; text-decoration: underline; }
.form-success {
  display: none; flex-direction: column; align-items: center; text-align: center;
  padding: 48px 32px; background: var(--teal-08); border: 1px solid var(--teal-20); border-radius: var(--r-lg);
}
.form-success.show { display: flex; }
.form-success .fs-ico { width: 58px; height: 58px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.form-success .fs-ico svg { width: 30px; height: 30px; stroke-width: 2.4; }
.form-success h3 { font-size: 1.5rem; font-weight: 300; margin-bottom: 10px; }
.form-success p { color: var(--ink-body); }

.contact-detail { background: var(--navy); color: var(--on-navy); border-radius: var(--r-lg); padding: clamp(28px, 3vw, 40px); }
.contact-detail .cd-name { font-size: 1.25rem; font-weight: 300; }
.contact-detail .cd-role { font-size: 13.5px; color: var(--teal); font-weight: 600; letter-spacing: 0.04em; margin-top: 4px; margin-bottom: 26px; }
.cd-item { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-top: 1px solid var(--on-navy-line-soft); }
.cd-item svg { width: 19px; height: 19px; color: var(--teal); stroke-width: 1.6; flex-shrink: 0; }
.cd-item a, .cd-item span { font-size: 15px; color: var(--on-navy-body); transition: color var(--fast) var(--ease); }
.cd-item a:hover { color: var(--teal); }
.contact-detail .btn-whatsapp { width: 100%; justify-content: center; margin-top: 24px; }
.cd-qr { display: flex; align-items: center; gap: 18px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--on-navy-line-soft); }
.cd-qr img { width: 96px; height: 96px; border-radius: 10px; background: #fff; padding: 7px; flex-shrink: 0; }
.cd-qr .qr-cap { font-size: 13px; color: var(--on-navy-muted); line-height: 1.5; }
.cd-note { font-size: 13px; color: var(--on-navy-muted); margin-top: 20px; font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: var(--on-navy-body); padding-block: clamp(56px, 7vw, 80px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--on-navy-line-soft); }
.footer-brand .f-logo { height: 84px; width: auto; margin-bottom: 20px; }
.footer-brand .f-tag { font-size: 14.5px; color: var(--on-navy-muted); max-width: 320px; line-height: 1.6; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 15px; color: var(--on-navy-body); padding: 6px 0; transition: color var(--fast) var(--ease); }
.footer-col a:hover { color: var(--teal); }
.footer-col .f-cross { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); }
.footer-col .f-cross svg { width: 13px; height: 13px; }
.footer-contact a { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--teal); stroke-width: 1.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; }
.footer-copy { font-size: 13px; color: var(--on-navy-muted); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--on-navy-line); color: var(--on-navy-body);
  transition: border-color var(--fast) var(--ease), color var(--fast) var(--ease), background var(--fast) var(--ease);
}
.footer-social a:hover { border-color: var(--teal); color: var(--teal); background: rgba(49,180,171,0.08); }
.footer-social svg { width: 19px; height: 19px; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav-links, .nav-cross, .nav-divider { display: none; }
  .nav .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .report-body { grid-template-columns: 1fr; }
  .report-findings { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .report-stats { grid-template-columns: repeat(2, 1fr); }
  .rstat:nth-child(2) { border-right: 0; }
  .rstat:nth-child(1), .rstat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .area-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
