/* ===========================
   OpenBlue Cuenca — v6
   Zanzibar DNA: asymmetry, depth,
   generous space, heavy type, restraint
   =========================== */

:root {
  --navy: #0c2340;
  --navy-deep: #081829;
  --cyan: #06b6d4;
  --cyan-soft: #67e8f9;
  --blue-pale: #cce8f0;
  --white: #ffffff;
  --green: #25D366;
  --font-body: 'Figtree', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

/* ---- RESET ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- TAGS ---- */
.section-tag,
.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.tag--light { color: var(--cyan-soft); }

/* ---- MESH GRADIENTS ---- */
.mesh {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.mesh--1 { width: 600px; height: 600px; background: rgba(6,182,212,0.15); filter: blur(160px); top: -20%; left: 55%; }
.mesh--2 { width: 500px; height: 500px; background: rgba(103,232,249,0.1); filter: blur(140px); bottom: -10%; left: -10%; }
.mesh--3 { width: 350px; height: 350px; background: rgba(6,182,212,0.08); filter: blur(120px); top: 40%; right: -5%; }
.mesh--4 { width: 500px; height: 500px; background: rgba(6,182,212,0.12); filter: blur(150px); top: -15%; right: -10%; }
.mesh--5 { width: 400px; height: 400px; background: rgba(103,232,249,0.08); filter: blur(130px); bottom: -10%; left: 5%; }
.mesh--6 { width: 500px; height: 500px; background: rgba(6,182,212,0.1); filter: blur(140px); top: -20%; left: -5%; }
.mesh--7 { width: 400px; height: 400px; background: rgba(103,232,249,0.08); filter: blur(120px); bottom: -15%; right: -5%; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn--accent { background: var(--cyan); color: var(--white); }
.btn--accent:hover { box-shadow: 0 12px 32px rgba(6,182,212,0.35); }

.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { box-shadow: 0 12px 32px rgba(19,45,79,0.25); }

.btn--glass {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(255,255,255,0.18); }

/* =======================
   HERO — 5 layers deep
   ======================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right,
    rgba(8,24,41,0.88) 0%,
    rgba(12,35,64,0.75) 35%,
    rgba(12,35,64,0.5) 65%,
    rgba(12,35,64,0.35) 100%
  );
}

.hero__mesh {
  position: absolute; inset: 0; z-index: 2;
  overflow: hidden; pointer-events: none;
}

.hero__grid {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 6rem 0 4rem;
}

.hero__logo {
  max-width: 220px;
  margin-bottom: 2rem;
  margin-left: 0;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  display: block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__intro {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--cyan-soft);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero__pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: rgba(8,24,41,0.62);
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-ticker__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: heroTicker 34s linear infinite;
}

.hero-ticker__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
}

.hero-ticker__item {
  display: inline-block;
  white-space: nowrap;
  padding: 1.08rem 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cyan-soft);
}

.hero-ticker__item::after {
  content: "•";
  display: inline-block;
  margin-left: 8rem;
  margin-right: 8rem;
  color: rgba(103,232,249,0.9);
}

@keyframes heroTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.glass-pill {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
}

.glass-pill svg {
  color: var(--cyan-soft);
  flex-shrink: 0;
  align-self: center;
}

.glass-pill__big {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.glass-pill__sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.glass-card__icon { color: var(--cyan-soft); margin-bottom: 0.25rem; }

.glass-card__big {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.glass-card__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* =======================
   STEPS — 3 color blocks
   ======================= */
.steps { display: grid; grid-template-columns: 1fr; }

.step-block {
  padding: 4.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.step-block--1 { background: #85c5d4; color: var(--white); }
.step-block--2 { background: var(--cyan); color: var(--white); }
.step-block--3 { background: #0891b2; color: var(--white); }

.step-block__bg-icon {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
}
.step-block--1 .step-block__bg-icon { color: var(--white); }
.step-block--2 .step-block__bg-icon { color: var(--white); }
.step-block--3 .step-block__bg-icon { color: var(--white); }

.step-block__num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--navy-deep);
  opacity: 0.7;
  display: block;
  margin-bottom: 1rem;
}

.step-block h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.step-block p {
  opacity: 0.7;
  font-size: 1.15rem;
  max-width: 280px;
  line-height: 1.2;
}

/* =======================
   PRECIOS — dark, asymmetric
   ======================= */
.s-precios {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: 8rem 0;
  overflow: hidden;
}

.s-precios__mesh {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}

.s-precios__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

.s-precios__text h2 { color: var(--white); }

.s-precios__text p {
  color: rgba(255,255,255,0.5);
  max-width: 360px;
  font-size: 1.05rem;
}

.s-precios__cards {
  max-width: 420px;
}

.precio-glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: border-color 0.4s;
}
.precio-glass:hover { border-color: rgba(103,232,249,0.25); }

.precio-glass h3 {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan-soft);
  margin-bottom: 1.5rem;
}

.precio-glass__row {
  display: flex;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  gap: 1rem;
}

.precio-glass__row span:first-child {
  min-width: 50px;
  font-size: 1.05rem;
}

.precio-glass__row strong {
  margin-left: auto;
}

.precio-glass__time {
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  min-width: 55px;
  text-align: right;
}

.precio-glass__separator {
  margin-top: 1.5rem;
}
.precio-glass__row:last-child { border-bottom: none; }

.precio-glass__row span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
}

.precio-glass__row strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}


