/* Tipografía: Nunito (Google Fonts, licencia SIL Open Font License).
   Se cargó desde index.html. Sustituye a una fuente comercial que no puede
   redistribuirse en un repositorio público. */

:root {
  --navy: #000c45;
  --black: #000000;
  --light-blue: #4da6bd;
  --action-blue: #318fe4;
  --dark-blue: #1b1e39;
  --lavender: #ded9ff;
  --white: #ffffff;
  --gray: #706f6f;
  --pale-green: #ddffc2;
  --purple: #7008ae;
  --soft-gray: #f4f6fa;
  --line: rgba(0, 12, 69, 0.14);
  --site-width: 1300px;
  --side-space: max(5vw, calc((100vw - var(--site-width)) / 2));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 22px 60px rgba(0, 12, 69, 0.1);
  interpolate-size: allow-keywords;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Nunito", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: 100;
  top: 0;
  right: 100%;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--light-blue), var(--action-blue), var(--purple), var(--pale-green));
  transform-origin: left;
  animation: reading-progress linear both;
  animation-timeline: scroll(root);
}

#top.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  scroll-margin-top: 0;
}

body,
button,
input,
select {
  font-family: "Nunito", "Segoe UI", Arial, sans-serif;
}

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

:focus-visible {
  outline: 3px solid var(--pale-green);
  outline-offset: 4px;
}

section,
footer,
[id] {
  scroll-margin-top: 100px;
}

.skip-link {
  position: fixed;
  z-index: 120;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--navy);
  background: var(--pale-green);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

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

.demo-bar {
  min-height: 34px;
  padding: 8px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-bar > span {
  animation: fade-down 0.6s var(--ease-out) both;
}

.demo-bar > span:last-child {
  animation-delay: 0.08s;
}

.demo-bar span:first-child {
  color: var(--pale-green);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(0, 12, 69, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--site-width), 90vw);
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand {
  width: 148px;
  flex: 0 0 auto;
}

.brand img {
  transition: transform 0.35s var(--ease-out), filter 0.35s ease;
  animation: fade-down 0.7s 0.08s var(--ease-out) both;
}

.brand:hover img {
  transform: scale(1.035);
  filter: drop-shadow(0 8px 18px rgba(77, 166, 189, 0.28));
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 38px);
  font-size: 14px;
}

.main-nav a {
  animation: fade-down 0.6s var(--ease-out) both;
}

.main-nav a:nth-child(1) { animation-delay: 0.12s; }
.main-nav a:nth-child(2) { animation-delay: 0.17s; }
.main-nav a:nth-child(3) { animation-delay: 0.22s; }
.main-nav a:nth-child(4) { animation-delay: 0.27s; }
.main-nav a:nth-child(5) { animation-delay: 0.32s; }

.main-nav a,
.login-link {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after,
.login-link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--pale-green);
  transition: right 0.25s ease;
}

.main-nav a:hover::after,
.login-link:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
}

.header-actions > * {
  animation: fade-down 0.6s 0.3s var(--ease-out) both;
}

.button {
  min-height: 56px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.3s ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -60%;
  bottom: -60%;
  left: -55%;
  width: 38%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(18deg);
  transition: left 0.55s var(--ease-out);
}

.button:hover::before {
  left: 125%;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.button span,
.product-card > a span,
.mobile-cta span {
  transition: transform 0.25s var(--ease-out);
}

.button:hover span,
.product-card > a:hover span,
.mobile-cta:hover span {
  transform: translate(3px, -2px);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.button-green {
  color: var(--navy);
  background: var(--pale-green);
}

.button-blue {
  color: var(--white);
  background: var(--action-blue);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle,
.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 38%, rgba(0, 0, 0, 0.12) 100%),
    url("assets/images/hero-vela.svg");
  background-size: cover;
  background-position: center;
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--light-blue), var(--action-blue), var(--purple), var(--pale-green));
  background-size: 200% 100%;
  animation: gradient-travel 8s linear infinite;
}

