/* Fallback si WebGL no carga */
.hero-bg-fallback {
  background:
    radial-gradient(circle at 20% 30%, rgba(15, 174, 190, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(232, 134, 46, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(95, 224, 234, 0.12) 0%, transparent 55%),
    #03222B;
  animation: hero-drift 18s ease-in-out infinite alternate;
  transition: opacity 0.6s ease;
}

.hero-bg-fallback.is-hidden {
  opacity: 0;
}

@keyframes hero-drift {
  0% {
    transform: scale(1) translate(0, 0);
    filter: hue-rotate(0deg);
  }
  100% {
    transform: scale(1.08) translate(-2%, 1%);
    filter: hue-rotate(8deg);
  }
}

.hero-canvas {
  z-index: 0;
}

.hero-canvas canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Orbs atmosféricos */
.hero-orbs {
  z-index: 1;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(70px);
  opacity: 0.45;
  will-change: transform;
  animation: orb-float 16s ease-in-out infinite alternate;
}

.hero-orb-a {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: 8%;
  left: -6%;
  background: radial-gradient(circle, rgba(15, 174, 190, 0.55), transparent 70%);
}

.hero-orb-b {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  bottom: 10%;
  right: -4%;
  background: radial-gradient(circle, rgba(232, 134, 46, 0.4), transparent 70%);
  animation-delay: -7s;
  animation-duration: 20s;
}

.hero-orb-c {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  top: 42%;
  left: 48%;
  background: radial-gradient(circle, rgba(95, 224, 234, 0.28), transparent 70%);
  animation-delay: -3s;
  animation-duration: 14s;
}

@keyframes orb-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, -3%) scale(1.08); }
}

/* Entrada escalonada del hero */
.hero-enter {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-enter 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-enter-1 { animation-delay: 0.05s; }
.hero-enter-2 { animation-delay: 0.18s; }
.hero-enter-3 { animation-delay: 0.32s; }
.hero-enter-4 { animation-delay: 0.46s; }
.hero-enter-5 { animation-delay: 0.6s; }

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Campos de formulario nativos */
select,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: inherit;
}

/* Cabecera */
.site-header-nav {
  min-height: 4.75rem;
  gap: 1rem;
}

.site-header-brand {
  display: inline-flex;
  align-items: center;
  max-width: min(62vw, 15rem);
}

.site-header-logo {
  display: block;
  width: auto;
  height: 2.85rem;
  max-width: 100%;
  object-fit: contain;
}

.site-header-links {
  gap: 1.75rem;
}

.site-header-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #9edfe7;
  transition: color 0.2s ease;
}

.site-header-links a:hover {
  color: #fff;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border: 1px solid rgba(12, 66, 80, 0.9);
  border-radius: 999px;
  background: rgba(3, 34, 43, 0.55);
}

.lang-switch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: #9edfe7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch-link:hover {
  color: #fff;
}

.lang-switch-link.is-active {
  background: rgba(15, 174, 190, 0.22);
  color: #fff;
}

.lang-switch-mobile {
  margin: 0 0 0.75rem;
  width: fit-content;
}

.site-header-cta {
  border-radius: 0.8rem;
  background: #e8862e;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-header-cta:hover {
  background: #d4761f;
}

.site-header-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0.45rem;
  color: #fff;
  border-radius: 0.55rem;
}

@media (max-width: 767px) {
  .site-header-menu-btn {
    display: inline-flex;
  }
}

.site-header-mobile {
  display: none;
  background: rgba(3, 34, 43, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid #0c4250;
  padding: 1rem 1.5rem 1.25rem;
  gap: 0.15rem;
}

@media (max-width: 767px) {
  .site-header-mobile:not(.hidden) {
    display: grid;
  }
}

.site-header-mobile a {
  display: block;
  padding: 0.8rem 0.2rem;
  color: #9edfe7;
  font-weight: 500;
}

.site-header-mobile a:hover {
  color: #fff;
}

.site-header-mobile .site-header-cta {
  margin-top: 0.5rem;
  text-align: center;
  padding: 0.85rem 1rem;
}

#site-header.is-scrolled {
  background: rgba(3, 34, 43, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #0c4250;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

@media (min-width: 768px) {
  .site-header-nav {
    min-height: 5.5rem;
  }

  .site-header-brand {
    max-width: 17.5rem;
  }

  .site-header-logo {
    height: 3.35rem;
  }
}

@media (min-width: 1024px) {
  .site-header-brand {
    max-width: 19rem;
  }

  .site-header-logo {
    height: 3.6rem;
  }
}

/* Reveal más fluido */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Glow sutil en secciones */
#ventajas::before,
#servicios::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(15, 174, 190, 0.06), transparent 55%);
}

/* Menos trabajo de render fuera del viewport (PageSpeed) */
#ventajas,
#servicios,
#faq,
#contacto,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.hero-canvas.is-hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-fallback,
  .hero-orb,
  .hero-enter {
    animation: none !important;
  }

  .hero-enter {
    opacity: 1;
    transform: none;
  }

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

/* Footer */
.site-footer {
  position: relative;
  border-top: 1px solid #0c4250;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(15, 174, 190, 0.08), transparent 45%),
    #02181f;
}

.site-footer-inner {
  padding: 4rem 0 2rem;
}

/* Bloque GEO: Pregunta a la IA sobre Olipep */
.site-footer-ai {
  margin-bottom: 2.75rem;
  padding: 1.5rem 1.25rem 1.6rem;
  border: 1px solid rgba(12, 66, 80, 0.85);
  border-radius: 1.1rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(15, 174, 190, 0.12), transparent 55%),
    rgba(3, 34, 43, 0.55);
  text-align: center;
}