/* =======================
   VENDING
   ======================= */
.s-vending {
  padding: 8rem 0;
  background: var(--white);
}

.s-vending__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.s-vending__text p {
  color: rgba(19,45,79,0.6);
  max-width: 380px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.s-vending__card {
  background: rgba(19,45,79,0.04);
  border: 1px solid rgba(19,45,79,0.08);
  border-radius: 20px;
  padding: 2rem;
  max-width: 420px;
}

.s-vending__item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(19,45,79,0.08);
}
.s-vending__item:last-child { border-bottom: none; }

.s-vending__item svg {
  color: var(--cyan);
  flex-shrink: 0;
  align-self: center;
}

.s-vending__item span {
  font-size: 1.05rem;
  color: rgba(19,45,79,0.7);
}

/* =======================
   ASPIRACIÓN
   ======================= */
.s-aspiracion {
  padding: 8rem 0;
  background: var(--white);
}

.s-aspiracion__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.s-aspiracion__text p {
  color: rgba(19,45,79,0.6);
  max-width: 420px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.s-aspiracion__tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0891b2;
  background: rgba(6,182,212,0.13);
  border: 1px solid rgba(6,182,212,0.3);
}

.s-aspiracion__card {
  background: rgba(19,45,79,0.04);
  border: 1px solid rgba(19,45,79,0.08);
  border-radius: 20px;
  padding: 2rem;
  max-width: 520px;
}

.s-aspiracion__item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(19,45,79,0.08);
}

.s-aspiracion__item:last-child { border-bottom: none; }

.s-aspiracion__item svg {
  color: var(--cyan);
  flex-shrink: 0;
  align-self: center;
}

.s-aspiracion__item span {
  color: rgba(19,45,79,0.72);
  line-height: 1.5;
}

.s-aspiracion__item:last-child span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

/* =======================
   FOTO TRIO
   ======================= */
.foto-trio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  line-height: 0;
  margin: 0;
  padding: 0.6rem;
  background: var(--navy-deep);
}

.foto-trio + .s-ubicacion {
  margin-top: 0;
}

.foto-trio img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
  filter: saturate(0.88) contrast(0.92) brightness(0.88);
  cursor: zoom-in;
}

/* =======================
   LIGHTBOX
   ======================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4,12,20,0.88);
  padding: 1.5rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox__close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* =======================
   UBICACIÓN — dark
   ======================= */
.s-ubicacion {
  position: relative;
  padding: 8rem 0;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}

.s-ubicacion__mesh {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}

.s-ubicacion__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.s-ubicacion__info h2 {
  color: var(--white);
}

