:root {
  --font-sans: "Segoe UI Variable", "Segoe UI", "Aptos", "Helvetica Neue", Arial, sans-serif;
  --bg: #eef8ff;
  --bg-soft: #e4f2fb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-soft: rgba(232, 244, 252, 0.92);
  --text: #14314b;
  --muted: #587289;
  --muted-strong: #284a67;
  --line: rgba(84, 145, 191, 0.24);
  --line-strong: rgba(53, 119, 171, 0.34);
  --navy: #0a233b;
  --blue: #007fd4;
  --blue-dark: #005d9f;
  --teal: #27b8ee;
  --yellow: #f6b31c;
  --yellow-dark: #e39b00;
  --shadow: 0 32px 64px rgba(11, 51, 83, 0.16);
  --shadow-soft: 0 18px 38px rgba(11, 51, 83, 0.12);
  --shadow-strong: 0 26px 58px rgba(7, 30, 55, 0.22);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1200px;
}

@property --glow-alpha {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 0 0, rgba(39, 184, 238, 0.24), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(0, 127, 212, 0.2), transparent 20%),
    radial-gradient(circle at 78% 0, rgba(246, 179, 28, 0.18), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 18%, #eaf5fc 54%, #f6fbff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 78% 22%, rgba(39, 184, 238, 0.12), rgba(39, 184, 238, 0) 24%),
    radial-gradient(circle at 68% 8%, rgba(246, 179, 28, 0.08), rgba(246, 179, 28, 0) 18%);
  animation: backgroundDrift 18s ease-in-out infinite alternate;
}

body::after {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(10, 35, 59, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 59, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
  animation: gridDrift 24s linear infinite;
}

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

::selection {
  color: #ffffff;
  background: rgba(13, 126, 197, 0.75);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.page-shell::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 184, 238, 0.24), rgba(39, 184, 238, 0));
  filter: blur(16px);
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(236, 247, 253, 0.72));
  box-shadow: 0 22px 44px rgba(7, 30, 55, 0.1);
  backdrop-filter: blur(22px);
  transition:
    transform 280ms var(--ease-out),
    background-color 280ms var(--ease-out),
    border-color 280ms var(--ease-out),
    box-shadow 280ms var(--ease-out),
    padding 280ms var(--ease-out);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(233, 246, 253, 0.84));
  box-shadow: 0 28px 54px rgba(7, 30, 55, 0.14);
  transform: translateY(-2px) scale(0.992);
}

.has-motion .motion-reveal {
  opacity: 0;
  transition:
    opacity 720ms var(--ease-out),
    transform 820ms var(--ease-out),
    filter 820ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
  filter: blur(18px);
}

.has-motion .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.has-motion .motion-up {
  transform: translate3d(0, 44px, 0) scale(0.965) rotateX(7deg);
}

.has-motion .motion-down {
  transform: translate3d(0, -34px, 0) scale(0.97) rotateX(-6deg);
}

.has-motion .motion-left {
  transform: translate3d(-38px, 0, 0) scale(0.97) rotateY(-7deg);
}

.has-motion .motion-right {
  transform: translate3d(38px, 0, 0) scale(0.97) rotateY(7deg);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: auto;
  height: clamp(58px, 6vw, 72px);
  filter: drop-shadow(0 14px 24px rgba(10, 35, 59, 0.14));
  transform-origin: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.brand:hover .brand-mark {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 18px 30px rgba(13, 126, 197, 0.18));
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: var(--blue-dark);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding-top: 24px;
  padding-bottom: 24px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  padding-top: 28px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  max-width: 620px;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-chip-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(232, 246, 252, 0.78));
  box-shadow: 0 14px 28px rgba(11, 51, 83, 0.1);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(16px);
}

.hero-chip-row span:nth-child(2n) {
  background: linear-gradient(135deg, rgba(255, 247, 221, 0.96), rgba(255, 237, 182, 0.82));
  color: #916200;
}

