/* =====================================================
   NovaCargo - Main Stylesheet
   FastAPI + Jinja2 edition
   ===================================================== */

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  --bg:          #F9FAFB;
  --bg-alt:      #F3F4F6;
  --fg:          #0F172A;   /* deep slate */
  --fg-muted:    #64748B;
  --primary:     #2563EB;   /* electric blue */
  --primary-dark:#1D4ED8;
  --white:       #FFFFFF;
  --border:      rgba(15, 23, 42, 0.08);
  --glass-bg:    rgba(255, 255, 255, 0.68);
  --glass-border:rgba(255, 255, 255, 0.28);
  --overlay:     rgba(10, 18, 40, 0.52);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.12);
  --font-sans:   'Noto Sans Display', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-serif:  'Ubuntu Condensed', ui-serif, Georgia, 'Times New Roman', serif;
  --transition:  0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Accessibility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Typography ---------- */
.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
}
.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-header h2,
.atmo-section__heading,
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
}
.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-md { font-size: 1rem;     line-height: 1.6; }
.caption  { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section { padding-block: 7rem; }
.section--sm { padding-block: 4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.32);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--fg);
  color: var(--white);
}
.btn--dark:hover {
  background: #1e2a3a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1.25rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding-block: .85rem;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar__logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .navbar__logo { color: var(--fg); }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar__nav a {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: color var(--transition);
}
.navbar.scrolled .navbar__nav a { color: var(--fg-muted); }
.navbar__nav a:hover,
.navbar.scrolled .navbar__nav a:hover { color: var(--primary); }
.navbar__cta { font-size: .875rem; padding: .6rem 1.25rem; }
.navbar.scrolled .navbar__cta.btn--outline {
  color: var(--fg);
  border-color: var(--border);
}
.navbar.scrolled .navbar__cta.btn--outline:hover {
  background: var(--bg-alt);
  border-color: var(--border);
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}
.navbar.scrolled .navbar__hamburger span { background: var(--fg); }

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px);
  z-index: 120;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: calc(2rem + env(safe-area-inset-top));
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--fg);
}
.navbar__mobile-close {
  position: absolute;
  top: calc(1.5rem + env(safe-area-inset-top)); right: 1.5rem;
  background: none; border: none;
  font-size: 1.75rem;
  color: var(--fg-muted);
  line-height: 1;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.1s linear;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 18, 40, 0.62) 0%,
    rgba(10, 18, 60, 0.4) 60%,
    rgba(37, 99, 235, 0.15) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}
