:root {
  --ink: #061520;
  --navy: #0a1f2e;
  --navy-2: #17394e;
  --navy-3: #2a4f63;
  --foam: #f6f1e7;
  --white: #ffffff;
  --sand: #e7dcc7;
  --sand-deep: #d8cbaf;
  --paper: #fbf8f1;
  --signal: #e2a24a;
  --signal-dark: #c8862f;
  --signal-soft: #f4dfbd;
  --aqua: #93a9b5;
  --aqua-soft: #e3e8e8;
  --sea: #2a4f63;
  --green: #7fa98c;
  --text: #0a1f2e;
  --muted: #607683;
  --line: rgba(10, 31, 46, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 12px 34px rgba(7, 25, 36, 0.08);
  --shadow-md: 0 24px 70px rgba(7, 25, 36, 0.14);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.28);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: min(1280px, calc(100vw - 48px));
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--foam);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open,
body.dialog-is-open {
  overflow: hidden;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

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

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

button,
a,
select,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

button:not(:disabled),
select,
summary,
label:has(input) {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--signal) 72%, white);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 210;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  transform-origin: left center;
  background: var(--signal);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  height: 86px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(3, 17, 26, 0.55), rgba(3, 17, 26, 0));
  opacity: 1;
  transition: opacity 0.35s ease;
}