.hero-inner {
  width: min(var(--site-width), 90vw);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-copy {
  width: min(610px, 48%);
  padding: 90px 0 70px;
}

.hero-copy .eyebrow {
  animation: fade-up 0.7s 0.12s var(--ease-out) both;
}

.hero-copy h1 {
  animation: fade-up 0.9s 0.2s var(--ease-out) both;
}

.hero-lead {
  animation: fade-up 0.8s 0.34s var(--ease-out) both;
}

.hero-actions {
  animation: fade-up 0.8s 0.44s var(--ease-out) both;
}

.hero-note {
  animation: fade-up 0.8s 0.56s var(--ease-out) both;
}

.eyebrow {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 2px;
  background: currentColor;
  transform-origin: left;
  animation: line-grow 0.8s 0.35s var(--ease-out) both;
}

.eyebrow-blue {
  color: var(--action-blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(64px, 6.4vw, 104px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-note {
  margin-top: 62px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  line-height: 1.45;
}

.hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.hero-note strong {
  color: var(--white);
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pale-green);
  box-shadow: 0 0 0 7px rgba(221, 255, 194, 0.14);
  animation: status-pulse 2.8s ease-out infinite;
}

.trust-bar {
  position: relative;
  z-index: 4;
  width: min(var(--site-width), 90vw);
  margin: -28px auto 0;
  min-height: 142px;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  color: var(--navy);
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.trust-bar > div {
  min-width: 0;
  padding: 28px 2.6vw;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}

.trust-bar > div:hover {
  background: #f5f9fb;
  transform: translateY(-3px);
}

.trust-bar > .trust-intro:hover {
  background: var(--navy);
}

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

.trust-intro p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.trust-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--pale-green);
  border-radius: 50%;
  font-weight: 800;
}

.trust-item {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start !important;
}

.trust-item strong {
  color: var(--navy);
  font-size: 24px;
}

.trust-item:hover strong {
  color: var(--action-blue);
}

.trust-item span {
  max-width: 190px;
  color: var(--gray);
  font-size: 11px;
  line-height: 1.4;
}

.section {
  padding: 112px var(--side-space);
}

.section-heading {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: 10vw;
}

.section-heading h2,
.faq-heading h2,
.contact h2,
.presence h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 5.4vw, 82px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.section-heading h2 {
  text-wrap: balance;
}

.section-heading > p {
  margin: 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.65;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.intent-card {
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.intent-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0, 12, 69, 0.16);
}

.card-number {
  color: var(--light-blue);
  font-size: 12px;
  font-weight: 700;
}

.intent-symbol {
  width: 58px;
  height: 58px;
  margin: 36px 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--pale-green);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  transition: transform 0.45s var(--ease-out), color 0.3s ease, background 0.3s ease;
}

.intent-card:hover .intent-symbol {
  transform: rotate(10deg) scale(1.08);
}

.intent-card h3 {
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1.05;
}

.intent-card p {
  margin-bottom: 22px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
}

.intent-card:hover p {
  color: rgba(255, 255, 255, 0.65);
}

.card-arrow {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.card-arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 8px;
  background: currentColor;
  transition: width 0.35s var(--ease-out);
}

.intent-card:hover .card-arrow::after {
  width: 48px;
}

.intent-card:hover .card-arrow {
  border-color: rgba(255, 255, 255, 0.18);
}

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

.light-heading > p {
  color: rgba(255, 255, 255, 0.64);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-card {
  min-height: 530px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  color: var(--navy);
  overflow: hidden;
  border-radius: 8px 8px 42px 8px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.product-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.24);
}

.product-blue {
  background: #a9dbe8;
}

.product-purple {
  color: var(--white);
  background: var(--purple);
}

.product-lavender {
  background: var(--lavender);
}

.product-green {
  background: var(--pale-green);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-visual {
  min-height: 205px;
  margin: 18px -28px 22px;
  display: grid;
  place-items: center;
  position: relative;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  width: 176px;
  height: 176px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.2;
  transition: transform 0.9s var(--ease-out);
}

.product-visual::after {
  width: 130px;
  height: 130px;
  border-style: dashed;
}

.product-card:hover .product-visual::before {
  transform: rotate(35deg) scale(1.08);
}

.product-card:hover .product-visual::after {
  transform: rotate(-45deg);
}

.product-visual span {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 12, 69, 0.22);
  font-size: 35px;
  font-weight: 700;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}

.product-card:hover .product-visual span {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 26px 50px rgba(0, 12, 69, 0.3);
}

.product-purple .product-visual span {
  color: var(--navy);
  background: var(--pale-green);
}

.product-card h3 {
  margin-bottom: 11px;
  font-size: 30px;
  line-height: 1.05;
}

.product-card p {
  color: rgba(0, 12, 69, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.product-purple p {
  color: rgba(255, 255, 255, 0.7);
}

.product-card > a {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.product-card > a:hover {
  opacity: 0.72;
}

.conditions {
  margin-top: 26px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.conditions:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.34);
}

.conditions > span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--light-blue);
  border-radius: 50%;
  font-weight: 800;
}

.conditions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.conditions strong {
  color: var(--white);
}

.simulator {
  background:
    radial-gradient(circle at 8% 12%, rgba(77, 166, 189, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fafc, #eef2f8);
}

.simulator-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 9vw;
}

.simulator-heading h2 {
  max-width: 770px;
  margin-bottom: 0;
  font-size: clamp(54px, 5.5vw, 84px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.93;
  text-wrap: balance;
}

.simulator-heading > p {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.65;
}

.noscript-note {
  margin: 0 0 20px;
  padding: 13px 16px;
  color: var(--navy);
  background: var(--pale-green);
  border-radius: 6px;
  font-size: 12px;
}

.quote-app {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 12, 69, 0.08);
  border-radius: 12px 12px 64px 12px;
  box-shadow: 0 30px 80px rgba(0, 12, 69, 0.12);
}

.quote-controls {
  padding: clamp(30px, 4.3vw, 58px);
}

.quote-form-head {
  margin-bottom: 44px;
  padding-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.step-label {
  display: block;
  margin-bottom: 8px;
  color: var(--action-blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form-head h3 {
  margin: 0;
  font-size: 29px;
  line-height: 1;
}

.reset-quote {
  padding: 0 0 4px;
  color: var(--gray);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.25s var(--ease-out);
}

.reset-quote:hover {
  color: var(--action-blue);
  transform: translateY(-2px);
}

.control-group {
  margin-bottom: 38px;
}

.control-label {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.control-group label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.control-group label small {
  margin-left: 5px;
  color: var(--gray);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.value-field {
  height: 48px;
  min-width: 148px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 7px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.value-field:focus-within {
  background: var(--white);
  border-color: var(--action-blue);
  box-shadow: 0 0 0 4px rgba(49, 143, 228, 0.1);
}

.value-field input {
  width: 105px;
  color: var(--navy);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 19px;
  font-weight: 700;
  text-align: right;
}

.value-field.compact {
  min-width: 128px;
}

.value-field.compact input {
  width: 68px;
}

.value-field span {
  color: var(--gray);
  font-size: 11px;
}

.value-field > span:first-child {
  color: var(--action-blue);
  font-size: 15px;
  font-weight: 700;
}

.value-field input::-webkit-outer-spin-button,
.value-field input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.range-control {
  --range-progress: 0%;
  width: 100%;
  height: 5px;
  display: block;
  appearance: none;
  background: linear-gradient(
    90deg,
    var(--action-blue) 0 var(--range-progress),
    #dce2ec var(--range-progress) 100%
  );
  border-radius: 10px;
  cursor: pointer;
}

.range-control::-webkit-slider-thumb {
  width: 21px;
  height: 21px;
  appearance: none;
  background: var(--white);
  border: 6px solid var(--action-blue);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 12, 69, 0.18);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

.range-control:hover::-webkit-slider-thumb,
.range-control:focus::-webkit-slider-thumb {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(49, 143, 228, 0.3);
}

.range-control::-moz-range-thumb {
  width: 11px;
  height: 11px;
  background: var(--white);
  border: 6px solid var(--action-blue);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 12, 69, 0.18);
}

.range-bounds {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  color: #8a91a1;
  font-size: 9px;
}

.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.charge-control {
  margin: 6px 0 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f7f9fc;
  border: 1px solid rgba(0, 12, 69, 0.07);
  border-radius: 8px;
}

.charge-control p {
  max-width: 380px;
  margin: 5px 0 0;
  color: var(--gray);
  font-size: 10px;
  line-height: 1.4;
}

.charge-control .value-field {
  flex: 0 0 auto;
  background: var(--white);
}

.quote-result {
  position: relative;
  padding: clamp(32px, 4.4vw, 58px);
  display: flex;
  flex-direction: column;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(112, 8, 174, 0.72), transparent 32%),
    linear-gradient(145deg, var(--navy), #101532);
}

.quote-result::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--light-blue), var(--action-blue), var(--purple), var(--pale-green));
  background-size: 200% 100%;
  animation: gradient-travel 5s linear infinite;
}

.result-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-status i {
  width: 7px;
  height: 7px;
  background: var(--pale-green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(221, 255, 194, 0.1);
  animation: status-pulse 2.4s ease-out infinite;
}

.monthly-result {
  margin: 38px 0 36px;
}

.monthly-result > span,
.monthly-result > small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.monthly-result strong {
  display: block;
  margin: 8px 0 6px;
  font-size: clamp(45px, 4.4vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.value-updated {
  animation: result-pop 0.3s var(--ease-out);
}

.payment-composition {
  margin-bottom: 29px;
}

.composition-labels {
  margin-bottom: 11px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.composition-labels span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.composition-labels i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.principal-dot {
  background: var(--pale-green);
}

.interest-dot {
  background: var(--purple);
}

.composition-bar {
  height: 8px;
  display: flex;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.composition-bar span {
  height: 100%;
  transition: width 0.45s var(--ease-out);
}

#principal-bar {
  background: var(--pale-green);
}

#interest-bar {
  background: var(--purple);
}

.result-breakdown {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.result-breakdown > div {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.result-breakdown dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.result-breakdown dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.result-breakdown .total-row {
  min-height: 65px;
}

.total-row dt,
.total-row dd {
  color: var(--white);
  font-size: 15px;
}

.quote-cta {
  width: 100%;
  margin-top: 30px;
}

.quote-disclaimer {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.digital {
  min-height: 850px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 5vw;
  background: var(--soft-gray);
}

.digital-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(60px, 6.4vw, 98px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.digital-lead {
  max-width: 590px;
  margin-bottom: 35px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.6;
}

.feature-list {
  max-width: 650px;
  border-top: 1px solid var(--line);
}

.feature-list > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  border-bottom: 1px solid var(--line);
}

.feature-list > div > span {
  color: var(--action-blue);
  font-size: 11px;
  font-weight: 700;
}

.feature-list p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.5;
}

.feature-list strong {
  color: var(--navy);
  font-size: 15px;
}

.digital-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.phone-stage {
  min-height: 660px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy), #1e0640 55%, var(--purple));
  border-radius: 10px 10px 72px 10px;
  box-shadow: var(--shadow-soft);
}

.glow {
  position: absolute;
  width: 430px;
  height: 430px;
  background: var(--purple);
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.7;
  animation: glow-pulse 6s ease-in-out infinite alternate;
}

.phone {
  position: relative;
  z-index: 2;
  width: 300px;
  min-height: 575px;
  padding: 58px 24px 24px;
  color: var(--navy);
  background: #f7f7fb;
  border: 8px solid #0a0a0f;
  border-radius: 44px;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(-4deg);
  animation: phone-float 6s ease-in-out infinite;
}

.phone-camera {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 84px;
  height: 20px;
  background: #0a0a0f;
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone > img {
  width: 94px;
  margin-bottom: 24px;
  padding: 8px;
  background: var(--black);
}

.phone > p {
  margin-bottom: 2px;
  color: var(--gray);
  font-size: 12px;
}

.phone > h3 {
  margin-bottom: 22px;
  font-size: 29px;
}

.balance {
  min-height: 110px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--navy);
  border-radius: 16px;
}

.balance small {
  opacity: 0.7;
}

.balance strong {
  font-size: 27px;
}

.quick-actions {
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.quick-actions span {
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--lavender);
  border-radius: 13px;
  font-weight: 700;
  transition: transform 0.3s var(--ease-out), background 0.3s ease;
}

.quick-actions span:hover {
  background: var(--pale-green);
  transform: translateY(-4px);
}

.quick-actions small {
  font-size: 8px;
}

.debit-card {
  min-height: 112px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--navy);
  background: var(--pale-green);
  border-radius: 16px;
}

.family-stamp {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 25px;
  width: 180px;
  padding: 14px;
  background: var(--black);
  border-radius: 7px;
  transform: rotate(3deg);
  animation: stamp-float 7s ease-in-out infinite alternate;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.steps-grid article {
  min-height: 285px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s var(--ease-out);
}

.steps-grid article:hover {
  z-index: 2;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-7px);
}

.steps-grid article:hover p {
  color: rgba(255, 255, 255, 0.66);
}

.steps-grid article > span {
  color: var(--action-blue);
  font-size: 12px;
  font-weight: 700;
}

.steps-grid h3 {
  margin-top: auto;
  margin-bottom: 10px;
  font-size: 28px;
}

.steps-grid p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
}

.pending {
  margin: 20px 0 0;
  color: var(--gray);
  font-size: 11px;
  text-align: center;
}

.presence {
  width: min(var(--site-width), 90vw);
  margin: 0 auto 112px;
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  color: var(--white);
  background: var(--action-blue);
  overflow: hidden;
  border-radius: 10px 10px 72px 10px;
  box-shadow: var(--shadow-soft);
}

.presence-copy,
.presence-panel {
  padding: 85px 6vw;
}

.presence-copy {
  padding-right: 8vw;
}

.presence-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.6;
}

.presence-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px;
}

.presence-phone {
  display: flex;
  flex-direction: column;
  font-size: 22px;
  font-weight: 700;
}

.presence-phone small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.presence-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--navy);
  background: var(--lavender);
  transition: background 0.45s ease;
}

.presence:hover .presence-panel {
  background: #e7e4ff;
}

.quote-mark {
  color: var(--purple);
  font-size: 100px;
  font-weight: 700;
  line-height: 0.55;
  animation: quote-breathe 4s ease-in-out infinite alternate;
}

blockquote {
  margin: 24px 0;
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 700;
  line-height: 1.12;
}

.presence-panel small {
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
}

.faq-heading > p:not(.eyebrow) {
  margin: 34px 0 8px;
  color: var(--gray);
  font-size: 13px;
}

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

details {
  position: relative;
  padding: 0 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

details::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--action-blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.26s var(--ease-out);
}

details[open] {
  background: #f7f9fc;
  border-color: rgba(49, 143, 228, 0.22);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.7);
}

details[open]::before {
  transform: scaleY(1);
}

summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  transition: color 0.25s ease, padding-left 0.3s var(--ease-out);
}

