/* ============================================
   STYLE.CSS — ILG Insurance
   Metodología: BEM (Block, Element, Modifier)
   Diseño institucional con animaciones GSAP
   ============================================ */

/* ============================================
   0. CUSTOM PROPERTIES
   ============================================ */
:root {
  --color-primary: #17953F;
  --color-primary-light: #1eb84e;
  --color-primary-dark: #0e7a30;
  --color-primary-glow: rgba(23, 149, 63, 0.35);
  --color-white: #FFFFFF;
  --color-heading: #0a2515;
  --color-text: #1e3a28;
  --color-text-muted: #5a7a64;
  --color-bg: #eef5f0;
  --color-dark: #0b1a10;
  --color-dark-soft: #132118;

  --font-primary: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   1. RESET
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ============================================
   2. HERO — ESTRUCTURA
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  overflow: hidden;
  background: var(--color-dark);
}

/* Hero con formulario a la derecha */
.hero--with-form {
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 5rem 1rem 2rem;
}

.hero__inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 0 1rem;
  flex: 0 0 auto;
}

.hero__left {
  position: relative;
}

.hero__form-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  min-width: 0;
}

.contact-form__container--hero {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__container--hero .contact-form__form {
  width: 100%;
  margin: 0;
  max-width: none;
  box-sizing: border-box;
}

/* Con formulario a la derecha, el contenido del hero va en flujo en la columna izquierda */
.hero--with-form .hero__content {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}

/* Estadísticas: franja ancha debajo de todo (texto + formulario), siempre al final del hero */
.hero--with-form .hero__stats {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  width: 100%;
  max-width: 100%;
  margin-top: 2.5rem;
  padding-top: 0;
  z-index: 6;
  flex-shrink: 0;
}

/* Sección 2: Camiones en Texas — fondo verde, sin logo */
.hero--green {
  background: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
}

.hero--green .hero__tag-text,
.hero--green .hero__title-small,
.hero--green .hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero--green .hero__title-big,
.hero--green .hero__title-accent {
  color: var(--color-white);
}

.hero--green .hero__stats-label {
  color: rgba(255, 255, 255, 0.9);
}

.hero--green .hero__scroll-text,
.hero--green .hero__scroll-line {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   3. CAPA 1 — IMAGEN DE FONDO
   ============================================ */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  will-change: transform;
  filter: brightness(0.5);
}

/* ============================================
   4. CAPA 2 — OVERLAY OSCURO CON GRADIENTE
   ============================================ */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(11, 26, 16, 0.92) 0%, rgba(11, 26, 16, 0.6) 50%, rgba(11, 26, 16, 0.75) 100%),
    linear-gradient(to right, rgba(11, 26, 16, 0.95) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================
   5. CAPA 3 — CANVAS PARTÍCULAS
   ============================================ */
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
}

/* ============================================
   6. CAPA 4 — LÍNEA DECORATIVA ACCENT
   ============================================ */
.hero__accent-line {
  position: absolute;
  z-index: 4;
  left: 6%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--color-primary) 20%,
    var(--color-primary) 80%,
    transparent 100%
  );
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}

/* Glow sutil en la línea */
.hero__accent-line::after {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  width: 9px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--color-primary-glow) 20%,
    var(--color-primary-glow) 80%,
    transparent 100%
  );
  filter: blur(4px);
}

/* ============================================
   LOGO — ESQUINA SUPERIOR IZQUIERDA
   ============================================ */
.hero__logo {
  position: absolute;
  z-index: 10;
  top: 2rem;
  left: 10%;
  display: block;
  line-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease;
}

.hero__logo:hover {
  opacity: 0.8;
}

.hero__logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   7. CAPA 5 — CONTENIDO PRINCIPAL
   ============================================ */
.hero__content {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 9%;
  transform: translateY(-50%);
  max-width: 620px;
  padding: 0 1rem;
}

/* --- Tag / Label superior --- */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  opacity: 0;
}

.hero__tag-line {
  width: 32px;
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
  display: block;
}

.hero__tag-text {
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary-light);
}

