/* Viamation — shared styles
   Accent from Coral Icon Register: #E9715F
   Navy from logo dark master: #252F37
*/

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --coral: #e9715f;
  --coral-hover: #d45f4d;
  --coral-soft: #f3e4e0;
  --coral-tint: #f7f0ed;
  --navy: #12171d;
  --navy-deep: #0a0c0f;
  --navy-mid: #1a2028;
  --navy-card: #1c2229;
  --navy-logo: #252f37;
  --cream: #f6f2f1;
  --cream-warm: #f2eeeb;
  --white: #ffffff;
  --text: #1a1c1e;
  --text-muted: #5c636a;
  --text-soft: #8a9198;
  --border: rgba(255, 255, 255, 0.12);
  --border-light: rgba(26, 28, 30, 0.12);
  --font-serif: "Montserrat", sans-serif;
  --font-sans: "Montserrat", sans-serif;
  --container: 1180px;
  --header-h: 78px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-soft: 0 12px 40px rgba(10, 12, 15, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

/* Typography */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
}

.eyebrow.preserve-case {
  text-transform: none;
  letter-spacing: 0.1em;
}

.heading-xl {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.6vw, 3.75rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.18;
}

.heading-md {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.heading-sm {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.3;
}

.accent {
  color: var(--coral);
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 54ch;
}

.lead-light {
  color: rgba(255, 255, 255, 0.78);
}

.text-center {
  text-align: center;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head .lead {
  margin: 0.9rem 0 0;
}

.section-head.text-center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  white-space: nowrap;
}

.btn i.icon-inline {
  font-size: 14px;
  line-height: 1;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn-primary:hover {
  background: var(--coral-hover);
  border-color: var(--coral-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(233, 113, 95, 0.35);
}

.btn-outline-coral {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}

.btn-outline-coral:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: rgba(26, 28, 30, 0.28);
}

.btn-outline-dark:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.btn-ghost-coral {
  background: transparent;
  color: var(--white);
  border-color: var(--coral);
}

.btn-ghost-coral:hover {
  background: var(--coral);
}

.btn-arrow::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* Icons (Tabler webfont) */
.icon,
.icon-sm,
.icon-md,
.icon-lg,
.icon-xl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  color: var(--coral);
}

.icon {
  font-size: 42px;
}

.icon-sm {
  font-size: 22px;
}

.icon-md {
  font-size: 36px;
}

.icon-lg {
  font-size: 52px;
}

.icon-xl {
  font-size: 64px;
}

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(26, 28, 30, 0.15);
  display: grid;
  place-items: center;
  background: var(--white);
}

.icon-circle i {
  font-size: 34px;
  color: var(--coral);
  line-height: 1;
}

.icon-circle-dark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
}

.icon-circle-dark i {
  font-size: 34px;
  color: var(--white);
  line-height: 1;
}