summary:hover {
  color: var(--action-blue);
  padding-left: 8px;
}

details[open] summary {
  color: var(--action-blue);
}

summary::-webkit-details-marker {
  display: none;
}

summary i {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-style: normal;
  transition: transform 0.2s ease;
}

details[open] summary i {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  will-change: opacity, transform;
}

.faq-answer p {
  max-width: 680px;
  margin: -5px 55px 0 0;
  padding-bottom: 28px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 9vw;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--dark-blue));
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px 0 45px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.6;
}

.contact-channels {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-channels a {
  min-height: 105px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-channels small {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-channels strong {
  font-size: clamp(14px, 1.35vw, 20px);
  overflow-wrap: anywhere;
}

.contact-form {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--navy);
  background: var(--white);
  border-radius: 9px 9px 48px 9px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.22);
}

.form-heading {
  padding-bottom: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading strong {
  font-size: 24px;
}

.form-heading span {
  color: var(--gray);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 13px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease-out);
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--action-blue);
  box-shadow: 0 0 0 4px rgba(49, 143, 228, 0.12);
  outline: 0;
  transform: translateY(-1px);
}

.contact-form button {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--navy);
  background: var(--pale-green);
  border: 0;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 12, 69, 0.14);
}

.contact-form > small {
  color: var(--gray);
  font-size: 10px;
  text-align: center;
}