.s-ubicacion__address {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.s-ubicacion__hours {
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}

.s-ubicacion__mapa img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.s-ubicacion__credit {
  margin-top: 0.45rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

/* =======================
   FAQ — asymmetric 2-col
   ======================= */
.s-faq {
  padding: 4rem 0;
  background: var(--white);
}

.s-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.s-faq h2 {
  color: var(--cyan);
}

.faq__list { max-width: 640px; }

.faq__item {
  border-bottom: 1px solid rgba(19,45,79,0.08);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}
.faq__question:hover { color: var(--cyan); }

.faq__chevron {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  flex-shrink: 0;
  margin-left: 1rem;
  opacity: 0.25;
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--cyan);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1);
}

.faq__answer p {
  padding-bottom: 1.35rem;
  color: rgba(19,45,79,0.55);
  line-height: 1.7;
}

/* =======================
   CTA — dark, centered
   ======================= */
.s-cta {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.s-cta__mesh {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}

.s-cta__inner { position: relative; z-index: 1; }

.s-cta h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
}

.s-cta p {
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.s-cta__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.s-cta__email {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
  transition: color 0.3s;
}
.s-cta__email:hover { color: var(--white); }

/* =======================
   FOOTER
   ======================= */
.footer {
  background: #0891b2;
  color: rgba(255,255,255,0.5);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer__row a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer__row a:hover { color: var(--white); }

/* =======================
   WHATSAPP FLOAT
   ======================= */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem; right: 1.25rem;
  width: 56px; height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(52,168,83,0.35);
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* =======================
   COOKIE BANNER
   ======================= */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  max-width: 380px;
  width: calc(100% - 2rem);
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 1.25rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  z-index: 200;
  border-radius: 16px;
}
.cookie-banner.visible { display: flex; }
.cookie-banner a { color: var(--cyan-soft); }

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  white-space: nowrap;
}

/* =======================
   RESPONSIVE
   ======================= */
@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step-block { padding: 5.5rem 2.5rem; }
}

@media (min-width: 768px) {
  .container { padding: 0 3rem; }

  /* Hero */
  .hero__grid {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 0;
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero__content { margin-top: -5rem; }
  .hero-ticker__track span { font-size: 1.08rem; padding: 1rem 0; }

  /* Precios asymmetric */
  .s-precios__grid {
    grid-template-columns: 5fr 7fr;
    align-items: center;
    gap: 4rem;
  }

  /* Vending */
  .s-vending__grid { grid-template-columns: 5fr 7fr; align-items: center; gap: 4rem; }

  /* Aspiración */
  .s-aspiracion__grid { grid-template-columns: 5fr 7fr; align-items: center; gap: 4rem; }

  /* Foto trio */
  .foto-trio { grid-template-columns: repeat(4, 1fr); }
  .foto-trio img { height: 340px; }

  /* Ubicación */
  .s-ubicacion__grid { grid-template-columns: 5fr 7fr; align-items: center; gap: 4rem; }

  /* FAQ 4/8 split */
  .s-faq__grid {
    grid-template-columns: 4fr 8fr;
    gap: 4rem;
    align-items: center;
  }



  .cookie-banner { left: auto; right: 1.25rem; transform: none; width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ticker__track { animation: none; }
}

@media (min-width: 1024px) {
  .container { padding: 0 4rem; }
  .step-block { padding: 6rem 3rem; }
}

@media (max-width: 767px) {
  .hero__grid {
    padding: 5rem 0 3.25rem;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.2rem);
  }
  .hero__intro {
    font-size: 1rem;
  }
  .glass-pill__big {
    font-size: 0.95rem;
  }
  .glass-pill__sub {
    font-size: 0.74rem;
  }
  .s-precios,
  .s-vending,
  .s-aspiracion,
  .s-ubicacion {
    padding: 5rem 0;
  }
  .s-faq {
    padding: 3rem 0;
  }
  .s-cta {
    padding: 3.75rem 0;
  }
  .hero__pills { margin-bottom: 2.25rem; }
}

/* =======================
   FADE IN ON SCROLL
   ======================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =======================
   LEGAL PAGES
   ======================= */
.legal { padding: 4rem 0; background: var(--white); }

.legal h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.legal h2 { font-size: 1.15rem; margin-top: 2.5rem; margin-bottom: 0.5rem; }
.legal p { color: rgba(19,45,79,0.6); margin-bottom: 0.75rem; }

.legal__back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--cyan);
  font-weight: 600;
}

.legal__date {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: rgba(19,45,79,0.35);
}
