/* ═══════════════════════════════════════════
   AXONTECH — CSS PRINCIPAL
   INGGROUP SpA · axontech.cl
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── RESET & BASE ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #060E1A;
  color: #C8DCEF;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── CSS VARIABLES ───────────────────────── */
:root {
  --blue-deep:   #0C447C;
  --blue-mid:    #185FA5;
  --blue-light:  #378ADD;
  --blue-pale:   #85B7EB;
  --teal:        #1D9E75;
  --teal-light:  #5DCAA5;
  --night:       #060E1A;
  --night-2:     #0A1929;
  --night-3:     #0C2340;
  --night-4:     #1A3A5C;
  --text-1:      #E6F1FB;
  --text-2:      #85B7EB;
  --text-3:      #4a7a9b;
  --text-4:      #1E3A52;
  --r-md:        8px;
  --r-lg:        14px;
  --r-xl:        20px;
  --shadow:      0 24px 60px rgba(0,0,0,0.5);
}

/* ── CONTAINER ───────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6,14,26,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--night-3);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(6,14,26,0.97); }
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 19px; font-weight: 600;
  color: var(--blue-pale);
  letter-spacing: -0.3px;
}
.logo-text em { font-style: normal; color: var(--teal-light); }
.nav-links {
  display: flex; gap: 32px;
}
.nav-links a {
  font-size: 13.5px; font-weight: 400;
  color: var(--text-3);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text-2); }
.btn-nav {
  padding: 8px 20px;
  background: transparent;
  border: 0.5px solid var(--blue-mid);
  border-radius: var(--r-md);
  color: var(--blue-pale);
  font-size: 13px; font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--night-3); border-color: var(--blue-light); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-2);
  transition: all 0.25s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--night-2);
  border-top: 0.5px solid var(--night-3);
  padding: 12px 0;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 32px;
  font-size: 15px; color: var(--text-3);
  border-bottom: 0.5px solid var(--night-3);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--text-2); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 120px 32px 80px;
  overflow: hidden;
  isolation: isolate;
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  padding: 0 16px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal);
  border: 0.5px solid rgba(29,158,117,0.3);
  background: rgba(29,158,117,0.06);
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text-1);
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-accent { color: var(--teal-light); }
.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-3);
  line-height: 1.65;
  max-width: 480px; margin: 0 auto 36px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.btn-primary {
  padding: 14px 32px;
  background: var(--blue-mid);
  color: var(--text-1);
  font-size: 14px; font-weight: 500;
  border-radius: var(--r-md);
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(24,95,165,0.35);
}
.btn-ghost {
  padding: 14px 32px;
  background: transparent;
  color: var(--blue-pale);
  font-size: 14px; font-weight: 400;
  border: 0.5px solid var(--blue-mid);
  border-radius: var(--r-md);
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--night-3); transform: translateY(-1px); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
  animation: fadeUp 0.8s 0.8s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--blue-mid), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 1; }
}
.hero-scroll span {
  font-size: 10px; letter-spacing: 0.15em;
  color: var(--text-4); text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--night-3);
  border-bottom: 0.5px solid var(--night-3);
  background: var(--night-2);
}
.stat-item {
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border-right: 0.5px solid var(--night-3);
}
.stat-item:last-child { border-right: none; }
.stat-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--blue-pale);
  line-height: 1;
}
.stat-unit {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--teal-light);
}
.stat-label {
  font-size: 12px;
  color: var(--text-4);
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════
   SECTIONS COMMON
══════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-header { margin-bottom: 56px; }
.section-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 15px; color: var(--text-3);
  line-height: 1.65; font-weight: 300;
}

/* ══════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.svc-card {
  background: var(--night-2);
  border: 0.5px solid var(--night-3);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(55,138,221,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.svc-card:hover { border-color: var(--blue-mid); transform: translateY(-3px); }
.svc-card:hover::before { opacity: 1; }
.svc-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-4);
  margin-bottom: 16px;
}
.svc-icon { margin-bottom: 14px; }
.svc-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--blue-pale);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.svc-desc {
  font-size: 13.5px; color: var(--text-3);
  line-height: 1.6; margin-bottom: 18px;
  font-weight: 300;
}
.svc-stack {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.svc-stack span {
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 20px;
  background: var(--night); color: var(--teal);
  border: 0.5px solid rgba(29,158,117,0.25);
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════
   PROCESO
══════════════════════════════════════════ */
.proceso-section {
  padding: 100px 0;
  background: var(--night-2);
  border-top: 0.5px solid var(--night-3);
  border-bottom: 0.5px solid var(--night-3);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}