.hero-chip-row span:nth-child(3n) {
  background: linear-gradient(135deg, rgba(225, 244, 255, 0.96), rgba(198, 232, 255, 0.82));
  color: var(--blue-dark);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "brevia", "Manrope", sans-serif;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-wrap: balance;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 6.2vw, 6rem);
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 54%, #37a6dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 3.9vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
}

h3 {
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-text,
.feature-card p,
.offer-card p,
.spotlight-list span,
.story-card p,
.contact-card p,
.hero-card p {
  margin: 0;
  line-height: 1.75;
}

.hero-text {
  max-width: 27ch;
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: clamp(1.14rem, 1.8vw, 1.45rem);
  font-weight: 500;
  line-height: 1.58;
}

.hero-inline-panel {
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 253, 244, 0.92), rgba(231, 244, 252, 0.92));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-inline-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--yellow), var(--blue));
}

.hero-inline-label {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-inline-panel p:last-child {
  color: var(--text);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "brevia", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  min-height: 56px;
  padding: 0 24px;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  isolation: isolate;
}

.button::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -62%;
  width: 38%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: translate3d(0, 0, 0) rotate(18deg);
  transition: transform 700ms var(--ease-out);
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translate3d(420%, 0, 0) rotate(18deg);
}

.button:focus-visible {
  outline: 3px solid rgba(13, 126, 197, 0.25);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, #ffd161 0%, #f6b31c 45%, #de9800 100%);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 30px rgba(243, 178, 59, 0.34);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffc843 0%, #efa80d 45%, #d68f00 100%);
}

.button-secondary {
  border-color: rgba(0, 127, 212, 0.28);
  background: linear-gradient(135deg, rgba(16, 147, 229, 0.98), rgba(0, 95, 170, 0.96));
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(0, 95, 170, 0.24);
  backdrop-filter: blur(18px);
}

.button-secondary:hover {
  border-color: rgba(0, 127, 212, 0.36);
  background: linear-gradient(135deg, rgba(0, 138, 226, 0.98), rgba(0, 82, 148, 0.96));
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.button-small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: max(20px, calc(env(safe-area-inset-right, 0px) + 12px));
  bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 12px));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  text-decoration: none;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.05);
}

.whatsapp-float:active {
  transform: translateY(-1px) scale(0.98);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(57, 255, 20, 0.32);
  outline-offset: 4px;
}

.whatsapp-float img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  box-shadow: 0 20px 42px rgba(57, 255, 20, 0.36);
}

.contact-method a,
.contact-method-value,
.contact-method-button,
.contact-method-hint {
  overflow-wrap: anywhere;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-stats article,
.feature-card,
.offer-card,
.story-card,
.contact-card,
.hero-card {
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-alpha: 0;
  --glow-rgb: 89 210 229;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  will-change: transform, box-shadow;
}

.hero-stats article {
  position: relative;
  padding: 20px 20px 18px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.42)) 0, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 253, 0.9));
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, --glow-alpha 260ms ease;
}

.hero-stats article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--blue), var(--teal));
}

.hero-stats article::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 179, 28, 0.18), rgba(246, 179, 28, 0));
}

.hero-stats strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  font-size: 1.34rem;
  color: var(--navy);
}

.hero-stats span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  min-height: 650px;
  padding: 28px;
  align-content: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.8), rgba(227, 243, 252, 0.95) 42%, rgba(208, 232, 248, 0.98) 100%);
  box-shadow: var(--shadow);
  transform: translate3d(calc(var(--hero-shift-x) * -0.08), calc(var(--hero-shift-y) * -0.08), 0);
  transition: transform 320ms var(--ease-out);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  height: 170px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(0, 127, 212, 0.22), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 10%, rgba(255, 224, 137, 0.48), rgba(255, 255, 255, 0));
  pointer-events: none;
  transform: translate3d(calc(var(--hero-shift-x) * 0.18), calc(var(--hero-shift-y) * 0.18), 0);
  transition: transform 380ms var(--ease-out);
}