.icon-circle-coral {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--coral);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.icon-circle-coral i {
  font-size: 44px;
  color: var(--white);
  line-height: 1;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled,
.site-header.theme-solid {
  background: rgba(10, 12, 15, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--white);
}

.nav a.is-active {
  color: var(--white);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-cta .btn {
  min-height: 40px;
  padding: 0.55rem 1.1rem;
  font-size: 0.84rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.nav-toggle i {
  font-size: 20px;
  color: var(--white);
  line-height: 1;
}

/* Hero shared */
.hero {
  position: relative;
  min-height: min(100vh, 820px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-cover {
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(8, 18, 36, 0.88) 0%,
    rgba(8, 18, 36, 0.72) 22%,
    rgba(8, 18, 36, 0.42) 48%,
    rgba(8, 18, 36, 0.12) 68%,
    transparent 82%
  );
}

@media (max-width: 640px) {
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 18, 36, 0.82) 0%,
      rgba(8, 18, 36, 0.62) 45%,
      rgba(8, 18, 36, 0.28) 75%,
      transparent 100%
    );
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-content .eyebrow {
  margin-bottom: 1.1rem;
  display: inline-block;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-content .heading-xl {
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s 0.08s var(--ease) both;
}

.hero-content .lead,
.hero-content p {
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s 0.16s var(--ease) both;
}

.hero-content .btn-row {
  animation: fadeUp 0.9s 0.24s var(--ease) both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 1.75rem;
  margin-top: 2.25rem;
  animation: fadeUp 0.9s 0.32s var(--ease) both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-trust-item i {
  font-size: 18px;
  color: var(--coral);
  line-height: 1;
}

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  animation: fadeIn 1.2s 0.2s var(--ease) both;
}

.hero-visual img {
  width: min(100%, 480px);
  margin-left: auto;
  filter: drop-shadow(0 20px 50px rgba(233, 113, 95, 0.18));
}

.hero-compact {
  min-height: 560px;
  padding-bottom: 5rem;
}

.hero-capabilities .hero-content,
.hero-platform .hero-content {
  max-width: 36rem;
}

.hero-workforce .hero-content {
  max-width: 40rem;
}

.hero-visual-empty {
  min-height: 280px;
  width: min(100%, 420px);
}

/* Platform principles (5 cards) */
.platform-principles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  margin-top: 2.75rem;
}

.platform-principles .principle-card {
  background: var(--white);
  text-align: left;
  padding: 1.65rem 1.35rem;
}

.platform-principles .principle-card .icon {
  margin: 0 0 1rem;
}

/* Platform security */
.platform-security {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.platform-security .heading-lg {
  max-width: 18ch;
}

.platform-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.platform-security-chip {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1.25rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.platform-security-chip span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
}

/* Capabilities page */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.cap-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.65rem 1.4rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.cap-card:hover {
  border-color: rgba(233, 113, 95, 0.4);
  transform: translateY(-3px);
}

.cap-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: grid;
  place-items: center;
}

.cap-card-icon i {
  font-size: 24px;
  color: var(--coral);
  line-height: 1;
}

.cap-card-body .heading-sm {
  margin-bottom: 0.45rem;
}

.cap-card-body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.cap-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cap-bullets li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.cap-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.together-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
  text-align: center;
}

.together-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.together-item .icon-circle {
  margin: 0;
}

.together-item span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  max-width: 14ch;
}

/* Platform CTA split */
.cta-band-split {
  text-align: left;
}

.cta-band-split .heading-lg {
  margin: 0;
  max-width: none;
}

.cta-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4.5rem 0;
}

.bg-cream {
  background: var(--cream);
}

.bg-cream-warm {
  background: var(--cream-warm);
}

.bg-navy {
  background: var(--navy);
  color: var(--white);
}

.bg-navy-deep {
  background: var(--navy-deep);
  color: var(--white);
}

.bg-white {
  background: var(--white);
}

/* Challenge / 3-col */
.split-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
}

.split-3 > * {
  padding: 0 2rem;
  text-align: center;
}

.split-3 > * + * {
  border-left: 1px solid var(--border-light);
}

.split-3 .icon {
  margin: 0 auto 1rem;
}

.split-3 .heading-md {
  margin-bottom: 0.65rem;
}

.split-3 p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Platform cards */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.75rem;
}

.platform-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.6rem 1.1rem 1.7rem;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 113, 95, 0.45);
  background: rgba(233, 113, 95, 0.06);
}

.platform-card .icon {
  margin: 0 auto 1rem;
}

.platform-card .heading-sm {
  margin-bottom: 0.7rem;
  color: var(--white);
}

.platform-card p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.platform-card-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease);
}

.platform-card-link:hover {
  color: var(--white);
}

/* How it works */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 0;
  border-top: 1.5px dashed rgba(233, 113, 95, 0.55);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step .icon-circle {
  margin: 0 auto 1.1rem;
  position: relative;
  background: var(--cream-warm);
}

.step .heading-md {
  margin-bottom: 0.55rem;
}

.step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 28ch;
  margin-inline: auto;
}

/* Security */
.security-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.security-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

.security-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.security-feature .heading-sm {
  margin-bottom: 0.35rem;
  color: var(--white);
}

.security-feature p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-band .heading-lg {
  max-width: 18ch;
}

.cta-band p {
  color: var(--text-muted);
  max-width: 40ch;
}

.cta-band-dark {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 0;
}

.cta-band-dark .heading-lg {
  max-width: 28ch;
  margin: 0 auto 1.5rem;
}