.step-item {
  padding: 28px 24px;
  border-right: 0.5px solid var(--night-3);
  position: relative;
}
.step-item:last-child { border-right: none; }
.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0.5px solid var(--blue-mid);
  background: var(--night);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--blue-pale);
  margin-bottom: 8px; letter-spacing: -0.2px;
}
.step-body p {
  font-size: 13px; color: var(--text-3);
  line-height: 1.6; font-weight: 300;
}

/* ══════════════════════════════════════════
   TESTIMONIALES
══════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.tcard {
  background: var(--night-2);
  border: 0.5px solid var(--night-3);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color 0.2s;
}
.tcard:hover { border-color: var(--night-4); }
.tcard-quote {
  font-family: 'Syne', sans-serif;
  font-size: 48px; font-weight: 700;
  color: var(--blue-deep);
  line-height: 0.8;
  margin-bottom: 12px;
}
.tcard-text {
  font-size: 14px; color: var(--text-3);
  line-height: 1.65; font-style: italic;
  font-weight: 300;
  margin-bottom: 20px;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--night-3);
  border: 0.5px solid var(--night-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--blue-pale);
  font-family: 'Syne', sans-serif;
  flex-shrink: 0;
}
.tcard-name { font-size: 13px; font-weight: 500; color: var(--blue-pale); }
.tcard-role { font-size: 11.5px; color: var(--text-4); margin-top: 2px; }

/* ══════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════ */
.contacto-section {
  padding: 100px 0;
  background: var(--night);
  border-top: 0.5px solid var(--night-3);
}
.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contacto-desc {
  font-size: 15px; color: var(--text-3);
  line-height: 1.65; font-weight: 300;
  margin: 20px 0 28px;
}
.contacto-data { display: flex; flex-direction: column; gap: 12px; }
.contacto-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--text-3);
}

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px; font-weight: 500;
  color: var(--text-3); letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--night-2);
  border: 0.5px solid var(--night-3);
  border-radius: var(--r-md);
  padding: 11px 14px;
  color: var(--text-1);
  font-size: 14px; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='2,4 6,8 10,4' stroke='%234a7a9b' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  background: var(--night-2);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--night-2); color: var(--text-1); }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px;
  background: var(--blue-mid);
  color: var(--text-1);
  font-size: 14px; font-weight: 500;
  border-radius: var(--r-md);
  transition: all 0.2s; border: none;
  font-family: 'DM Sans', sans-serif;
  margin-top: 4px;
}
.btn-submit:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(24,95,165,0.35);
}
.form-success {
  display: none; align-items: center; gap: 10px;
  font-size: 14px; color: var(--teal-light);
  padding: 12px 16px;
  background: rgba(29,158,117,0.08);
  border: 0.5px solid rgba(29,158,117,0.25);
  border-radius: var(--r-md);
}
.form-success.show { display: flex; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  border-top: 0.5px solid var(--night-3);
  padding: 48px 0 28px;
  background: var(--night-2);
}
.footer-inner {
  display: flex; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--night-3);
  margin-bottom: 24px;
}
.footer-tagline {
  font-size: 13px; color: var(--text-4);
  margin-top: 8px; font-style: italic;
}
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px; color: var(--text-4);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-3); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--text-4);
  flex-wrap: wrap; gap: 8px;
}

/* ══════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



/* stat row inline */
.stat-row {
  display: flex; align-items: baseline;
  gap: 3px; justify-content: center;
}

/* ══════════════════════════════════════════
   RESPONSIVE COMPLETO — 5 BREAKPOINTS
   1280 / 1024 / 768 / 480 / 360
══════════════════════════════════════════ */

/* ── 1280px — Large desktop ────────────── */
@media (max-width: 1280px) {
  .hero-h1 { font-size: clamp(40px, 6vw, 72px); }
  .container { padding: 0 28px; }
}