/* --- Título --- */
.hero__title {
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hero__title-line {
  overflow: hidden;
}

.hero__title-small {
  display: block;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  transform: translateY(130%);
}

.hero__title-big {
  display: block;
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  font-weight: var(--fw-black);
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 0.95;
  transform: translateY(100%);
}

.hero__title-accent {
  display: inline-block;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: var(--fw-black);
  color: var(--color-primary-light);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-top: 0.1em;
  transform: translateY(100%);
}

/* --- Subtítulo --- */
.hero__subtitle {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  max-width: 440px;
  opacity: 0;
}

/* --- Botones / Acciones --- */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

/* Botón base */
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: var(--fw-bold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

/* Primary */
.hero__btn--primary {
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 4px 24px rgba(23, 149, 63, 0.3);
}

.hero__btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(23, 149, 63, 0.45);
}

.hero__btn--primary:hover::before {
  opacity: 1;
}

.hero__btn--primary:active {
  transform: translateY(0);
}

.hero__btn-text {
  position: relative;
  z-index: 1;
}

.hero__btn-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: transform 0.35s var(--ease-spring);
}

.hero__btn--primary:hover .hero__btn-arrow {
  transform: translateX(4px);
}

/* Ghost */
.hero__btn--ghost {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__btn--ghost:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.hero__btn--ghost svg {
  flex-shrink: 0;
}

/* ============================================
   8. CAPA 6 — BARRA DE ESTADÍSTICAS
   ============================================ */
.hero__stats {
  position: absolute;
  z-index: 6;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.6rem 3rem;

  opacity: 0;
  transform: translateY(100%);
}

.hero__stats-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__stats-number {
  font-size: 2.8rem;
  font-weight: var(--fw-black);
  color: var(--color-white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  align-self: flex-end;
}

.hero__stats-plus {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary-light);
  line-height: 1;
  margin-right: 0.5rem;
}

.hero__stats-label {
  font-size: 0.7rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  margin-right: 0.5rem;
}

.hero__stats-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ============================================
   9. CAPA 7 — INDICADOR DE SCROLL
   ============================================ */
.hero__scroll {
  position: absolute;
  z-index: 6;
  right: 3rem;
  bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
}

.hero__scroll-text {
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  writing-mode: vertical-lr;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--color-primary), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   10. RESPONSIVE
   ============================================ */

/* Pantallas grandes */
@media (min-width: 1600px) {
  .hero__content {
    left: 12%;
    max-width: 700px;
  }

  .hero__stats {
    gap: 3.5rem;
    padding: 2rem 4rem;
  }

  .hero__scroll {
    right: 4rem;
    bottom: 7rem;
  }
}

/* Desktop estándar */
@media (min-width: 1400px) {
  .hero__content {
    left: 10%;
  }
}

/* Desktop pequeño / Laptop */
@media (max-width: 1200px) {
  .hero__content {
    left: 7%;
    max-width: 580px;
  }

  .hero__accent-line {
    left: 5%;
  }

  .hero__stats {
    gap: 2rem;
    padding: 1.5rem 2.5rem;
  }

  .hero__stats-number {
    font-size: 1.6rem;
  }

  .hero__stats-label {
    font-size: 0.68rem;
  }
}

/* Tablets landscape */
@media (max-width: 1100px) {
  .hero__content {
    left: 6%;
    max-width: 520px;
    padding: 0 1.5rem;
  }

  .hero__accent-line {
    left: 4%;
  }

  .hero__title-big {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
  }

  .hero__stats {
    gap: 1.5rem;
    padding: 1.4rem 2rem;
  }

  .hero__stats-number {
    font-size: 1.5rem;
  }

  .hero__scroll {
    right: 1.5rem;
    bottom: 5.5rem;
  }
}

/* iPad y tablets portrait */
@media (max-width: 860px) {
  .hero:not(.hero--with-form) {
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
    max-height: none;
  }

  .hero--with-form {
    padding: 5rem 0 3rem;
  }

  .hero--with-form .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero--with-form .hero__content {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    padding: 0 0.5rem;
  }

  .hero--with-form .hero__stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .contact-form__container--hero {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero__bg-image {
    object-position: center center;
    filter: brightness(0.35);
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(11, 26, 16, 0.85) 0%, rgba(11, 26, 16, 0.5) 50%, rgba(11, 26, 16, 0.85) 100%);
  }

  .hero__accent-line {
    display: none;
  }

  .hero__content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-55%);
    max-width: none;
    padding: 0 2rem;
    text-align: center;
  }

  .hero__tag {
    justify-content: center;
    margin-bottom: 1.6rem;
  }

  .hero__tag-line {
    width: 32px;
  }

  .hero__title {
    margin-bottom: 1.5rem;
  }

  .hero__title-big {
    font-size: clamp(3.5rem, 12vw, 5rem);
  }

  .hero__title-accent {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero__subtitle {
    margin-bottom: 2.2rem;
    max-width: 100%;
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .hero__btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .hero__btn--ghost {
    min-width: 0;
    padding: 0.65rem 1.4rem;
    font-size: 0.8rem;
  }

  .hero__stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 2rem;
    padding: 1.4rem 2rem;
  }

  .hero__stats-item {
    flex: 0 0 auto;
    min-width: 0;
  }

  .hero__stats-divider {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

  .hero__canvas {
    opacity: 0.25;
  }
}

/* Móviles */
@media (max-width: 580px) {
.section-tag{
  display: none!important;
}

  .hero__content {
    padding: 0 1.5rem;
    transform: translateY(-55%);
  }

  .hero__tag {
    margin-bottom: 1.4rem;
    gap: 0.8rem;
  }

  .hero__tag-line {
    display: none;
  }

  .hero__tag-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .hero__title {
    margin-bottom: 1.2rem;
  }

  .hero__title-small {
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    margin-bottom: 0.5rem;
    transform: translateY(150%);

  }

  .hero__title-big {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .hero__title-accent {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero__subtitle {
    font-size: clamp(0.85rem, 3vw, 1rem);
    margin-bottom: 2rem;
  }

  .hero__btn {
    max-width: 260px;
    padding: 0.7rem 1.3rem;
    font-size: 0.82rem;
  }

  .hero__btn--ghost {
    padding: 0.6rem 1.3rem;
    font-size: 0.78rem;
  }

  .hero__stats {
    gap: 1rem 1.5rem;
    padding: 1.3rem 1.5rem;
  }

  .hero__stats-number {
    font-size: 1.5rem;
  }

  .hero__stats-plus {
    font-size: 1rem;
  }

  .hero__stats-label {
    font-size: 0.6rem;
  }
}

/* Móviles pequeños */
@media (max-width: 380px) {
  .hero__content {
    padding: 0 1.2rem;
  }

  .hero__tag-text {
    font-size: 0.62rem;
  }

  .hero__title-big {
    font-size: clamp(2.8rem, 15vw, 3.8rem);
  }

  .hero__title-accent {
    font-size: clamp(1.6rem, 9vw, 2.5rem);
  }

  .hero__subtitle {
    font-size: 0.82rem;
  }

  .hero__btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.78rem;
    max-width: 240px;
  }

  .hero__stats {
    padding: 1.2rem 1rem;
    gap: 0.8rem 1rem;
  }

  .hero__stats-number {
    font-size: 1.3rem;
  }

  .hero__stats-plus {
    font-size: 0.9rem;
  }

  .hero__stats-label {
    font-size: 0.55rem;
  }
}

/* Landscape orientation en móviles */
@media (max-height: 500px) and (orientation: landscape) {
  .hero__content {
    transform: translateY(-50%);
    padding: 0 2rem;
    text-align: left;
  }

  .hero__tag {
    justify-content: flex-start;
    margin-bottom: 0.6rem;
  }

  .hero__title {
    margin-bottom: 0.6rem;
  }

  .hero__title-small {
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
  }

  .hero__title-big {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__title-accent {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }

  .hero__subtitle {
    margin-bottom: 1rem;
    font-size: 0.78rem;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .hero__btn {
    width: auto;
    max-width: none;
  }

  .hero__stats {
    padding: 0.8rem 1.5rem;
    gap: 0.8rem;
  }

  .hero__stats-number {
    font-size: 1.2rem;
  }

  .hero__stats-item {
    flex: 0 1 calc(25% - 0.6rem);
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__canvas,
  .hero__scroll,
  .hero__accent-line {
    display: none;
  }

  .hero__bg-image {
    transform: none;
  }

  .hero__tag,
  .hero__title-small,
  .hero__title-big,
  .hero__title-accent,
  .hero__subtitle,
  .hero__actions,
  .hero__stats,
  .hero__form-wrap {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ============================================================
   ============================================================
   SECCIONES DE CONTENIDO — ESTILOS
   ============================================================
   ============================================================ */

/* ============================================
   UTILIDADES COMPARTIDAS
   ============================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color-primary);
}

.section-tag--light {
  color: var(--color-primary-light);
}

.section-tag--light::before {
  background: var(--color-primary-light);
}

/* ============================================
   SECCIÓN 2 — ¿POR QUÉ ILG?
   ============================================ */
.why {
  padding: 7rem 0;
  background: var(--color-white);
  overflow: hidden;
}

.why__container {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why__image {
  position: relative;
}

.why__image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.why__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 5/6;
}

.why__image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
}

.why__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: var(--fw-black);
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.why__title span {
  color: var(--color-primary);
}

.why__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.why__list-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-top: 2px;
}

.why__list-icon svg {
  width: 100%;
  height: 100%;
}

.why__list-item strong {
  font-weight: var(--fw-bold);
  color: var(--color-heading);
}

/* ============================================
   SECCIÓN 3 — COBERTURAS
   ============================================ */
.coverages {
  padding: 7rem 0;
  background: var(--color-bg);
  overflow: hidden;
}

.coverages__container {
  width: 80%;
  margin: 0 auto;
}

.coverages__header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.coverages__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: var(--fw-black);
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.coverages__subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.coverages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.coverages__card {
  background: var(--color-white);
  border: 1px solid rgba(23, 149, 63, 0.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.coverages__card:hover {
  background: var(--color-white);
  border-color: rgba(23, 149, 63, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.coverages__card--highlight {
  grid-column: span 2;
  background: var(--color-white);
  border-color: rgba(23, 149, 63, 0.15);
}

.coverages__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 10px;
  background: rgba(23, 149, 63, 0.08);
  border-radius: 10px;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

.coverages__card-icon svg {
  width: 100%;
  height: 100%;
}

.coverages__card-title {
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--color-heading);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.coverages__card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   SECCIÓN 4 — ¿ESTE SERVICIO ES PARA TI?
   ============================================ */
.ideal {
  padding: 7rem 0;
  background: var(--color-white);
  overflow: hidden;
}

.ideal__container {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ideal__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: var(--fw-black);
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.ideal__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.ideal__list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}

.ideal__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: var(--color-primary);
  border-radius: 50%;
  color: var(--color-white);
}

.ideal__check svg {
  width: 100%;
  height: 100%;
}

.ideal__cta-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.ideal__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(23, 149, 63, 0.25);
}

.ideal__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(23, 149, 63, 0.4);
}

.ideal__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.ideal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 6/5;
}

/* ============================================
   SECCIÓN 5 — FORMULARIO DE CONTACTO
   ============================================ */
.contact-form {
  padding: 7rem 0;
  background: var(--color-dark);
  overflow: hidden;
}

.contact-form__container {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-form__container--hero {

  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-form__title{
  color: white;
}

.contact-form__title span {
  color: var(--color-primary);
}

.contact-form__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-form__benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__benefit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.contact-form__benefit svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* Form */
.contact-form__form {
  background: var(--color-bg);
  border: 1px solid rgba(23, 149, 63, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
  max-width: 550px;
  margin: 0 auto;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field--radio {
  margin-bottom: 1.5rem;
}

.contact-form__label {
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form__input,
.contact-form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-heading);
  background: var(--color-white);
  border: 1px solid rgba(10, 37, 21, 0.12);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__input::placeholder {
  color: rgba(10, 37, 21, 0.3);
}

.contact-form__input:focus,
.contact-form__select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(23, 149, 63, 0.1);
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(10,37,21,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--color-white);
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form__select option {
  background: var(--color-white);
  color: var(--color-heading);
}

/* Radio buttons */
.contact-form__radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.4rem;
}

.contact-form__radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
}

.contact-form__radio input {
  display: none;
}

.contact-form__radio-mark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10, 37, 21, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-form__radio-mark::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.contact-form__radio input:checked + .contact-form__radio-mark {
  border-color: var(--color-primary);
}

.contact-form__radio input:checked + .contact-form__radio-mark::after {
  transform: scale(1);
}

/* Submit */
.contact-form__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(23, 149, 63, 0.3);
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(23, 149, 63, 0.45);
}

.contact-form__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.8rem;
}

/* ============================================
   SECCIÓN 6 — COI 24/7
   ============================================ */
.coi {
  padding: 7rem 0;
  background: var(--color-bg);
  overflow: hidden;
}

.coi__container {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coi__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: var(--fw-black);
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.coi__title span {
  color: var(--color-primary);
}

.coi__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.coi__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.coi__highlight {
  font-size: 1.05rem;
  color: var(--color-text);
}

.coi__highlight strong {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.coi__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 6px;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(23, 149, 63, 0.25);
}

.coi__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(23, 149, 63, 0.4);
}

.coi__btn svg {
  flex-shrink: 0;
}

.coi__visual {
  border-radius: 12px;
  overflow: hidden;
}

.coi__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* ============================================
   SECCIÓN 7 — RESPALDO Y EXPERIENCIA
   ============================================ */
.experience {
  position: relative;
  padding: 6rem 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.experience__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.experience__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.experience__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(11, 26, 16, 0.85) 0%, rgba(11, 26, 16, 0.6) 100%);
}

.experience__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  text-align: center;
  padding: 0 2rem;
}

.experience__text {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.experience__text strong {
  color: var(--color-primary-light);
  font-weight: var(--fw-black);
}

/* ============================================
   SECCIÓN 8 — CONTACTO HUMANO
   ============================================ */
.human-contact {
  padding: 7rem 0;
  background: var(--color-white);
  overflow: hidden;
}

.human-contact__container {
  width: 80%;
  margin: 0 auto;
}

.human-contact__header {
  text-align: center;
  margin-bottom: 3rem;
}

.human-contact__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: var(--fw-black);
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.human-contact__desc {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.human-contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.human-contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border: 1px solid rgba(23, 149, 63, 0.08);
  border-radius: 12px;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.human-contact__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(23, 149, 63, 0.2);
}

.human-contact__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 12px;
  background: rgba(23, 149, 63, 0.08);
  border-radius: 50%;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

.human-contact__card-icon svg {
  width: 100%;
  height: 100%;
}

.human-contact__card-label {
  font-size: 0.72rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.human-contact__card-value {
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: var(--color-heading);
  line-height: 1.4;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2rem 0 1.6rem;
  background: var(--color-heading);
  border-top: 1px solid rgba(23, 149, 63, 0.12);
}

.footer__container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.footer__logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.footer__tagline {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 280px;
  line-height: 1.45;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.footer__link {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
  position: relative;
}

.footer__link:hover {
  color: var(--color-primary-light);
}

.footer__bottom {
  padding-top: 1rem;
  text-align: center;
}

.footer__copy {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.02em;
}


/* ============================================
   RESPONSIVE — SECCIONES DE CONTENIDO
   ============================================ */
@media (max-width: 860px) {
  /* --- WHY --- */
  .why__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why__image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .why__image-accent {
    display: none;
  }

  /* --- COBERTURAS --- */
  .coverages__grid {
    grid-template-columns: 1fr 1fr;
  }

  .coverages__card--highlight {
    grid-column: span 2;
  }

  /* --- IDEAL --- */
  .ideal__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ideal__image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
.ideal__check{
  background-color: transparent!important;
  color: var(--color-primary)!important;
}
  .ideal__content {
    text-align: center;
  }

  .ideal__content .section-tag {
    justify-content: center;
  }

  .ideal__list {
    align-items: center;
  }

  .ideal__list-item {
    justify-content: center;
  }

  .ideal__btn {
    margin: 0 auto;
  }

  /* --- FORMULARIO --- */
  .contact-form__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form__info {
    text-align: center;
  }

  .contact-form__info .section-tag {
    justify-content: center;
  }

  .contact-form__benefits {
    align-items: center;
  }

  /* --- COI --- */
  .coi__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .coi__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .coi__content {
    text-align: center;
  }

  .coi__content .section-tag {
    justify-content: center;
  }

  .coi__btn {
    margin: 0 auto;
  }

  /* --- CONTACTO HUMANO --- */
  .human-contact__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 580px) {
  .hero__logo {
 
    left: 50%;
    top: 50px;
    transform: translate(-50%, -50%)!important;
  }
  .why,
  .coverages,
  .ideal,
  .contact-form,
  .coi,
  .human-contact {
    padding: 4.5rem 0;
  }

  .why__container,
  .coverages__container,
  .ideal__container,
  .contact-form__container,
  .coi__container,
  .human-contact__container {
    width: 90%;
    padding: 0;
  }

  .coverages__grid {
    grid-template-columns: 1fr;
  }

  .coverages__card--highlight {
    grid-column: span 1;
  }

  .contact-form__form {
    padding: 1.5rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .experience {
    padding: 4rem 0;
    min-height: 240px;
  }

  .experience__text {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }

  .footer__left {
    align-items: center;
  }

  .footer__links {
    justify-content: center;
    gap: 1.2rem;
  }
  
}

/* ============================================
   PANTALLAS GRANDES — +1500px
   Textos y espaciado más generosos (solo >1500px)
   ============================================ */
@media (min-width: 1600px) {
  /* ----- HERO: letras y espacios más grandes solo aquí ----- */
  .hero__logo-img {
    height: 64px;
  }

  .hero__tag {
    margin-bottom: 2rem;
  }

  .hero__tag-line {
    width: 44px;
    height: 3px;
  }

  .hero__tag-text {
    font-size: 1rem;
    letter-spacing: 0.24em;
  }

  .hero__title {
    margin-bottom: 2rem;
  }

  .hero__title-small {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
  }

  .hero__title-big {
    font-size: clamp(5rem, 8vw, 8.5rem);
  }

  .hero__title-accent {
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    margin-top: 0.15em;
  }

  .hero__subtitle {
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: 2.5rem;
  }

  .hero__actions {
    gap: 1.2rem;
  }

  .hero__btn {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
    border-radius: 6px;
  }

  .hero__btn--ghost {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero--with-form .hero__inner {
    gap: 4rem;
  }

  .hero__stats {
    gap: 3rem;
    padding: 2rem 4rem;
  }
  .hero--with-form .hero__stats{
    position: absolute;
    bottom: 0;
  }
  .hero__inner{
    max-width: 80%!important;
  }
  .contact-form__container--hero{
    max-width:100%!important;
    width:100%!important;
  }
  .hero__stats-number {
    font-size: 2.2rem;
  }

  .hero__stats-plus {
    font-size: 1.4rem;
  }

  .hero__stats-label {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .hero__stats-divider {
    height: 42px;
  }

  .hero .contact-form__container--hero .contact-form__form {
    padding: 3rem;
    border-radius: 20px;

  }

  .hero .contact-form__container--hero .contact-form__row {
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .hero .contact-form__container--hero .contact-form__label {
    font-size: 0.9rem;
  }

  .hero .contact-form__container--hero .contact-form__input,
  .hero .contact-form__container--hero .contact-form__select {
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    border-radius: 10px;
  }

  .hero .contact-form__container--hero .contact-form__field--radio {
    margin-bottom: 1.75rem;
  }

  .hero .contact-form__container--hero .contact-form__radio {
    font-size: 1.02rem;
  }

  .hero .contact-form__container--hero .contact-form__radio-mark {
    width: 22px;
    height: 22px;
  }

  .hero .contact-form__container--hero .contact-form__radio-mark::after {
    width: 10px;
    height: 10px;
  }

  .hero .contact-form__container--hero .contact-form__submit {
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 10px;
  }

  .hero .contact-form__container--hero .contact-form__note {
    font-size: 0.85rem;
    margin-top: 1rem;
  }

  /* Secciones — más padding vertical */
  .why,
  .coverages,
  .ideal,
  .contact-form,
  .coi,
  .human-contact {
    padding: 9rem 0;
  }

  /* Títulos de sección más grandes */
  .why__title,
  .coverages__title,
  .ideal__title,
  .contact-form__title,
  .coi__title,
  .human-contact__title {
    font-size: 3rem;
  }

  /* Párrafos / descripciones */
  .why__desc,
  .coverages__subtitle,
  .contact-form__desc,
  .coi__desc,
  .human-contact__desc {
    font-size: 1.1rem;
  }

  /* Listas */
  .why__list-item,
  .ideal__list-item,
  .contact-form__benefit {
    font-size: 1.05rem;
  }

  /* Cards de coberturas */
  .coverages__card-title {
    font-size: 1.2rem;
  }

  .coverages__card-desc {
    font-size: 0.95rem;
  }

  /* Grid gaps más amplios */
  .why__container,
  .ideal__container,
  .coi__container {
    gap: 5rem;
  }

  .coverages__grid {
    gap: 2rem;
  }

  .contact-form__container {
    gap: 5rem;
  }

  /* Formulario — inputs más grandes */
  .form-group__input,
  .form-group__select {
    font-size: 1rem;
    padding: 0.95rem 1.1rem;
  }

  /* Botones de sección */
  .ideal__btn,
  .coi__btn,
  .contact-form__submit {
    font-size: 1rem;
    padding: 1rem 2.2rem;
  }

  /* COI highlights */
  .coi__highlight {
    font-size: 1.1rem;
  }

  /* Experience — texto principal */
  .experience__text {
    font-size: 2rem;
  }

  .experience {
    min-height: 420px;
  }

  /* Contacto humano cards */
  .human-contact__card {
    padding: 2.5rem 2rem;
  }

  .human-contact__card-value {
    font-size: 1.05rem;
  }

  /* Section tags */
  .section-tag {
    font-size: 0.82rem;
  }

  /* Footer */
  .footer__tagline {
    font-size: 0.82rem;
  }

  .footer__link {
    font-size: 0.82rem;
  }
}