footer {
  padding: 70px var(--side-space) 28px;
  color: var(--white);
  background: var(--black);
}

.footer-main {
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 7vw;
}

.footer-brand > img:first-child {
  width: 170px;
}

.footer-family {
  width: 150px;
  margin-top: 30px;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-main strong {
  margin-bottom: 10px;
  color: var(--light-blue);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-main a {
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

.footer-main a:hover {
  color: var(--white);
  transform: translateX(4px);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(221, 255, 194, 0.14); }
  50% { box-shadow: 0 0 0 13px rgba(221, 255, 194, 0); }
}

@keyframes hero-breathe {
  from { background-position: 48% center; }
  to { background-position: 52% center; }
}

@keyframes gradient-travel {
  to { background-position: 200% center; }
}

@keyframes glow-pulse {
  from { transform: scale(0.92); opacity: 0.55; }
  to { transform: scale(1.12); opacity: 0.82; }
}

@keyframes phone-float {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-2.5deg) translateY(-12px); }
}

@keyframes stamp-float {
  from { transform: rotate(3deg) translateY(0); }
  to { transform: rotate(-1deg) translateY(-8px); }
}

@keyframes quote-breathe {
  from { transform: translateY(0); opacity: 0.75; }
  to { transform: translateY(-7px); opacity: 1; }
}