/* ── 1024px — Tablet landscape ─────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
  .hero { padding: 110px 28px 72px; }
  .hero-h1 { font-size: clamp(38px, 5.5vw, 60px); letter-spacing: -1.5px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .contacto-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .section { padding: 80px 0; }
  .proceso-section { padding: 80px 0; }
}

/* ── 768px — Tablet portrait ────────────── */
@media (max-width: 768px) {
  /* NAV */
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }

  /* HERO */
  .hero { padding: 96px 20px 64px; text-align: center; }
  .hero-h1 {
    font-size: clamp(34px, 8vw, 52px);
    letter-spacing: -1.2px;
  }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; max-width: 320px; text-align: center; }
  .hero-scroll { display: none; }

  /* STATS */
  .stats-bar {
    grid-template-columns: repeat(2,1fr);
    gap: 0;
  }
  .stat-item {
    padding: 20px 16px;
    border-bottom: 0.5px solid var(--night-3);
  }

  /* SECTIONS */
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(26px, 6vw, 38px); }
  .container { padding: 0 20px; }

  /* SERVICIOS */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-card { padding: 22px 20px; }

  /* PROCESO */
  .proceso-section { padding: 64px 0; }
  .steps-row {
    grid-template-columns: repeat(2,1fr);
    gap: 0;
  }
  .step-item {
    padding: 22px 18px;
    border-right: none;
    border-bottom: 0.5px solid var(--night-3);
  }
  .step-item:nth-child(odd) { border-right: 0.5px solid var(--night-3); }
  .step-item:last-child { border-bottom: none; }
  .step-item:nth-child(3) { border-bottom: none; }

  /* TESTIMONIALES */
  .testi-grid { grid-template-columns: 1fr; gap: 12px; }

  /* CONTACTO */
  .contacto-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contacto-left .section-title { font-size: clamp(26px, 6vw, 36px); }

  /* FOOTER */
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-links { gap: 28px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ── 480px — Mobile large ───────────────── */
@media (max-width: 480px) {
  /* HERO */
  .hero-h1 {
    font-size: clamp(30px, 9vw, 44px);
    letter-spacing: -1px;
  }
  .hero-badge { font-size: 10px; padding: 5px 12px; }

  /* STATS */
  .stats-bar { grid-template-columns: 1fr 1fr; }

  /* SERVICIOS */
  .svc-title { font-size: 16px; }
  .svc-desc  { font-size: 13px; }

  /* PROCESO */
  .steps-row { grid-template-columns: 1fr; }
  .step-item {
    border-right: none !important;
    border-bottom: 0.5px solid var(--night-3);
    padding: 20px 16px;
  }
  .step-item:last-child { border-bottom: none; }

  /* CONTACTO */
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .btn-submit { width: 100%; }

  /* FOOTER */
  .footer-links { flex-direction: column; gap: 20px; }
  .logo-text { font-size: 17px; }
}

/* ── 360px — Mobile small (Samsung/Xiaomi) ─ */
@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .nav-inner  { padding: 0 16px; }
  .hero { padding: 88px 16px 56px; }
  .hero-h1 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
  .hero-sub { font-size: 14px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { padding: 12px 20px; font-size: 13px; }
  .section-title { font-size: 24px; letter-spacing: -0.5px; }
  .svc-card { padding: 18px 16px; }
  .tcard { padding: 20px 16px; }
  .tcard-quote { font-size: 36px; }
  .contacto-section { padding: 56px 0; }
  .footer { padding: 36px 0 20px; }
}

/* ── Touch devices: tap targets ────────── */
@media (hover: none) and (pointer: coarse) {
  .nav-links a,
  .btn-nav,
  .mobile-link,
  .btn-primary,
  .btn-ghost,
  .btn-submit,
  .btn-nav { min-height: 44px; display: inline-flex; align-items: center; }
  .svc-card:hover { transform: none; }
  .btn-primary:hover,
  .btn-ghost:hover { transform: none; }
}

/* ── Landscape mobile ───────────────────── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 80px 28px 48px; }
  .hero-h1 { font-size: clamp(28px, 5vw, 40px); 