.hero-visual-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-shift-x) * 0.26), calc(var(--hero-shift-y) * 0.26), 0);
  transition: transform 440ms var(--ease-out);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
}

.hero-orb-one {
  top: 54px;
  right: 36px;
  width: 300px;
  height: 300px;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 248, 214, 0.72), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 65% 62%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 24%),
    linear-gradient(145deg, rgba(108, 206, 245, 0.84), rgba(0, 127, 212, 0.66) 52%, rgba(246, 179, 28, 0.4) 100%);
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.22),
    0 24px 50px rgba(0, 127, 212, 0.18);
  animation: sunPulse 6s ease-in-out infinite;
}

.hero-orb-two {
  bottom: 118px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(246, 179, 28, 0.28), rgba(246, 179, 28, 0));
  filter: blur(6px);
}

.hero-grid-line {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.hero-grid-line-one {
  top: 74px;
  left: 26px;
  width: 220px;
  height: 64px;
  transform: rotate(-10deg);
}

.hero-grid-line-two {
  right: 70px;
  bottom: 210px;
  width: 280px;
  height: 92px;
  transform: rotate(-13deg);
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.32)) 0, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 251, 255, 0.82));
  box-shadow: 0 22px 40px rgba(11, 51, 83, 0.12);
  backdrop-filter: blur(18px);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, --glow-alpha 260ms ease;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
}

.hero-card-large {
  grid-column: 3 / 7;
  align-self: start;
  min-height: 270px;
  margin-top: 28px;
}

.hero-card-large::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 179, 28, 0.22), rgba(246, 179, 28, 0));
}

.hero-card-media {
  position: relative;
  overflow: hidden;
  margin: -4px -4px 18px;
  border-radius: 24px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, rgba(10, 35, 59, 0.12), rgba(39, 184, 238, 0.24));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 18px 30px rgba(7, 30, 55, 0.12);
}

.hero-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-large h2 {
  max-width: 8.5ch;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  color: var(--navy);
}

.hero-card-large p,
.hero-card-large .card-tag {
  color: var(--muted);
}

.hero-card-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-card-list li::before {
  content: "";
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  box-shadow: 0 0 0 5px rgba(243, 178, 59, 0.16);
}

.hero-card-small {
  min-height: 164px;
}

.floating-card {
  animation: floatCard 7s ease-in-out infinite;
}

.hero-card-small.floating-card {
  animation-duration: 8.5s;
}

.hero-card-sage.floating-card,
.hero-detail-strip.floating-card {
  animation-duration: 9.5s;
}

.hero-card-sand {
  grid-column: 1 / 4;
  align-self: end;
  margin-bottom: 86px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.28)) 0, transparent 42%),
    linear-gradient(180deg, rgba(255, 248, 221, 0.98), rgba(255, 232, 177, 0.92));
}

.hero-card-sage {
  grid-column: 2 / 5;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.34)) 0, transparent 42%),
    linear-gradient(180deg, rgba(233, 247, 255, 0.98), rgba(205, 232, 250, 0.94));
}

.hero-detail-strip {
  --glow-rgb: 243 178 59;
  --glow-alpha: 0;
  --glow-x: 50%;
  --glow-y: 50%;
  grid-column: 1 / 6;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.28)) 0, transparent 42%),
    linear-gradient(135deg, rgba(7, 26, 45, 0.96), rgba(10, 92, 147, 0.88));
  box-shadow: var(--shadow-strong);
  color: #ffffff;
  backdrop-filter: blur(18px);
  transition: box-shadow 260ms ease, border-color 260ms ease, --glow-alpha 260ms ease;
}

.hero-detail-strip article {
  display: grid;
  gap: 6px;
  padding: 10px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-detail-strip article:first-child {
  border-left: 0;
}

.hero-detail-strip strong {
  color: var(--yellow);
  font-family: "brevia", "Manrope", sans-serif;
  font-size: 1.38rem;
}

.hero-detail-strip span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}