.site-footer-ai-title {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.site-footer-ai-lead {
  margin: 0.45rem auto 1.15rem;
  max-width: 36rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(158, 223, 231, 0.78);
}

.site-footer-ai-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.site-footer-ai-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 4.6rem;
  min-height: 48px;
  padding: 0.25rem;
  text-decoration: none;
  color: #9edfe7;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-ai-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(95, 224, 234, 0.28);
  background: linear-gradient(160deg, rgba(15, 174, 190, 0.22), rgba(3, 34, 43, 0.9));
  color: #5fe0ea;
  box-shadow: 0 10px 24px -18px rgba(15, 174, 190, 0.9);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer-ai-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.site-footer-ai-name {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-footer-ai-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.site-footer-ai-btn:hover .site-footer-ai-icon {
  border-color: rgba(232, 134, 46, 0.55);
  background: linear-gradient(160deg, rgba(232, 134, 46, 0.28), rgba(3, 34, 43, 0.92));
  color: #ffd2a8;
  transform: scale(1.04);
}

.site-footer-ai-btn:focus-visible {
  outline: 2px solid #5fe0ea;
  outline-offset: 3px;
  border-radius: 0.85rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem 2rem;
  align-items: start;
}

.site-footer-logo {
  display: inline-flex;
}

.site-footer-brand p {
  margin-top: 1rem;
  max-width: 18rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(158, 223, 231, 0.8);
}

.site-footer-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5fe0ea;
}

.site-footer-list {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.site-footer-list a,
.site-footer-list span {
  color: rgba(158, 223, 231, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.site-footer-list a:hover {
  color: #fff;
}

.site-footer-legal a {
  position: relative;
  display: inline-block;
  padding-left: 0.85rem;
}

.site-footer-legal a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #e8862e;
  opacity: 0.8;
}

.site-footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(12, 66, 80, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #5e96a1;
}

.site-footer-tag {
  color: rgba(94, 150, 161, 0.9);
}

@media (max-width: 960px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

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

  .site-footer-brand p {
    max-width: 32rem;
  }
}

@media (max-width: 640px) {
  .site-footer-inner {
    padding: 2.75rem 0 1.75rem;
  }

  .site-footer-ai {
    margin-bottom: 2rem;
    padding: 1.25rem 1rem 1.35rem;
  }

  .site-footer-ai-title {
    font-size: 0.98rem;
  }

  .site-footer-ai-lead {
    font-size: 0.78rem;
    margin-bottom: 1rem;
  }

  .site-footer-ai-list {
    gap: 0.55rem 0.45rem;
  }

  .site-footer-ai-btn {
    min-width: 3.8rem;
  }

  .site-footer-ai-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
    text-align: center;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(12, 66, 80, 0.55);
  }

  .site-footer-brand p {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .site-footer-col {
    min-width: 0;
  }

  .site-footer-col-legal {
    grid-column: 1 / -1;
  }

  .site-footer-title {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .site-footer-list {
    margin-top: 0.75rem;
    gap: 0.55rem;
    font-size: 0.86rem;
    justify-items: center;
  }

  .site-footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 1.1rem;
  }

  .site-footer-legal li {
    margin: 0;
  }

  .site-footer-legal a {
    padding-left: 0.75rem;
  }

  .site-footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.45rem;
    line-height: 1.45;
  }
}

@media (max-width: 380px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer-col-legal {
    grid-column: auto;
  }
}

/* Páginas legales */
.legal-body #site-header {
  background: rgba(3, 34, 43, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #0c4250;
}

.legal-page {
  position: relative;
  padding-top: 5.5rem;
  overflow: hidden;
}

.legal-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.legal-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.45;
}

.legal-orb-a {
  width: 40vw;
  height: 40vw;
  top: -8%;
  left: -10%;
  background: radial-gradient(circle, rgba(15, 174, 190, 0.4), transparent 70%);
}

.legal-orb-b {
  width: 32vw;
  height: 32vw;
  top: 30%;
  right: -8%;
  background: radial-gradient(circle, rgba(232, 134, 46, 0.28), transparent 70%);
}

.legal-hero,
.legal-layout {
  position: relative;
  z-index: 1;
}

.legal-hero {
  padding: 2.75rem 0 2rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5fe0ea;
  text-decoration: none;
}

.legal-back:hover {
  color: #fff;
}

.legal-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8862e;
}