@keyframes reading-progress {
  from { right: 100%; }
  to { right: 0; }
}

@keyframes result-pop {
  0% { opacity: 0.55; transform: translateY(4px) scale(0.985); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes view-reveal {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@supports (animation-timeline: view()) {
  .section-heading > *,
  .simulator-heading > *,
  .quote-app,
  .intent-card,
  .product-card,
  .conditions,
  .digital-copy > *,
  .phone-stage,
  .steps-grid article,
  .presence-copy > *,
  .presence-panel > *,
  .faq-heading > *,
  .faq-list details,
  .contact-copy > *,
  .contact-form,
  .footer-main > div {
    animation-name: view-reveal;
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
  }

  .intent-card:nth-child(2),
  .product-card:nth-child(2),
  .steps-grid article:nth-child(2) {
    animation-range: entry 9% cover 34%;
  }

  .intent-card:nth-child(3),
  .product-card:nth-child(3),
  .steps-grid article:nth-child(3) {
    animation-range: entry 13% cover 38%;
  }

  .intent-card:nth-child(4),
  .product-card:nth-child(4) {
    animation-range: entry 17% cover 42%;
  }
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 24px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 680px;
    background-position: 40% center;
  }

  .hero-copy {
    width: 55%;
  }

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

  .trust-intro {
    grid-column: span 2;
  }

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

  .quote-app {
    grid-template-columns: 1fr;
  }

  .quote-result {
    min-height: 650px;
  }

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

  .digital-copy {
    max-width: 760px;
  }

  .phone-stage {
    min-height: 700px;
  }
}

@media (max-width: 760px) {
  :root {
    --side-space: 6vw;
  }

  body::before {
    height: 2px;
  }
  .demo-bar {
    justify-content: center;
    text-align: center;
  }

  .demo-bar span:first-child {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 125px;
  }

  .header-actions {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 7px;
    cursor: pointer;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
  }

  .menu-toggle:checked + .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-toggle:checked ~ .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    padding: 20px 5vw 25px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    color: var(--white);
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    animation: fade-down 0.35s var(--ease-out) both;
  }

  .hero {
    min-height: 790px;
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.10) 12%, rgba(0, 0, 0, 0.86) 82%),
      url("assets/images/hero-vela.svg");
    background-position: center top;
    animation: none;
  }

  .hero-inner {
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    padding: 330px 0 65px;
  }

  h1 {
    font-size: 61px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-note {
    margin-top: 36px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .trust-intro {
    grid-column: auto;
  }

  .trust-bar > div {
    min-height: 112px;
    padding: 24px 7vw;
  }

  .section {
    padding: 82px 6vw;
  }

  .section-heading {
    margin-bottom: 44px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .simulator-heading {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .simulator-heading h2 {
    font-size: 50px;
  }

  .quote-app {
    margin: 0 -6vw;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .quote-controls,
  .quote-result {
    padding: 36px 6vw;
  }

  .quote-form-head {
    align-items: flex-start;
  }

  .control-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .control-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .value-field,
  .value-field.compact {
    width: 100%;
  }

  .value-field input,
  .value-field.compact input {
    width: 100%;
    text-align: left;
  }

  .charge-control {
    align-items: stretch;
    flex-direction: column;
  }

  .charge-control .value-field {
    width: 100%;
  }

  .monthly-result strong {
    font-size: 50px;
  }

  .section-heading h2,
  .faq-heading h2,
  .contact h2,
  .presence h2 {
    font-size: 50px;
  }

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

  .intent-card {
    min-height: 330px;
  }

  .product-card {
    min-height: 500px;
  }

  .digital {
    gap: 55px;
  }

  .digital-copy h2 {
    font-size: 62px;
  }

  .digital-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-stage {
    min-height: 650px;
    margin: 0 -6vw;
    border-radius: 0;
  }

  .phone {
    width: 278px;
    transform: rotate(-2deg);
  }

  .family-stamp {
    right: 16px;
    bottom: 18px;
    width: 140px;
  }

  .presence {
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 82px;
    border-radius: 0;
    box-shadow: none;
  }

  .presence-copy,
  .presence-panel {
    padding: 78px 7vw;
  }

  .faq,
  .contact {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .contact-form {
    padding: 26px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    padding-bottom: 70px;
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    z-index: 70;
    right: 14px;
    bottom: 12px;
    left: 14px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--navy);
    background: var(--pale-green);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    font-size: 14px;
    font-weight: 700;
  }
}

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

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

  body::before {
    display: none;
  }
}