.card-tag,
.offer-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243, 178, 59, 0.14);
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card:hover,
.hero-detail-strip:hover,
.feature-card:hover,
.offer-card:hover,
.story-card:hover,
.contact-card:hover,
.hero-stats article:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 42px rgba(7, 30, 55, 0.16);
}

.spotlight-list article:hover,
.spotlight-metrics article:hover,
.contact-method:hover,
.contact-hours:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 34px rgba(7, 30, 55, 0.14);
}

.trust-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(246, 179, 28, 0.92) 0 10px, transparent 10px),
    linear-gradient(135deg, rgba(6, 36, 63, 0.98), rgba(0, 95, 170, 0.94));
  box-shadow: var(--shadow-strong);
}

.trust-band p {
  flex: 1 1 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trust-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-points span:nth-child(2n) {
  background: rgba(246, 179, 28, 0.16);
  color: #ffd977;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(13, 126, 197, 0.22), rgba(13, 126, 197, 0));
}

.split-section,
.stories-section,
.cta-section {
  position: relative;
  overflow: hidden;
  padding-inline: 36px;
  border: 1px solid rgba(120, 167, 198, 0.22);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(237, 247, 253, 0.94));
  box-shadow: var(--shadow-soft);
}

.split-section::before,
.stories-section::before,
.cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 184, 238, 0.16), rgba(39, 184, 238, 0));
  pointer-events: none;
}

.split-section::after,
.stories-section::after,
.cta-section::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 179, 28, 0.14), rgba(246, 179, 28, 0));
  pointer-events: none;
}

.feature-grid,
.offer-grid,
.story-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.offer-card,
.story-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.feature-card {
  padding: 32px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.34)) 0, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(237, 247, 253, 0.9));
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, --glow-alpha 260ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -22px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 179, 28, 0.18), rgba(246, 179, 28, 0));
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 50%),
    linear-gradient(180deg, var(--blue), var(--blue-dark));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 16px 24px rgba(13, 126, 197, 0.22);
}

.feature-card:nth-child(2n) span {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 50%),
    linear-gradient(180deg, #ffd261, var(--yellow-dark));
  box-shadow: 0 16px 24px rgba(243, 178, 59, 0.24);
}

.feature-card h3,
.offer-card h3,
.story-card strong {
  color: var(--navy);
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted);
}

.offers-section {
  padding-top: 28px;
}

.offer-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.3)) 0, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(238, 247, 254, 0.92));
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, --glow-alpha 260ms ease;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(246, 179, 28, 0.9), rgba(0, 127, 212, 0.72), rgba(39, 184, 238, 0.5));
}

.offer-card-media {
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(120, 167, 198, 0.16);
  border-radius: 24px;
  background: rgba(220, 233, 242, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.offer-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 320ms ease;
}

.offer-card:hover .offer-card-media img {
  transform: scale(1.03);
}

.offer-card p:not(.offer-label) {
  margin-top: 12px;
  color: var(--muted);
}

.offer-card-highlight {
  --glow-rgb: 243 178 59;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.28)) 0, transparent 45%),
    linear-gradient(160deg, rgba(7, 26, 45, 0.98), rgba(13, 126, 197, 0.9));
  box-shadow: var(--shadow-strong);
}

.offer-card-highlight::before {
  background: linear-gradient(90deg, rgba(243, 178, 59, 0.88), rgba(255, 255, 255, 0.34));
}

.offer-card-highlight h3 {
  color: #ffffff;
}

.offer-card-highlight p,
.offer-card-highlight li,
.offer-card-highlight .offer-label {
  color: rgba(255, 255, 255, 0.86);
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.offer-card li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 127, 212, 0.08), rgba(246, 179, 28, 0.08));
  line-height: 1.6;
}

.offer-card li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  box-shadow: 0 0 0 6px rgba(13, 126, 197, 0.09);
}

.offer-card-actions {
  margin-top: auto;
  padding-top: 22px;
}