.legal-title {
  max-width: 18ch;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 174, 190, 0.3);
  background: rgba(15, 174, 190, 0.08);
  font-size: 0.82rem;
  color: #9edfe7;
}

.legal-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #0faebe;
  box-shadow: 0 0 0 4px rgba(15, 174, 190, 0.15);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
  padding: 0.5rem 0 4.5rem;
}

.legal-aside {
  position: sticky;
  top: 6rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 174, 190, 0.22);
  background: rgba(6, 48, 64, 0.65);
  backdrop-filter: blur(14px);
}

.legal-aside-label {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5e96a1;
}

.legal-aside-nav {
  display: grid;
  gap: 0.35rem;
}

.legal-aside-nav a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.8rem;
  color: #9edfe7;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.legal-aside-nav a:hover {
  background: rgba(15, 174, 190, 0.1);
  color: #fff;
}

.legal-aside-nav a.is-active {
  background: linear-gradient(135deg, rgba(15, 174, 190, 0.22), rgba(232, 134, 46, 0.12));
  color: #fff;
  border: 1px solid rgba(15, 174, 190, 0.35);
}

.legal-aside-cta {
  display: block;
  margin-top: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.85rem;
  background: #e8862e;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.legal-aside-cta:hover {
  background: #d4761f;
  transform: translateY(-1px);
}

.legal-doc {
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 174, 190, 0.2);
  background:
    linear-gradient(180deg, rgba(6, 48, 64, 0.88), rgba(3, 34, 43, 0.92));
  box-shadow:
    0 0 0 1px rgba(95, 224, 234, 0.05),
    0 30px 70px -40px rgba(0, 0, 0, 0.65);
  padding: clamp(1.5rem, 3vw, 2.75rem);
}

.legal-prose {
  color: rgba(158, 223, 231, 0.92);
  font-size: 1.02rem;
  line-height: 1.8;
}

.legal-prose h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 2.1rem 0 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(12, 66, 80, 0.85);
}

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

.legal-prose h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: #5fe0ea;
  font-size: 1.02rem;
  font-weight: 600;
  margin: 1.5rem 0 0.65rem;
}

.legal-prose p {
  margin: 0 0 1rem;
}

.legal-prose ul {
  margin: 0 0 1.15rem;
  padding-left: 1.15rem;
}

.legal-prose li {
  margin-bottom: 0.5rem;
  padding-left: 0.2rem;
}

.legal-prose li::marker {
  color: #0faebe;
}

.legal-prose a {
  color: #5fe0ea;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-prose a:hover {
  color: #fff;
}

.legal-prose strong {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

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

@media (max-width: 560px) {
  .legal-aside-nav {
    grid-template-columns: 1fr;
  }

  .legal-title {
    max-width: none;
  }
}

/* Accesibilidad / SEO UX */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.65rem 1rem;
  border-radius: 0.6rem;
  background: #0faebe;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid rgba(12, 66, 80, 0.9);
  border-radius: 0.9rem;
  background: rgba(6, 48, 64, 0.55);
  padding: 0.2rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 0;
  font-weight: 600;
  color: #fff;
}

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

.faq-item summary::after {
  content: '+';
  float: right;
  color: #5fe0ea;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  margin: 0 0 1rem;
  color: #9edfe7;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Honeypot anti-spam: invisible para humanos */
#contact-form {
  position: relative;
}

.hp-trap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Consentimiento RGPD en formulario de contacto (letra pequeña, estilo “fine print”) */
.contact-privacy {
  margin-top: 0.1rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(12, 66, 80, 0.7);
  border-radius: 0.6rem;
  background: rgba(3, 34, 43, 0.35);
  font-size: 11px;
  line-height: 1.35;
  color: #6f9ea8;
}

.contact-privacy-title {
  margin: 0 0 0.3rem !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5e96a1 !important;
  line-height: 1.3 !important;
}

.contact-privacy-list {
  list-style: none;
  margin: 0 0 0.45rem;
  padding: 0;
  display: grid;
  gap: 0.12rem;
}

.contact-privacy-list li {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: #6f9ea8;
}

.contact-privacy-list strong {
  font-weight: 600;
  color: #7fb0ba;
}

.contact-privacy-list a,
.contact-consent a {
  color: #5fe0ea;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-privacy-list a:hover,
.contact-consent a:hover {
  color: #fff;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0 0 0.35rem;
  font-size: 11px;
  line-height: 1.35;
  color: #8ec4cd;
  cursor: pointer;
}

.contact-consent:last-child {
  margin-bottom: 0;
}

.contact-consent input {
  margin-top: 0.1rem;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  accent-color: #0faebe;
  cursor: pointer;
}

.contact-consent-optional {
  color: #5e96a1;
}