.cta-band-dark.cta-band-split {
  text-align: left;
}

.cta-band-dark.cta-band-split .heading-lg {
  max-width: none;
  margin: 0;
}

.cta-band-dark.cta-band-split .cta-split > div:first-child {
  flex: 1;
  min-width: 0;
  max-width: 36rem;
}

.cta-band-dark.cta-band-split .lead {
  max-width: none;
}

.cta-band-dark.cta-band-split .btn-row {
  flex-shrink: 0;
}

.cta-band-peach {
  background: linear-gradient(135deg, #f8ebe6 0%, #f3e0d9 100%);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.cta-band-peach .cta-copy {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 260px;
}

.cta-band-peach .heading-md {
  margin-bottom: 0.25rem;
}

.cta-band-peach p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-brand-lockup {
  margin-bottom: 1rem;
}

.footer-brand-lockup,
.footer-mega .footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  flex-wrap: nowrap;
}

.footer-brand-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-text {
  width: 150px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-logo {
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 28ch;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col li {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.55rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item i {
  font-size: 16px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  color: var(--coral);
  line-height: 1;
}

.footer-links-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.55rem;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.social-btn:hover {
  border-color: var(--coral);
  background: rgba(233, 113, 95, 0.12);
}

.social-btn i {
  font-size: 14px;
  color: var(--white);
  line-height: 1;
}

/* Mega footer (approach/contact style) */
.footer-mega {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr) 1.2fr;
  gap: 1.5rem 1.25rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mega h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-mega a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.45rem;
}

.footer-mega a:hover {
  color: var(--coral);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-social-row {
  display: flex;
  gap: 0.6rem;
  margin: 1rem 0 1.25rem;
}

/* About page specifics */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

.problem-grid .icon {
  margin: 0 auto 0.9rem;
}

.problem-grid .heading-sm {
  margin-bottom: 0.55rem;
}

.problem-grid p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.differ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.75rem;
}

.differ-grid > * {
  padding: 0 1.5rem;
  text-align: center;
}

.differ-grid > * + * {
  border-left: 1px solid var(--border-light);
}

.differ-grid .icon {
  margin: 0 auto 0.9rem;
}

.differ-grid .heading-sm {
  margin-bottom: 0.45rem;
}

.differ-grid .heading-sm::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--coral);
  margin: 0.65rem auto 0.85rem;
}

.differ-grid p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.75rem;
  box-shadow: var(--shadow-soft);
}

.trust-banner .heading-lg {
  margin-bottom: 1.75rem;
  max-width: 22ch;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.8);
}

.trust-item i {
  font-size: 28px;
  color: var(--coral);
  line-height: 1;
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.philosophy-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
}

.philosophy-list i {
  font-size: 20px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  color: var(--coral);
  line-height: 1;
}

.philosophy-list strong {
  color: var(--text);
  font-weight: 600;
}

/* Approach */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.principle-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.principle-card:hover {
  border-color: rgba(233, 113, 95, 0.4);
  transform: translateY(-3px);
}

.principle-card .icon {
  margin: 0 auto 1rem;
}

.principle-card .heading-sm {
  margin-bottom: 0.6rem;
}

.principle-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.compare-col h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.compare-col > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.compare-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  text-align: center;
}

.compare-icons span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.45rem;
  line-height: 1.3;
}

.compare-icons i {
  font-size: 36px;
  margin: 0 auto;
  display: block;
  color: var(--coral);
  line-height: 1;
}

.compare-icons.dark i {
  color: var(--navy);
}

.compare-arrow {
  align-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-top: 4rem;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.75rem;
  position: relative;
}

.process-row::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  border-top: 1.5px dashed rgba(26, 28, 30, 0.2);
}

.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.process-step .icon-circle-dark {
  margin: 0 auto 1rem;
}

.process-step .step-label {
  color: var(--coral);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.trust-road {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.trust-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
}

.trust-list-item .heading-sm {
  margin-bottom: 0.25rem;
}

.trust-list-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.road-list {
  margin: 1.25rem 0 1.75rem;
}

.road-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  color: var(--text-muted);
}

.road-list i {
  font-size: 18px;
  margin-top: 0.2rem;
  color: var(--coral);
  line-height: 1;
}

