/* Georgia Auto Export — brand tokens */
:root {
  --color-dark-900: #051F20;
  --color-dark-800: #0B2B26;
  --color-dark-700: #163832;
  --color-brand: #235347;
  --color-accent: #8EB69B;
  --color-light: #D2E8D1;
  --color-white: #ffffff;

  /* Backgrounds — 20% darker than base palette */
  --color-bg: color-mix(in srgb, var(--color-white) 80%, black);
  --color-bg-light: color-mix(in srgb, var(--color-light) 80%, black);
  --color-bg-dark-900: color-mix(in srgb, var(--color-dark-900) 80%, black);
  --color-bg-dark-800: color-mix(in srgb, var(--color-dark-800) 80%, black);
  --color-bg-dark-700: color-mix(in srgb, var(--color-dark-700) 80%, black);
  --color-bg-brand: color-mix(in srgb, var(--color-brand) 80%, black);
  --color-bg-accent: color-mix(in srgb, var(--color-accent) 80%, black);

  --gradient-hero: linear-gradient(135deg, var(--color-bg-dark-900) 0%, var(--color-bg-dark-700) 50%, var(--color-bg-brand) 100%);
  --gradient-light: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-accent) 100%);
  --gradient-accent: linear-gradient(90deg, #235347 0%, #8EB69B 100%);

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(5, 31, 32, 0.06);
  --shadow-md: 0 8px 32px rgba(5, 31, 32, 0.12);
  --shadow-lg: 0 24px 64px rgba(5, 31, 32, 0.18);

  --header-h: calc(72px * 0.8);
  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-dark-900);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Grain overlay */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--color-dark-800);
  max-width: 560px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-brand);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(35, 83, 71, 0.35);
}

.btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-dark-900);
  box-shadow: 0 6px 24px rgba(142, 182, 155, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-light);
  border: 1.5px solid rgba(210, 232, 209, 0.4);
}

.btn-secondary:hover {
  background: rgba(210, 232, 209, 0.12);
  border-color: var(--color-light);
}

.btn-light {
  background: var(--color-accent);
  color: var(--color-dark-900);
}

.btn-light:hover { background: var(--color-light); }

.btn-outline {
  background: transparent;
  color: var(--color-brand);
  border: 1.5px solid var(--color-brand);
}

.btn-outline:hover {
  background: var(--color-light);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background:
    linear-gradient(135deg, rgba(4, 25, 26, 0.58) 0%, rgba(4, 25, 26, 0.4) 100%);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid rgba(142, 182, 155, 0.18);
  box-shadow: inset 0 1px 0 rgba(210, 232, 209, 0.08);
  transition:
    background 0.3s,
    box-shadow 0.3s,
    backdrop-filter 0.3s,
    border-color 0.3s;
}

.header.scrolled {
  background:
    linear-gradient(135deg, rgba(4, 25, 26, 0.82) 0%, rgba(4, 25, 26, 0.68) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: rgba(142, 182, 155, 0.28);
  box-shadow:
    0 4px 24px rgba(5, 31, 32, 0.22),
    inset 0 1px 0 rgba(210, 232, 209, 0.12);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--color-light);
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 20px; height: 20px; }

.header-social {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 0.5rem;
}

.header-social-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.header-social-link {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: transparent;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.header-social-link:hover {
  transform: scale(1.08);
  opacity: 0.92;
}

.header-social-link--whatsapp { color: #25D366; }
.header-social-link--telegram { color: #26A5E4; }

.header-social-link svg {
  width: 20px;
  height: 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(210, 232, 209, 0.85);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--color-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-light);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--color-bg-dark-900);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/bg-cars.jpg") center / cover no-repeat;
  filter: brightness(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(3, 20, 21, 0.80) 0%, rgba(14, 36, 32, 0.76) 50%, rgba(22, 54, 46, 0.68) 100%),
    linear-gradient(to bottom, rgba(3, 20, 21, 0.48) 0%, transparent 40%, rgba(3, 20, 21, 0.52) 100%);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 2;
}

.hero-bg-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--color-bg-brand);
  top: -100px;
  right: -100px;
}

.hero-bg-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--color-bg-accent);
  bottom: -150px;
  left: -100px;
  opacity: 0.25;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(142, 182, 155, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 182, 155, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero.grain::after {
  z-index: 4;
}

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 880px;
  padding-block: 4rem 6rem;
}