.site-header.is-scrolled {
  height: 74px;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(5, 24, 36, 0.9);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.nav-shell {
  width: min(1420px, calc(100vw - 48px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: baseline;
  gap: 13px;
  color: inherit;
}

.brand__word {
  display: block;
  font-family: "Mr Bedfort", cursive;
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-header .brand__word,
.mobile-menu .brand__word,
.brand--footer .brand__word {
  color: var(--foam);
}

.brand__descriptor {
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  white-space: nowrap;
}


.legal-header .brand__descriptor {
  color: rgba(10, 31, 46, 0.58);
}

.legal-header .brand__word {
  color: var(--ink);
}

.brand--footer .brand__word {
  font-size: 32px;
}

@media (max-width: 720px) {
  .brand__descriptor {
    display: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--signal);
  transition: transform 0.25s var(--ease);
}

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

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

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-picker {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(2, 17, 27, 0.18);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.language-picker > svg:first-child {
  width: 16px;
  height: 16px;
}

.language-picker > svg:last-child {
  width: 13px;
  height: 13px;
}

.language-picker select {
  border: 0;
  outline: 0;
  appearance: none;
  padding: 0 1px;
  background: transparent;
  color: inherit;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.language-picker option {
  color: var(--ink);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(2, 17, 27, 0.2);
  color: var(--white);
}

.menu-button svg {
  width: 21px;
  height: 21px;
}

.mobile-menu {
  position: fixed;
  z-index: 250;
  inset: 0;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
  overflow-y: auto;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__top .menu-button {
  display: grid;
}

.mobile-menu__links {
  margin: clamp(64px, 12vh, 110px) 0 50px;
  display: grid;
  gap: 8px;
}

.mobile-menu__links a {
  padding-block: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--font-display);
  font-size: clamp(34px, 10vw, 58px);
  line-height: 1.05;
}

/* Buttons */
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button--large {
  min-height: 57px;
  padding-inline: 27px;
  font-size: 14px;
}

.button--wide {
  width: 100%;
}

.button--signal {
  background: var(--signal);
  color: var(--ink);
  box-shadow: 0 13px 28px rgba(226, 162, 74, 0.25);
}

.button--signal:hover {
  background: var(--signal-dark);
  box-shadow: 0 18px 38px rgba(226, 162, 74, 0.32);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(3, 21, 32, 0.25);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--glass:hover {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(3, 21, 32, 0.45);
}

.button--ghost-dark,
.button--outline-dark {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
}

.button--ghost-dark:hover,
.button--outline-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.button--whatsapp {
  background: #20b874;
  color: var(--white);
  box-shadow: 0 15px 30px rgba(32, 184, 116, 0.22);
}

.button--whatsapp:hover {
  background: #169c60;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(760px, 100svh);
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0e5d7b;
  color: var(--white);
}

.hero__fallback,
.hero__ocean,
.hero__scrim,
.hero__horizon {
  position: absolute;
  inset: 0;
}

.hero__fallback {
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
}

.hero__ocean {
  z-index: -4;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__ocean.is-ready {
  opacity: 1;
}

.hero__ocean > div,
.hero__ocean canvas {
  width: 100% !important;
  height: 100% !important;
}

.hero__scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 18, 28, 0.82) 0%, rgba(3, 18, 28, 0.61) 34%, rgba(3, 18, 28, 0.14) 70%, rgba(3, 18, 28, 0.08) 100%),
    linear-gradient(180deg, rgba(3, 17, 26, 0.38) 0%, transparent 32%, rgba(3, 17, 26, 0.16) 66%, rgba(3, 17, 26, 0.82) 100%);
}

.hero__horizon {
  z-index: -2;
  top: 57%;
  bottom: auto;
  height: 1px;
  opacity: 0.44;
  background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.42) 12%, rgba(255, 255, 255, 0.16) 70%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: max(760px, 100svh);
  padding-block: 150px 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__copy {
  width: min(790px, 72vw);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--signal-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #f0c985;
}

.hero h1 {
  max-width: 810px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 6.2vw, 91px);
  font-weight: 550;
  line-height: 0.96;
  letter-spacing: -0.052em;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
  max-width: 675px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero__actions {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__micro {
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 600;
}

.status-dot,
.pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(131, 200, 202, 0.15);
}

.hero__channel-rail {
  position: absolute;
  right: 0;
  bottom: 72px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__channel-rail > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__channel-rail svg {
  width: 16px;
  height: 16px;
  color: var(--aqua);
}

.channel-rail__line {
  width: clamp(34px, 5vw, 80px);
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - min(1420px, calc(100vw - 48px))) / 2));
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 21px;
  height: 32px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.scroll-mouse i {
  width: 2px;
  height: 6px;
  border-radius: 2px;
  background: var(--white);
  animation: scrollCue 1.7s infinite;
}

@keyframes scrollCue {
  0% { opacity: 0; transform: translateY(-2px); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(9px); }
}

/* Shared sections */
.section {
  position: relative;
  padding-block: clamp(92px, 10vw, 150px);
}

.section--foam {
  background: var(--foam);
}

.section--sand {
  background: var(--sand);
}

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

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

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
}

.section-heading h2,
.quote-intro h2,
.agent-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.7vw, 67px);
  font-weight: 550;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading__body,
.section-heading--center > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  text-wrap: pretty;
}

.section-heading--center {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  display: flex;
  justify-content: center;
}

.section-heading--center > p:last-child {
  max-width: 740px;
  margin: 22px auto 0;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Multichannel experience */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.channel-card {
  position: relative;
  min-height: 340px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.channel-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -80px;
  bottom: -90px;
  border: 1px solid rgba(7, 31, 47, 0.1);
  border-radius: 50%;
}

.channel-card:hover {
  transform: translateY(-7px);
  border-color: rgba(226, 162, 74, 0.35);
  box-shadow: var(--shadow-md);
}

.channel-card--featured {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}

.channel-card--featured::after {
  border-color: rgba(255, 255, 255, 0.13);
}

.channel-card__icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-soft);
  color: var(--navy);
}

.channel-card--featured .channel-card__icon {
  background: rgba(131, 200, 202, 0.14);
  color: var(--aqua);
}

.channel-card__icon svg {
  width: 25px;
  height: 25px;
}

.channel-card__number {
  position: absolute;
  top: 34px;
  right: 32px;
  color: rgba(7, 31, 47, 0.35);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.channel-card--featured .channel-card__number {
  color: rgba(255, 255, 255, 0.4);
}

.channel-card h3 {
  margin: 58px 0 12px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.channel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.channel-card--featured p {
  color: rgba(255, 255, 255, 0.66);
}

.pill {
  position: absolute;
  left: 32px;
  bottom: 28px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(49, 138, 155, 0.09);
  color: var(--sea);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.channel-card--featured .pill {
  background: rgba(131, 200, 202, 0.12);
  color: var(--aqua);
}

.context-flow {
  margin-top: 22px;
  padding: 25px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
}

.context-flow__label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.context-flow ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.context-flow li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
}

.context-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 35px;
  height: 1px;
  background: var(--line);
}

.context-flow li > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
}