.offer-card-highlight .offer-card-actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.offer-card-highlight .offer-card-actions .button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.offer-card-highlight ul {
  color: rgba(255, 255, 255, 0.92);
}

.offer-card-highlight li {
  background: rgba(255, 255, 255, 0.1);
}

.offer-card-highlight .offer-label {
  background: rgba(255, 255, 255, 0.12);
}

.offer-card-highlight li::before {
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(243, 178, 59, 0.12);
}

.spotlight-panel,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  padding: 40px;
  border-radius: var(--radius-xl);
}

.spotlight-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #06182b 0%, #005d9f 48%, #1691e5 100%);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.spotlight-panel::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -40px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 219, 112, 0.2), rgba(255, 255, 255, 0));
}

.spotlight-panel::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 179, 28, 0.22), rgba(246, 179, 28, 0));
  animation: floatOrb 10s ease-in-out infinite;
}

.spotlight-panel .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.spotlight-intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

.spotlight-panel h2 {
  color: #ffffff;
}

.spotlight-metrics {
  display: grid;
  gap: 12px;
}

.spotlight-metrics article {
  --glow-alpha: 0;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-rgb: 255 255 255;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.18)) 0, transparent 44%),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: border-color 240ms ease, background-color 240ms ease, --glow-alpha 240ms ease;
}

.spotlight-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 1.08rem;
}

.spotlight-metrics span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.spotlight-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.spotlight-list article {
  --glow-alpha: 0;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-rgb: 255 255 255;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.18)) 0, transparent 44%),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: border-color 240ms ease, background-color 240ms ease, --glow-alpha 240ms ease;
}

.spotlight-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
  color: var(--yellow);
}

.spotlight-list span {
  color: rgba(255, 255, 255, 0.82);
}

.stories-section {
  padding-top: 36px;
}

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

.story-card {
  padding: 34px 30px 30px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.34)) 0, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 247, 253, 0.92));
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, --glow-alpha 260ms ease;
}

.story-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "brevia", "Manrope", sans-serif;
  font-size: 4.2rem;
  line-height: 1;
  color: rgba(246, 179, 28, 0.18);
}

.story-card p {
  color: var(--text);
  font-size: 1rem;
}

.story-card strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue-dark);
}

.cta-panel {
  align-items: stretch;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(120, 167, 198, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(235, 247, 253, 0.94));
  box-shadow: var(--shadow-soft);
}

.cta-panel > div:first-child {
  padding: 36px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0, rgba(246, 179, 28, 0.24), rgba(246, 179, 28, 0) 28%),
    linear-gradient(135deg, rgba(7, 26, 45, 0.98), rgba(0, 95, 170, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-panel .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.cta-panel h2 {
  color: #ffffff;
  max-width: 10ch;
}

.cta-panel p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-highlights span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-highlights span:nth-child(2n) {
  background: rgba(246, 179, 28, 0.16);
  color: #ffe08f;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.34)) 0, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 253, 0.94));
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, --glow-alpha 260ms ease;
}

.contact-card label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-person-card {
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: start;
  gap: 22px 28px;
}

.contact-person-media {
  grid-row: span 4;
}

.contact-person-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(11, 51, 83, 0.16);
}

.contact-person-copy h3 {
  margin-top: 8px;
}

.contact-kicker {
  margin: 0;
  color: var(--yellow-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-method {
  --glow-alpha: 0;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-rgb: 89 210 229;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(120, 167, 198, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.28)) 0, transparent 42%),
    rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 220ms ease, box-shadow 220ms ease, --glow-alpha 220ms ease;
}

.contact-method-label {
  min-width: 92px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method a,
.contact-method-value {
  color: var(--muted-strong);
  text-decoration: none;
  font-weight: 700;
}

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

.contact-method-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted-strong);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.contact-method-button:hover {
  color: var(--blue);
}

.contact-method-hint {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hours {
  --glow-alpha: 0;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-rgb: 89 210 229;
  padding: 18px;
  border: 1px solid rgba(120, 167, 198, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(var(--glow-rgb) / calc(var(--glow-alpha) * 0.28)) 0, transparent 42%),
    rgba(255, 255, 255, 0.72);
  transition: border-color 220ms ease, box-shadow 220ms ease, --glow-alpha 220ms ease;
}

.contact-hours-title {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-hours-grid span:nth-child(even) {
  text-align: right;
  font-weight: 700;
  color: var(--muted-strong);
}

.contact-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: rgba(0, 128, 200, 0.4);
  box-shadow: 0 0 0 4px rgba(29, 161, 235, 0.12);
}

.contact-card textarea {
  resize: vertical;
  min-height: 120px;
}

.site-footer {
  margin-top: 40px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(235, 247, 253, 0.82));
  box-shadow: 0 22px 44px rgba(7, 30, 55, 0.1);
  backdrop-filter: blur(18px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(84, 145, 191, 0.18);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a.is-active {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 127, 212, 0.28);
  transform: translateY(-1px);
}

.page-shell-legal {
  min-height: 100vh;
  padding-bottom: 36px;
}

.legal-page-main {
  display: grid;
  gap: 24px;
}

.legal-hero {
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(232, 245, 253, 0.8));
  box-shadow: var(--shadow-soft);
}

.legal-hero .hero-text {
  max-width: 58ch;
}

.legal-back-link {
  width: fit-content;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.policy-stack {
  display: grid;
  gap: 22px;
}

.legal-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(247, 252, 255, 0.96), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-soft);
}