.hero__heading { margin-bottom: 1.25rem; }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.78);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero__track {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero__track input {
  flex: 1;
  padding: .9rem 1.25rem;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  color: var(--white);
  font-size: .9375rem;
  backdrop-filter: blur(12px);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.hero__track input::placeholder { color: rgba(255,255,255,.5); }
.hero__track input:focus {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.18);
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce-scroll 2.5s ease-in-out infinite;
}
.hero__scroll svg { opacity: .6; }
@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =====================================================
   ATMOSPHERIC FULL-SCREEN SECTIONS (NEW)
   ===================================================== */
.atmo-section {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.atmo-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.atmo-section__overlay {
  position: absolute;
  inset: 0;
}
.atmo-section--left .atmo-section__overlay {
  background: linear-gradient(
    160deg,
    rgba(8, 14, 34, 0.55) 0%,
    rgba(8, 14, 34, 0.3) 100%
  );
}
.atmo-section--right .atmo-section__overlay {
  background: linear-gradient(
    160deg,
    rgba(8, 14, 34, 0.55) 0%,
    rgba(8, 14, 34, 0.3) 100%
  );
}
.atmo-section__content {
  position: relative;
  z-index: 2;
}
.atmo-section--right .atmo-section__content {
  margin-left: auto;
  text-align: right;
}
.atmo-section__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.atmo-section__heading {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 520px;
}
.atmo-section--right .atmo-section__heading { margin-left: auto; }
.atmo-section__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2.25rem;
}
.atmo-section--right .atmo-section__body { margin-left: auto; }
.atmo-section__stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.atmo-section--right .atmo-section__stats { justify-content: flex-end; }
.atmo-stat__value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.atmo-stat__label {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  margin-top: .25rem;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar { padding-block: 3rem; border-bottom: 1px solid var(--border); }
.trust-bar__label {
  text-align: center;
  margin-bottom: 1.75rem;
  color: var(--fg-muted);
}
.trust-bar__track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.trust-bar__inner:hover { animation-play-state: paused; }
.trust-bar__logo {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--fg-muted);
  opacity: .45;
  white-space: nowrap;
  letter-spacing: -.01em;
  transition: opacity var(--transition);
}
.trust-bar__logo:hover { opacity: .7; }

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

/* =====================================================
   SERVICES
   ===================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card--photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  color: var(--white);
  overflow: hidden;
}
.service-card--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 14, 34, 0.72) 0%,
    rgba(8, 14, 34, 0.42) 55%,
    rgba(8, 14, 34, 0.08) 100%
  );
}
.service-card--photo > * {
  position: relative;
  z-index: 1;
}
.service-card--photo .service-card__icon {
  background: rgba(255,255,255,.18);
  color: var(--white);
}
.service-card--photo .service-card__tag {
  color: rgba(255,255,255,.8);
}
.service-card--photo .service-card__title {
  color: var(--white);
}
.service-card--photo .service-card__desc {
  color: rgba(255,255,255,.85);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.service-card__tag {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .65rem;
}
.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: .65rem;
  letter-spacing: -0.01em;
}
.service-card__desc {
  font-size: .9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
  background: var(--fg);
  color: var(--white);
  padding-block: 6rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem 2rem;
  margin-top: 3.5rem;
}
.stat-item { text-align: center; }
.stat-item__value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: .5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.stat-item__value.visible {
  opacity: 1;
  transform: translateY(0);
}
.stat-item__label {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}
.stat-item__accent { color: var(--primary); }

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section { background: var(--bg-alt); }
.contact-card {
  max-width: 640px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -.01em;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9375rem;
  color: var(--fg);
  background: var(--bg);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--fg-muted); opacity: .7; }
.contact-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 1.25rem;
}
.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.contact-info__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.contact-info__value {
  font-size: .95rem;
  color: var(--fg);
}
.contact-info__value a { color: inherit; }
.contact-info__addresses {
  list-style: none;
  display: grid;
  gap: .35rem;
  padding: 0;
  margin: 0;
}
.contact-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #16A34A;
  font-weight: 600;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #080E22;
  color: var(--white);
  padding-block: 4rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
  color: var(--white);
}
.footer__brand-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.42);
  line-height: 1.7;
  max-width: 260px;
}
.footer__col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer__col ul a {
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: .875rem; color: rgba(255,255,255,.3); }

/* =====================================================
   SCROLL TOP BUTTON
   ===================================================== */
.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.95);
  color: var(--fg);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 110;
}
.scroll-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.scroll-top:active {
  transform: translateY(0);
}

/* =====================================================
   SECTION HEADER (shared)
   ===================================================== */
.section-header { text-align: center; max-width: 600px; margin-inline: auto; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-header h2 {
  margin-bottom: 1rem;
  color: var(--fg);
}
.section-header p { color: var(--fg-muted); font-size: 1.0625rem; }

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s cubic-bezier(0.22, 1, 0.36, 1),
              transform .75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  html { scroll-padding-top: 96px; }
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .atmo-section__content { max-width: 100%; }
  .atmo-section--right .atmo-section__content { margin-left: 0; text-align: left; }
  .atmo-section--right .atmo-section__heading { margin-left: 0; }
  .atmo-section--right .atmo-section__body { margin-left: 0; }
  .atmo-section--right .atmo-section__stats { justify-content: flex-start; }
  .atmo-section--left .atmo-section__overlay,
  .atmo-section--right .atmo-section__overlay {
    background: rgba(8, 14, 34, 0.62);
  }
  .atmo-section__bg { background-attachment: scroll; }
  .hero__bg { background-attachment: scroll; }
}
@media (max-width: 640px) {
  .section { padding-block: 4.5rem; }
  .hero { padding-top: 6rem; }
  .hero__actions .btn--outline { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero__track { flex-direction: column; max-width: 100%; }
  .hero__actions { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .atmo-section { min-height: 80svh; }
  .atmo-section__content { padding-top: 1.5rem; padding-bottom: 2.5rem; }
  .atmo-section__stats { gap: 1.5rem; }
}

@media (max-height: 667px) {
  .hero__actions .btn--primary,
  .hero__actions .btn--outline,
  .hero__scroll {
    display: none;
  }
}