.commitment-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 1rem;
}

.commitment-card .eyebrow {
  margin-bottom: 0.75rem;
  display: block;
}

.commitment-card p {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.3;
}

.commitment-card .accent {
  display: inline;
}

/* Operations page */
.whatsapp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 1.1rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.whatsapp-chip img {
  width: 20px;
  height: 20px;
}

.whatsapp-chip span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
}

/* Generic two-column split (text + visual) */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split-2 .check-list {
  margin-top: 1.5rem;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
}

.check-list i {
  font-size: 19px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  color: var(--coral);
  line-height: 1;
}

.check-list strong {
  color: var(--text);
  font-weight: 600;
}

/* Phone mockup (WhatsApp conversation screenshot) */
.phone-mockup {
  position: relative;
  width: min(100%, 300px);
  margin-inline: auto;
  padding: 0.55rem;
  border-radius: 32px;
  background: var(--navy-deep);
  box-shadow: var(--shadow-soft);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.phone-mockup img {
  border-radius: 24px;
  display: block;
  width: 100%;
}

/* Browser mockup (Web Admin screenshot) */
.browser-mockup {
  border-radius: var(--radius-lg);
  background: var(--navy-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--border);
}

.browser-mockup img {
  display: block;
  width: 100%;
}

/* Guest experience feature grid */
.ops-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin-top: 2.75rem;
}

.ops-feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.ops-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 113, 95, 0.45);
  background: rgba(233, 113, 95, 0.06);
}

.ops-feature-card .icon-md {
  margin-bottom: 1rem;
}

.ops-feature-card .heading-sm {
  margin-bottom: 0.5rem;
  color: var(--white);
}

.ops-feature-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

/* Admin capability grid reuses .touch-card; extra spacing helper */
.admin-grid {
  margin-top: 3rem;
}

/* Why it wins comparison table */
.wins-table {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2.5rem;
}

.wins-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.wins-row + .wins-row {
  border-top: 1px solid var(--border-light);
}

.wins-row > div {
  padding: 1.1rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.wins-row > div:first-child {
  border-right: 1px solid var(--border-light);
}

.wins-row > div i {
  font-size: 19px;
  color: var(--coral);
  flex-shrink: 0;
  line-height: 1;
}

.wins-head {
  background: var(--cream-warm);
}

.wins-head > div {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
}

.wins-row:not(.wins-head) p,
.wins-row:not(.wins-head) span {
  color: var(--text-muted);
}

/* Contact */
.touch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-top: 2.5rem;
}

.touch-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.4rem;
  transition: border-color 0.25s ease, transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.touch-card:hover {
  border-color: rgba(233, 113, 95, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10, 12, 15, 0.06);
}

.touch-card .icon {
  margin-bottom: 1rem;
}

.touch-card .heading-sm {
  margin-bottom: 0.55rem;
}

.touch-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  min-height: 4.2em;
}

.touch-card .link-arrow {
  color: var(--coral);
  font-weight: 700;
  font-size: 1.1rem;
}

.form-process {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(233, 113, 95, 0.15);
  background: var(--white);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1rem 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-check input {
  margin-top: 0.25rem;
}

.form-check a {
  color: var(--coral);
  text-decoration: underline;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-status.is-success {
  color: #1f6b45;
}

.form-status.is-error {
  color: #a13024;
}

.next-steps {
  position: relative;
  padding-left: 0.5rem;
}

.next-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  position: relative;
  padding-bottom: 2rem;
}

.next-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  border-left: 1.5px dashed rgba(233, 113, 95, 0.45);
}

.step-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--coral);
  display: grid;
  place-items: center;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.step-badge i {
  font-size: 22px;
  color: var(--coral);
  line-height: 1;
}