.context-flow strong {
  font-weight: 650;
}

/* Quote */
.quote-section {
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.quote-orbit {
  position: absolute;
  border: 1px solid rgba(131, 200, 202, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.quote-orbit--one {
  width: 760px;
  height: 760px;
  top: -380px;
  right: -230px;
}

.quote-orbit--two {
  width: 460px;
  height: 460px;
  left: -250px;
  bottom: -180px;
}

.quote-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: clamp(50px, 7vw, 100px);
}

.quote-intro {
  position: sticky;
  top: 130px;
}

.quote-intro > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.75;
}

.quote-principle {
  margin-top: 34px;
  padding: 17px 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid rgba(131, 200, 202, 0.18);
  border-radius: 14px;
  background: rgba(131, 200, 202, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.quote-principle svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--aqua);
}

.quote-panel {
  min-height: 640px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
}

.quote-progress__top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-progress__bar {
  height: 3px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.quote-progress__bar span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--signal);
  transition: width 0.45s var(--ease);
}

.quote-progress__steps {
  margin: 13px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quote-progress__steps li {
  transition: color 0.3s ease;
}

.quote-progress__steps li.is-active,
.quote-progress__steps li.is-complete {
  color: rgba(255, 255, 255, 0.88);
}

.quote-step {
  padding-top: 42px;
}

.quote-step__heading {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  align-items: start;
}

.quote-step__heading > span {
  padding-top: 5px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.quote-step__heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.quote-step__heading p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.form-group {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.form-group legend,
.field > span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.36fr;
  gap: 14px;
}

.form-row--value {
  grid-template-columns: 1fr 150px;
}

.field {
  display: block;
  margin-bottom: 19px;
}

.field input,
.field select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  outline: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 14px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.6) 50%),
    linear-gradient(135deg, rgba(255,255,255,.6) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 15px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.field input:focus,
.field select:focus {
  border-color: var(--aqua);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(131, 200, 202, 0.12);
}

.field select option {
  color: var(--ink);
}

.choice-grid {
  display: grid;
  gap: 9px;
}

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

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

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

.choice-card,
.choice-pill,
.channel-choice {
  position: relative;
}

.choice-card input,
.choice-pill input,
.channel-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card {
  min-height: 88px;
  padding: 14px 10px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 650;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.choice-card:hover,
.choice-pill:hover,
.channel-choice:hover {
  border-color: rgba(131, 200, 202, 0.46);
  transform: translateY(-1px);
}

.choice-card:has(input:checked),
.choice-pill:has(input:checked),
.channel-choice:has(input:checked) {
  border-color: var(--aqua);
  background: rgba(131, 200, 202, 0.13);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(131, 200, 202, 0.22);
}

.choice-card:has(input:focus-visible),
.choice-pill:has(input:focus-visible),
.channel-choice:has(input:focus-visible) {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.choice-card__icon {
  color: var(--aqua);
  font-size: 22px;
  line-height: 1;
}

.choice-pill {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 650;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.channel-choice {
  min-height: 72px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.channel-choice svg {
  width: 22px;
  height: 22px;
  color: var(--aqua);
}

.consent-row {
  margin-top: 6px;
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 11px;
  align-items: start;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.5;
}

.consent-row input {
  position: absolute;
  opacity: 0;
}

.checkbox-ui {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

.checkbox-ui svg {
  width: 14px;
  height: 14px;
  opacity: 0;
}

.consent-row:has(input:checked) .checkbox-ui {
  border-color: var(--aqua);
  background: var(--aqua);
  color: var(--ink);
}

.consent-row:has(input:checked) .checkbox-ui svg {
  opacity: 1;
}

.has-error input,
.has-error select,
.form-group.has-error .choice-card,
.form-group.has-error .choice-pill,
.form-group.has-error .channel-choice {
  border-color: #ff8d78;
}

.field-error {
  min-height: 16px;
  margin: 5px 0 0;
  color: #ffad9d;
  font-size: 9px;
  line-height: 1.4;
}

.field-error:empty {
  min-height: 0;
  margin: 0;
}

.field-error--standalone {
  margin-top: 8px;
}

.quote-disclaimer {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  line-height: 1.55;
}

.quote-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-actions #quote-next {
  margin-left: auto;
}

.quote-result {
  min-height: 550px;
  display: grid;
  align-content: center;
  text-align: center;
}

.result-check {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--ink);
  box-shadow: 0 0 0 10px rgba(131, 200, 202, 0.1);
}

.result-check svg {
  width: 28px;
  height: 28px;
}

.quote-result h3 {
  max-width: 520px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 550;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.quote-result > p:not(.eyebrow) {
  max-width: 510px;
  margin: 17px auto 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
}

.result-summary {
  margin: 28px 0 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.1);
  text-align: left;
}

.result-summary__head {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.icon-button svg {
  width: 16px;
  height: 16px;
}

.result-summary dl,
.result-summary #result-summary {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
}

.result-summary dl > div,
#result-summary > div {
  min-width: 0;
}

.result-summary dt {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-summary dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.result-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.text-button {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Coverages */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 47, 0.1);
  border-radius: var(--radius);
  background: rgba(7, 31, 47, 0.1);
  box-shadow: var(--shadow-sm);
}

.coverage-card {
  position: relative;
  min-height: 285px;
  padding: 31px;
  background: rgba(255, 255, 255, 0.72);
  transition: background 0.3s ease;
}

.coverage-card:hover {
  background: var(--white);
}

.coverage-card--signal {
  background: var(--navy);
  color: var(--white);
}

.coverage-card--signal:hover {
  background: var(--navy-2);
}

.coverage-card__index {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(7, 31, 47, 0.34);
  font-family: var(--font-mono);
  font-size: 9px;
}

.coverage-card--signal .coverage-card__index {
  color: rgba(255, 255, 255, 0.32);
}

.coverage-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 31, 47, 0.12);
  border-radius: 50%;
  color: var(--sea);
}

.coverage-card__icon svg {
  width: 23px;
  height: 23px;
}

.coverage-card--signal .coverage-card__icon {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--aqua);
}