.hero-content {
  color: var(--color-light);
  padding: 2.25rem 2.75rem;
  background:
    linear-gradient(135deg, rgba(3, 20, 21, 0.62) 0%, rgba(3, 20, 21, 0.50) 100%);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border: 1px solid rgba(142, 182, 155, 0.28);
  border-radius: var(--radius-md);
  box-shadow:
    0 8px 32px rgba(5, 31, 32, 0.28),
    inset 0 1px 0 rgba(210, 232, 209, 0.12);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem 0.375rem 0.5rem;
  background: rgba(142, 182, 155, 0.15);
  border: 1px solid rgba(142, 182, 155, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(210, 232, 209, 0.85);
  max-width: 640px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(210, 232, 209, 0.7);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Stats bar */
.stats-bar {
  background: var(--color-bg-dark-800);
  border-block: 1px solid rgba(142, 182, 155, 0.15);
  padding-block: 2.5rem;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-bar-item .value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.stats-bar-item .label {
  font-size: 0.875rem;
  color: rgba(210, 232, 209, 0.75);
}

/* Sections */
section { padding-block: 5.5rem; }

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc { margin-inline: auto; }

/* About */
.about { background: var(--color-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--color-dark-800);
}

.about-text p:last-child { margin-bottom: 0; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg-light);
  border: 1px solid rgba(142, 182, 155, 0.4);
  border-radius: var(--radius-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--color-brand);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--color-white);
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--color-dark-800);
  line-height: 1.5;
}

/* Process */
.process {
  background: var(--gradient-light);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  counter-increment: step;
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(35, 83, 71, 0.12);
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  line-height: 1;
}

.step-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  padding-right: 3rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--color-dark-800);
}

.logistics-banner {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--color-bg-dark-700);
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--color-light);
}

.logistics-banner p {
  font-size: 0.9375rem;
  opacity: 0.9;
}

.logistics-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.tag {
  padding: 0.375rem 0.875rem;
  background: rgba(142, 182, 155, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-accent);
}

/* Why */
.why { background: var(--color-bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.why-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(142, 182, 155, 0.35);
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  border-color: var(--color-brand);
  box-shadow: var(--shadow-md);
}

.why-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.why-card h3 svg {
  width: 20px;
  height: 20px;
  color: var(--color-brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--color-dark-800);
}

/* Contact */
.contact { background: var(--color-bg-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--color-brand);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.contact-item-icon svg { width: 18px; height: 18px; }

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand);
  margin-bottom: 0.125rem;
}

.contact-item-value {
  font-size: 0.9375rem;
  color: var(--color-dark-800);
}

.contact-item-value a:hover { color: var(--color-brand); }

.response-promise {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(142, 182, 155, 0.4);
  font-size: 0.875rem;
  font-weight: 500;
}

.response-promise svg {
  width: 20px;
  height: 20px;
  color: var(--color-brand);
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
}

.contact-form-wrap > p {
  font-size: 0.9375rem;
  color: var(--color-dark-800);
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.125rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--color-dark-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1.5px solid rgba(142, 182, 155, 0.5);
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  color: var(--color-dark-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(35, 83, 71, 0.15);
  background: var(--color-bg);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit { width: 100%; margin-top: 0.5rem; }

.form-note {
  margin-top: 0.875rem;
  font-size: 0.75rem;
  color: var(--color-dark-800);
  opacity: 0.7;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.visible { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--color-brand); margin: 0 auto 1rem; }
.form-success h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--color-dark-800); font-size: 0.9375rem; }

.contact-form.hidden { display: none; }

/* Footer */
.footer {
  background: var(--color-bg-dark-900);
  color: rgba(210, 232, 209, 0.7);
  padding-block: 3rem 2rem;
  border-top: 1px solid rgba(142, 182, 155, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-col a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--color-light); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(142, 182, 155, 0.1);
  font-size: 0.8125rem;
}

/* Floating chat */
.fab-chat {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: var(--gradient-accent);
  border: 1px solid rgba(210, 232, 209, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 24px rgba(35, 83, 71, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  color: var(--color-white);
  cursor: pointer;
}

.fab-chat:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(35, 83, 71, 0.45);
}

.fab-chat svg { width: 26px; height: 26px; }

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 960px) {
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav .btn-primary { display: none; }

  .nav-toggle { display: block; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background:
      linear-gradient(180deg, rgba(4, 25, 26, 0.88) 0%, rgba(4, 25, 26, 0.78) 100%);
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    padding: 1.5rem 1.25rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(142, 182, 155, 0.22);
    box-shadow:
      0 12px 32px rgba(5, 31, 32, 0.24),
      inset 0 1px 0 rgba(210, 232, 209, 0.08);
  }

  .nav.open .nav-links a { font-size: 1rem; }

  section { padding-block: 4rem; }

  .hero-content {
    padding: 1.75rem 1.5rem;
  }

  .form-row { grid-template-columns: 1fr; }

  .logistics-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