.next-step h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.next-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.details-block {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.details-list .footer-contact-item {
  color: var(--text);
  margin-bottom: 1.1rem;
}

.details-list .footer-contact-item span {
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(10, 12, 15, 0.97);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.05rem;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav .btn {
  margin-top: 1rem;
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

/* Workforce page */
.wf-hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeUp 0.9s 0.32s var(--ease) both;
}

.wf-hero-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.wf-hero-pillar i {
  font-size: 22px;
  color: var(--coral);
  line-height: 1;
}

.wf-hero-pillar span {
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
  max-width: 12ch;
}

.wf-mini-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: fadeUp 0.9s 0.4s var(--ease) both;
}

.wf-mini-step {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 500;
}

.wf-mini-step i {
  font-size: 16px;
  color: var(--coral);
  line-height: 1;
}

.wf-mini-step:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 0;
  margin: 0 0.55rem;
  border-top: 1.5px dashed rgba(233, 113, 95, 0.55);
}

.wf-lifecycle {
  display: grid;
  grid-template-columns: 1fr 0.38fr;
  gap: 2.5rem;
  align-items: start;
}

.wf-lifecycle-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.wf-lifecycle-flow::before {
  content: "";
  position: absolute;
  top: 3.85rem;
  left: 8%;
  right: 8%;
  border-top: 1.5px dashed rgba(233, 113, 95, 0.4);
  z-index: 0;
}

.wf-life-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wf-life-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--coral);
  margin-bottom: 0.55rem;
  line-height: 1;
}

.wf-life-step .icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--white);
}

.wf-life-step .icon-circle i {
  font-size: 28px;
}

.wf-life-step .heading-sm {
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
}

.wf-life-step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 18ch;
  margin-inline: auto;
}

.wf-sidebar {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: var(--cream);
}

.wf-sidebar .eyebrow {
  display: block;
  margin-bottom: 1.15rem;
}

.wf-sidebar .check-list {
  margin: 0;
}

.wf-sidebar .check-list li {
  margin-bottom: 0.75rem;
}

.wf-sidebar .check-list li:last-child {
  margin-bottom: 0;
}

.wf-audit {
  display: grid;
  grid-template-columns: 1fr 0.32fr;
  gap: 2rem;
  align-items: stretch;
}

.wf-audit-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  position: relative;
}

.wf-audit-flow::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 6%;
  right: 6%;
  border-top: 1.5px dashed rgba(233, 113, 95, 0.45);
  z-index: 0;
}

.wf-audit-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wf-audit-step .icon-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  background: var(--white);
}

.wf-audit-step .heading-sm {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.wf-audit-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 16ch;
  margin-inline: auto;
}

.wf-audit-callout {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 1.75rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wf-audit-callout > i {
  font-size: 28px;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.wf-audit-callout .heading-sm {
  margin-bottom: 0.55rem;
}

.wf-audit-callout p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.wf-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.wf-cap-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: var(--white);
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.wf-cap-card:hover {
  border-color: rgba(233, 113, 95, 0.4);
  transform: translateY(-3px);
}

.wf-cap-card .icon {
  display: block;
  font-size: 28px;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 1rem;
}

.wf-cap-card .heading-sm {
  margin-bottom: 0.85rem;
}

.wf-comm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1.35rem;
}

.wf-comm-channels {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.wf-comm-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.wf-comm-channel > i {
  font-size: 28px;
  color: #000;
  line-height: 1;
  margin-top: 0.1rem;
}

.wf-comm-channel > img {
  width: 28px;
  height: 28px;
  margin-top: 0.1rem;
  display: block;
}

.wf-comm-channel .heading-sm {
  margin-bottom: 0.35rem;
}

.wf-comm-channel p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.wf-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(233, 113, 95, 0.35);
  border-radius: var(--radius-lg);
  background: var(--coral-tint);
}

.wf-notice > i {
  font-size: 26px;
  color: var(--coral);
  line-height: 1;
  margin-top: 0.1rem;
}

.wf-notice .heading-sm {
  margin-bottom: 0.45rem;
  color: var(--coral);
}

.wf-notice p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.wf-cta-copy {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.wf-cta-copy > i {
  font-size: 36px;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.cta-band-dark .wf-cta-copy .heading-lg {
  margin: 0;
  max-width: 22ch;
}

.hero-pricewatch .hero-content {
  max-width: 38rem;
}

.pw-hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-top: 2rem;
}

.pw-hero-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}

.pw-hero-pillar i {
  font-size: 28px;
  color: var(--coral);
  line-height: 1;
}

.pw-hero-pillar span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
  max-width: 12ch;
}