.coverage-card h3 {
  margin: 44px 0 12px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.coverage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.coverage-card--signal p {
  color: rgba(255, 255, 255, 0.58);
}

.coverage-note {
  margin: 25px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: rgba(7, 31, 47, 0.54);
  font-size: 11px;
  text-align: center;
}

.coverage-note svg {
  width: 17px;
  height: 17px;
  color: var(--signal-dark);
}

/* Process */
.process-timeline {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-timeline li {
  position: relative;
  min-height: 270px;
  padding: 25px 25px 25px 0;
  border-top: 1px solid var(--line);
}

.process-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
}

.process-timeline__number {
  color: var(--signal-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.process-timeline h3 {
  margin: 75px 0 11px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.process-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

/* AI continuity demo */
.agent-section {
  overflow: hidden;
}

.agent-glow {
  position: absolute;
  width: 780px;
  height: 780px;
  top: -300px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 138, 155, 0.22), transparent 67%);
  pointer-events: none;
}

.agent-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(530px, 1.22fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.agent-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.75;
}

.agent-principle {
  margin-top: 29px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 650;
}

.agent-console {
  position: relative;
  min-height: 570px;
}

.console-window {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
}

.console-window--chat {
  width: min(100%, 570px);
  margin-left: auto;
  padding: 0 22px 24px;
}

.console-window__top {
  height: 57px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-window__top > div {
  display: flex;
  gap: 5px;
}

.console-window__top > div span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.console-window__top .encrypted {
  justify-self: end;
  color: var(--green);
  font-size: 9px;
}

.chat-thread {
  padding-top: 24px;
  display: grid;
  gap: 15px;
}

.chat-bubble {
  max-width: 82%;
  padding: 15px;
  border-radius: 15px;
}

.chat-bubble p {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
}

.chat-bubble--user {
  justify-self: end;
  border-bottom-right-radius: 4px;
  background: rgba(131, 200, 202, 0.17);
  color: rgba(255, 255, 255, 0.76);
}

.chat-bubble--agent {
  justify-self: start;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  border-bottom-left-radius: 4px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
}

.mini-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
}

.mini-mark svg {
  width: 15px;
  height: 15px;
}

.voice-wave {
  height: 24px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.voice-wave i {
  width: 2px;
  border-radius: 4px;
  background: var(--aqua);
  animation: voice 1.4s ease-in-out infinite alternate;
}

.voice-wave i:nth-child(1), .voice-wave i:nth-child(6) { height: 7px; }
.voice-wave i:nth-child(2), .voice-wave i:nth-child(5) { height: 15px; animation-delay: .15s; }
.voice-wave i:nth-child(3), .voice-wave i:nth-child(4) { height: 22px; animation-delay: .3s; }

@keyframes voice {
  to { transform: scaleY(.45); opacity: .55; }
}

.context-bridge {
  position: absolute;
  z-index: 2;
  right: 130px;
  top: 315px;
  width: 115px;
  height: 75px;
  display: grid;
  grid-template-columns: 10px 1fr 10px;
  align-items: center;
}

.context-bridge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(131, 200, 202, 0.1);
}

.context-bridge i {
  height: 1px;
  background: linear-gradient(90deg, var(--aqua), var(--signal));
}

.context-bridge span:last-child {
  background: var(--signal);
  box-shadow: 0 0 0 6px rgba(226, 162, 74, 0.1);
}

.console-window--call {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(88%, 480px);
  padding: 28px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 22px;
  background: rgba(11, 45, 65, 0.92);
}

.call-avatar {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
}

.call-avatar svg {
  width: 25px;
  height: 25px;
}

.call-rings,
.call-rings::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(226, 162, 74, 0.36);
  border-radius: 50%;
  animation: ring 2.4s ease-out infinite;
}

.call-rings::before {
  inset: -9px;
  animation-delay: 1.2s;
}

@keyframes ring {
  0% { transform: scale(.78); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: scale(1.42); opacity: 0; }
}

.mono-label {
  color: var(--aqua);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-window--call h3 {
  margin: 5px 0 7px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 550;
  letter-spacing: -0.03em;
}

.console-window--call p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1.55;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.trust-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.trust-card__icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-soft);
  color: var(--navy);
  font-weight: 800;
}