.legal-card-kicker {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-card h2,
.legal-card h3 {
  color: var(--navy);
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.legal-card h3 {
  margin: 22px 0 10px;
  font-size: 1rem;
}

.legal-card address,
.legal-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted-strong);
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted-strong);
  line-height: 1.75;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-card address {
  font-style: normal;
}

.legal-card a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.legal-detail-list {
  display: grid;
  gap: 14px;
}

.legal-placeholder {
  color: var(--muted);
  font-style: italic;
}

.legal-note {
  margin: 0;
  padding: 18px 22px;
  border: 1px solid rgba(246, 179, 28, 0.34);
  border-radius: 22px;
  color: var(--muted-strong);
  background: linear-gradient(135deg, rgba(255, 245, 214, 0.9), rgba(255, 250, 236, 0.96));
  box-shadow: 0 16px 30px rgba(227, 155, 0, 0.12);
  line-height: 1.7;
}

@keyframes backgroundDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(0, -18px, 0) scale(1.03);
  }
}

@keyframes gridDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-24px, -16px, 0);
  }

  to {
    transform: translate3d(-48px, -32px, 0);
  }
}

@keyframes sunPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-22px, -18px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .has-motion .motion-reveal,
  .has-motion .motion-up,
  .has-motion .motion-down,
  .has-motion .motion-left,
  .has-motion .motion-right {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    gap: 16px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero,
  .spotlight-panel,
  .cta-panel,
  .feature-grid,
  .offer-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .section-heading::after {
    width: 100%;
  }

  .hero {
    gap: 32px;
    padding-top: 14px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-text {
    max-width: 34ch;
  }

  .hero-visual {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px;
  }

  .hero-card-large,
  .hero-card-sand,
  .hero-card-sage,
  .hero-detail-strip {
    grid-column: auto;
    margin: 0;
  }

  .hero-card-large,
  .hero-detail-strip {
    grid-column: 1 / -1;
  }

  .hero-card-sand,
  .hero-card-sage {
    max-width: none;
  }

  .hero-detail-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-band {
    flex-direction: column;
    align-items: start;
  }

  .trust-points {
    justify-content: flex-start;
  }

  .split-section,
  .stories-section,
  .cta-section {
    padding-inline: 24px;
  }

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

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel > div:first-child {
    padding: 28px;
  }

  .contact-person-card {
    grid-template-columns: 1fr;
  }

  .contact-person-media {
    grid-row: auto;
  }

  .contact-person-media img {
    max-width: 280px;
  }

}

@media (max-width: 760px) {
  .site-header {
    gap: 14px;
    padding: 14px 16px 16px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-nav a {
    justify-content: center;
    padding: 12px 14px;
    border: 1px solid rgba(84, 145, 191, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    gap: 24px;
  }

  .hero-chip-row {
    gap: 8px;
    margin-bottom: 16px;
  }

  .hero-chip-row span {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 20px;
  }

  .floating-card {
    animation: none;
  }

  .contact-person-card {
    gap: 18px;
  }

  .contact-person-media img {
    max-width: 240px;
  }

}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--container));
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .whatsapp-float {
    right: max(14px, calc(env(safe-area-inset-right, 0px) + 10px));
    bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 10px));
    width: 64px;
    height: 64px;
  }

  .section {
    padding: 48px 0;
  }

  .site-header {
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px;
    border-radius: 24px;
  }

  .brand-mark {
    height: 64px;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a {
    font-size: 0.88rem;
    padding: 11px 12px;
  }

  h1 {
    max-width: 100%;
    font-size: 4rem;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .split-section,
  .stories-section,
  .cta-section {
    padding-inline: 18px;
  }

  .button,
  .button-ghost {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

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

  .contact-hours-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-hours-grid span:nth-child(even) {
    margin-bottom: 8px;
    text-align: left;
  }

  .hero-visual {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .hero-visual::after {
    right: 18px;
    bottom: 18px;
    left: 18px;
    height: 118px;
  }

  .hero-orb-one {
    top: 74px;
    right: 18px;
    width: 190px;
    height: 190px;
  }

  .hero-grid-line-one,
  .hero-grid-line-two {
    display: none;
  }

  .hero-card-large {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    min-height: auto;
  }

  .hero-card-large h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .hero-text {
    max-width: 100%;
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .hero-inline-panel {
    margin-top: 20px;
    padding: 16px 18px;
  }

  .hero-card-small {
    width: 100%;
    max-width: none;
  }

  .hero-detail-strip {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .hero-detail-strip article {
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .hero-detail-strip article:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .feature-card,
  .offer-card,
  .story-card,
  .spotlight-panel,
  .cta-panel,
  .contact-card,
  .hero-card {
    padding: 22px;
    border-radius: 24px;
  }

  .spotlight-panel,
  .cta-panel {
    padding: 22px;
  }

  .cta-panel > div:first-child {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-highlights {
    margin-top: 18px;
  }

  .contact-person-media img {
    max-width: 220px;
    margin: 0 auto;
  }

  .contact-method {
    align-items: start;
    padding: 16px;
  }

  .contact-method-label {
    min-width: 100%;
  }

  .contact-method a,
  .contact-method-value,
  .contact-method-button {
    width: 100%;
  }

  .contact-hours {
    padding: 16px;
  }

  .trust-band {
    padding: 20px 18px;
  }

  .trust-band p {
    font-size: 0.94rem;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: min(calc(100% - 14px), var(--container));
    padding-top: 12px;
  }

  .site-header {
    padding: 12px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .brand-mark {
    height: 56px;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-chip-row span,
  .contact-highlights span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .feature-card,
  .offer-card,
  .story-card,
  .spotlight-panel,
  .cta-panel,
  .contact-card,
  .hero-card,
  .legal-card,
  .site-footer {
    padding: 18px;
    border-radius: 20px;
  }

  .cta-panel > div:first-child {
    padding: 20px;
    border-radius: 20px;
  }

  .hero-inline-panel {
    padding: 14px 16px 14px 18px;
  }

  .hero-detail-strip {
    padding: 14px;
  }

  .contact-method,
  .contact-hours {
    padding: 14px;
    border-radius: 18px;
  }

  .whatsapp-float {
    right: max(12px, calc(env(safe-area-inset-right, 0px) + 8px));
    bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 8px));
    width: 62px;
    height: 62px;
  }

  .legal-note {
    padding: 16px 18px;
    border-radius: 20px;
  }
}