.pw-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.pw-feature-card {
  text-align: left;
  padding: 0.25rem 0.15rem;
}

.pw-feature-card .icon-md {
  color: var(--coral);
  margin-bottom: 0.85rem;
  display: block;
}

.pw-feature-card .heading-sm {
  margin: 0 0 0.55rem;
}

.pw-feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pw-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: 2.75rem;
  align-items: center;
}

.pw-workflow-copy .heading-lg {
  margin: 0;
}

.pw-flow {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.pw-flow-step {
  flex: 1;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.15rem 0.85rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(18, 23, 29, 0.04);
}

.pw-flow-step .icon-circle {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
}

.pw-flow-step .icon-circle i {
  font-size: 26px;
}

.pw-flow-step .heading-sm {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
}

.pw-flow-step p {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.pw-flow-step p + p {
  margin-top: 0.15rem;
}

.pw-flow-arrow {
  flex-shrink: 0;
  align-self: center;
  font-size: 22px;
  color: var(--coral);
}

.pw-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pw-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pw-detail-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pw-detail-head .icon-circle {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.pw-detail-head .icon-circle i {
  font-size: 24px;
}

.pw-detail-head .heading-sm {
  margin: 0 0 0.45rem;
}

.pw-detail-head p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pw-snippet {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 28px rgba(18, 23, 29, 0.05);
  flex: 1;
}

.pw-snippet-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.pw-snippet-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pw-snippet-label > i {
  color: var(--coral);
  font-size: 20px;
  line-height: 1;
}

.pw-snippet-body {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pw-snippet-lines {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pw-snippet-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--cream);
}

.pw-snippet-lines span:nth-child(1) {
  width: 92%;
}

.pw-snippet-lines span:nth-child(2) {
  width: 74%;
}

.pw-snippet-lines span:nth-child(3) {
  width: 58%;
}

.pw-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(233, 113, 95, 0.14);
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pw-snippet-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pw-snippet-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
  align-items: center;
}

.pw-snippet-row span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: var(--cream);
}

.pw-snippet-table {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pw-snippet-table-head,
.pw-snippet-table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.pw-snippet-table-head {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border-light);
}

.pw-skel {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: var(--cream);
}

.pw-change {
  color: var(--coral);
  font-size: 18px;
  line-height: 1;
  justify-self: end;
}

.pw-secure-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: var(--cream);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  margin-bottom: 2rem;
}

.pw-secure-banner > i {
  font-size: 28px;
  color: var(--coral);
  line-height: 1;
}

.pw-secure-banner p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.pw-secure-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.pw-secure-grid-full {
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.pw-secure-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  text-align: left;
}

.pw-secure-item > i {
  font-size: 28px;
  color: var(--coral);
  line-height: 1;
}

.pw-secure-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.pw-secure-item .heading-sm {
  margin: 0;
  font-size: 0.95rem;
}