.trust-card__icon svg {
  width: 20px;
  height: 20px;
}

.trust-card h3 {
  margin: 35px 0 10px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.68;
}

.regulatory-disclosure {
  margin-top: 18px;
  padding: 23px 26px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 15px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  line-height: 1.65;
}

.regulatory-disclosure svg {
  width: 24px;
  height: 24px;
  color: var(--aqua);
}

.regulatory-disclosure p {
  margin: 0;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(500px, 1.42fr);
  gap: clamp(55px, 10vw, 150px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.text-link {
  width: max-content;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--signal-dark);
  font-size: 12px;
  font-weight: 750;
}

.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 22px;
  list-style: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 550;
  line-height: 1.25;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i,
.faq-list summary i::after {
  width: 17px;
  height: 1px;
  display: block;
  background: var(--signal-dark);
  transition: transform 0.25s ease;
}

.faq-list summary i::after {
  content: "";
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > div {
  overflow: hidden;
}

.faq-list details p {
  max-width: 680px;
  margin: -5px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

/* CTA */
.final-cta {
  position: relative;
  padding-block: clamp(110px, 13vw, 190px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(49, 138, 155, 0.28), transparent 34%),
    linear-gradient(135deg, #0b2d41, #061723 70%);
  color: var(--white);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.final-cta__watermark {
  position: absolute;
  inset: auto 0 -0.22em;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(110px, 22vw, 340px);
  font-weight: 800;
  line-height: 0.75;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.final-cta__content {
  position: relative;
  max-width: 860px;
}

.final-cta__content .eyebrow {
  display: flex;
  justify-content: center;
}

.final-cta__content > p:not(.eyebrow) {
  max-width: 630px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.7;
}

.final-cta__actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer */
.site-footer {
  padding-block: 74px 28px;
  background: #04131d;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 0.75fr);
  gap: 55px;
}

.brand--footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 240px;
  margin: 20px 0 0;
  font-size: 12px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h3 {
  margin: 5px 0 10px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-language {
  width: max-content;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-language:hover {
  color: var(--white);
}

.footer-language {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-language svg {
  width: 14px;
  height: 14px;
}

.footer-legal {
  margin-top: 65px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  line-height: 1.6;
}

.footer-legal p {
  max-width: 790px;
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 160;
  right: 22px;
  bottom: 22px;
  min-height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #20b874;
  color: var(--white);
  box-shadow: 0 15px 35px rgba(7, 25, 36, 0.25);
  font-size: 11px;
  font-weight: 750;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(7, 25, 36, 0.32);
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
}

/* Dialog and toast */
.callback-dialog {
  width: min(560px, calc(100vw - 32px));
  max-height: min(780px, calc(100dvh - 32px));
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 25px;
  background: transparent;
  color: var(--text);
}

.callback-dialog::backdrop {
  background: rgba(2, 14, 22, 0.75);
  backdrop-filter: blur(8px);
}

.dialog-card {
  position: relative;
  padding: clamp(28px, 5vw, 44px);
  overflow-y: auto;
  max-height: min(780px, calc(100dvh - 32px));
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.dialog-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 550;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.dialog-card > p:not(.eyebrow):not(.field-error) {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.dialog-card .field > span {
  color: var(--text);
}

.dialog-card .field input,
.dialog-card .field select {
  border-color: var(--line);
  background: var(--white);
  color: var(--text);
}

.dialog-card .field input::placeholder {
  color: #94a1a7;
}

.dialog-card .field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
}

.dialog-card .consent-row {
  margin-block: 16px;
  color: var(--muted);
}

.dialog-card .checkbox-ui {
  border-color: var(--line);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 31, 47, 0.06);
  color: var(--ink);
}

.dialog-close svg {
  width: 18px;
  height: 18px;
}

.toast {
  position: fixed;
  z-index: 400;
  left: 50%;
  bottom: 28px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 17px;
  transform: translate(-50%, 25px);
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  font-size: 11px;
  font-weight: 700;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.noscript {
  position: fixed;
  z-index: 500;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px;
  border-radius: 10px;
  background: var(--signal);
  color: var(--ink);
  text-align: center;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  position: sticky;
  z-index: 10;
  top: 0;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(14px);
}

.legal-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-header .brand {
  color: var(--ink);
}

.legal-header .language-picker {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.legal-main {
  padding-block: 90px 120px;
}

.legal-shell {
  width: min(840px, calc(100vw - 48px));
  margin-inline: auto;
}

.legal-back {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--signal-dark);
  font-size: 12px;
  font-weight: 750;
}

.legal-back svg {
  width: 17px;
  height: 17px;
  transform: rotate(180deg);
}

.legal-article {
  margin-top: 50px;
}

.legal-article h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-updated {
  margin: 18px 0 55px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-article h2 {
  margin: 46px 0 12px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.legal-article p,
.legal-article li {
  color: #4f6672;
  font-size: 14px;
  line-height: 1.78;
}

.legal-article ul {
  padding-left: 22px;
}

.legal-note {
  margin: 36px 0;
  padding: 21px 23px;
  border-left: 3px solid var(--signal);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Breakpoints */
@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero__copy {
    width: min(780px, 86vw);
  }

  .quote-layout,
  .agent-layout {
    grid-template-columns: 1fr;
  }

  .quote-intro,
  .faq-intro {
    position: static;
  }

  .quote-intro {
    max-width: 720px;
  }

  .agent-copy {
    max-width: 720px;
  }

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

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 18px;
  }

  .faq-layout {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .site-header {
    height: 74px;
  }

  .nav-shell {
    width: calc(100vw - 32px);
  }

  .brand__word {
    font-size: 32px;
  }

  .language-picker {
    height: 40px;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero__content {
    min-height: max(720px, 100svh);
    padding-block: 135px 150px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(46px, 11vw, 72px);
  }

  .hero__subtitle {
    max-width: 600px;
  }

  .hero__channel-rail {
    right: 0;
    bottom: 76px;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .hero__scroll {
    display: none;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 23px;
  }

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

  .channel-card {
    min-height: 300px;
  }

  .context-flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quote-layout {
    gap: 48px;
  }

  .quote-panel {
    padding: 28px;
  }

  .coverage-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .coverage-card,
  .trust-card {
    min-height: auto;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline li {
    min-height: 0;
    padding: 26px 0;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .process-timeline li:not(:last-child)::after {
    display: none;
  }

  .process-timeline h3 {
    margin: 0 0 8px;
  }

  .agent-console {
    min-height: 560px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  :root {
    --container: calc(100vw - 28px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .nav-shell {
    width: calc(100vw - 28px);
    gap: 10px;
  }

  .brand__word {
    font-size: 30px;
  }

  .language-picker > svg:first-child {
    display: none;
  }

  .language-picker {
    padding-inline: 9px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .mobile-menu {
    padding: 18px;
  }

  .hero {
    min-height: max(700px, 100svh);
  }

  .hero__fallback {
    object-position: 61% center;
  }

  .hero__scrim {
    background:
      linear-gradient(90deg, rgba(3, 18, 28, 0.8) 0%, rgba(3, 18, 28, 0.5) 70%, rgba(3, 18, 28, 0.25) 100%),
      linear-gradient(180deg, rgba(3, 17, 26, 0.42) 0%, rgba(3, 17, 26, 0.05) 32%, rgba(3, 17, 26, 0.38) 66%, rgba(3, 17, 26, 0.92) 100%);
  }

  .hero__content {
    min-height: max(700px, 100svh);
    padding-block: 112px 142px;
    justify-content: flex-end;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    font-size: clamp(40px, 12.8vw, 58px);
    line-height: 0.98;
  }

  .hero__subtitle {
    margin-top: 19px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero__actions {
    margin-top: 25px;
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__micro {
    margin-top: 15px;
    font-size: 10px;
  }

  .hero__channel-rail {
    bottom: 26px;
    gap: 9px;
    font-size: 8px;
    white-space: nowrap;
  }

  .channel-rail__line {
    width: 16px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .quote-intro h2,
  .agent-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(37px, 11vw, 50px);
  }

  .section-heading__body,
  .section-heading--center > p:last-child {
    font-size: 14px;
  }

  .channel-card {
    min-height: 285px;
    padding: 25px;
  }

  .channel-card h3 {
    margin-top: 45px;
  }

  .pill {
    left: 25px;
    bottom: 24px;
  }

  .context-flow {
    padding: 22px;
  }

  .context-flow ol {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .context-flow li:not(:last-child)::after {
    display: none;
  }

  .quote-layout {
    width: 100%;
  }

  .quote-intro {
    width: var(--container);
    margin-inline: auto;
  }

  .quote-panel {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding: 29px 14px 34px;
  }

  .quote-progress__steps {
    font-size: 7px;
  }

  .quote-step {
    padding-top: 34px;
  }

  .quote-step__heading {
    grid-template-columns: 29px 1fr;
  }

  .quote-step__heading h3 {
    font-size: 26px;
  }

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

  .choice-grid--compact,
  .choice-grid--channels,
  .form-row,
  .form-row--value,
  .result-actions,
  .result-summary dl,
  .result-summary #result-summary {
    grid-template-columns: 1fr;
  }

  .field--small,
  .field--currency {
    width: 100%;
  }

  .quote-actions {
    align-items: stretch;
  }

  .quote-actions .button {
    min-width: 0;
    padding-inline: 16px;
  }

  .quote-result h3 {
    font-size: 32px;
  }

  .coverage-card {
    padding: 26px;
  }

  .agent-console {
    min-height: 590px;
  }

  .console-window--chat {
    padding-inline: 14px;
  }

  .chat-bubble {
    max-width: 92%;
  }

  .context-bridge {
    top: 323px;
    right: 52px;
    width: 80px;
  }

  .console-window--call {
    width: 95%;
    padding: 22px;
    grid-template-columns: 55px 1fr;
    gap: 15px;
  }

  .call-avatar {
    width: 52px;
    height: 52px;
  }

  .console-window--call h3 {
    font-size: 20px;
  }

  .trust-card {
    padding: 24px;
  }

  .faq-list summary {
    min-height: 79px;
    font-size: 19px;
  }

  .final-cta__actions {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 49px;
    height: 49px;
    min-height: 49px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }

  .dialog-card {
    padding: 35px 20px 24px;
  }

  .dialog-card h2 {
    font-size: 35px;
  }

  .legal-shell {
    width: calc(100vw - 32px);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__ocean {
    display: none;
  }
}

@media print {
  .site-header,
  .floating-whatsapp,
  .scroll-progress,
  .hero__scroll,
  .final-cta,
  .site-footer {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}

.legal-peer {
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-peer .text-link {
  margin-top: 0;
}