.pw-secure-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pw-cta-copy {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.pw-cta-copy > i {
  font-size: 36px;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.cta-band-dark .pw-cta-copy .heading-lg {
  margin: 0;
  max-width: 28ch;
}

.hero-pricewatch .lead + .lead {
  margin-top: 0.85rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-mega {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: center;
    order: -1;
  }

  .hero-visual img {
    width: min(100%, 360px);
  }

  .platform-principles {
    grid-template-columns: repeat(3, 1fr);
  }

  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .together-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .platform-security {
    grid-template-columns: 1fr;
  }

  .cta-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .wf-hero-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .pw-hero-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .pw-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pw-workflow {
    grid-template-columns: 1fr;
  }

  .pw-detail-grid {
    grid-template-columns: 1fr;
  }

  .pw-secure-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pw-secure-grid-full {
    grid-template-columns: repeat(3, 1fr);
  }

  .wf-lifecycle,
  .wf-audit,
  .wf-comm {
    grid-template-columns: 1fr;
  }

  .wf-lifecycle-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .wf-lifecycle-flow::before,
  .wf-audit-flow::before {
    display: none;
  }

  .wf-audit-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .wf-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .split-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-3 > * {
    padding: 0;
  }

  .split-3 > * + * {
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps::before {
    display: none;
  }

  .security-grid,
  .form-process,
  .philosophy,
  .trust-road,
  .compare,
  .details-block,
  .split-2,
  .platform-security {
    grid-template-columns: 1fr;
  }

  .platform-principles {
    grid-template-columns: 1fr 1fr;
  }

  .platform-security-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-2 .phone-mockup,
  .split-2 .browser-mockup {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }

  .compare-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .differ-grid,
  .touch-grid,
  .principles-grid,
  .cap-grid,
  .process-row,
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .differ-grid > * + *,
  .differ-grid > * {
    border: none;
    padding: 1rem;
  }

  .process-row::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .wins-row {
    grid-template-columns: 1fr;
  }

  .wins-row > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .wf-lifecycle-flow {
    grid-template-columns: 1fr 1fr;
  }

  .wf-audit-flow {
    grid-template-columns: 1fr 1fr;
  }

  .pw-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pw-flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .pw-flow-step {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 9.5rem;
  }

  .pw-flow-arrow {
    display: none;
  }

  .pw-secure-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pw-secure-grid-full {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .container-wide {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 4rem 0;
  }

  .platform-grid,
  .problem-grid,
  .differ-grid,
  .touch-grid,
  .principles-grid,
  .cap-grid,
  .together-row,
  .platform-principles,
  .platform-security-grid,
  .process-row,
  .steps,
  .trust-row,
  .trust-list,
  .footer-grid,
  .footer-mega,
  .security-features,
  .compare-icons,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-empty {
    display: none;
  }

  .wf-hero-pillars,
  .wf-lifecycle-flow,
  .wf-audit-flow,
  .wf-cap-grid,
  .pw-hero-pillars,
  .pw-feature-grid,
  .pw-secure-grid {
    grid-template-columns: 1fr;
  }

  .wf-hero-pillar {
    flex-direction: row;
    align-items: center;
  }

  .wf-hero-pillar span {
    max-width: none;
  }

  .pw-hero-pillar {
    flex-direction: row;
    align-items: center;
  }

  .pw-hero-pillar span {
    max-width: none;
  }

  .pw-flow-step {
    flex: 1 1 100%;
  }

  .pw-cta-copy {
    flex-direction: column;
    gap: 0.85rem;
  }

  .pw-secure-banner {
    flex-direction: column;
    text-align: center;
  }

  .wf-mini-flow {
    gap: 0.65rem 0.25rem;
  }

  .wf-mini-step:not(:last-child)::after {
    width: 0.85rem;
    margin: 0 0.35rem;
  }

  .wf-life-step p,
  .wf-audit-step p {
    max-width: none;
  }

  .wf-cta-copy {
    flex-direction: column;
    gap: 0.85rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 2rem);
  }

  .cta-band-peach {
    padding: 1.5rem;
  }

  .btn-row {
    width: 100%;
  }

  .btn-row .btn {
    width: 100%;
  }
}

/* —— Legal documents —— */
.legal-hero {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(233, 113, 95, 0.12), transparent 55%),
    linear-gradient(165deg, var(--cream) 0%, var(--white) 55%, var(--cream-warm) 100%);
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-hero .heading-lg {
  max-width: 18ch;
  margin-top: 0.75rem;
  color: var(--navy);
}

.legal-meta {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-section {
  padding-top: 2.5rem;
}

.legal-doc {
  max-width: 52rem;
  margin-inline: auto;
  color: var(--text);
}

.legal-doc h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 650;
  color: var(--navy);
  margin: 2.25rem 0 0.85rem;
  line-height: 1.3;
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-contents {
  margin: 0 0 1.5rem 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-contents li {
  margin-bottom: 0.35rem;
}

.legal-list {
  margin: 0 0 1.25rem 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-list li {
  margin-bottom: 0.45rem;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.5;
}

.legal-table th,
.legal-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-light);
}

.legal-table th {
  background: var(--cream);
  color: var(--navy);
  font-weight: 650;
  white-space: nowrap;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table td {
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .legal-hero {
    padding: calc(var(--header-h) + 2.25rem) 0 2rem;
  }

  .legal-table {
    font-size: 0.85rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 0.65rem 0.7rem;
  }
}

