/* ============================================================
   ATLAS CLOUD - Bold Precision Meets Oceanic Flow
   New Brand Identity: Navy Blue #2B3990 + Cyan #4DD0E1
   ============================================================ */

/* ===== Custom Properties ===== */
:root {
  /* Brand Colors - Updated from new logo */
  --atlas-navy: #2B3990;
  --atlas-navy-deep: #1e2a6e;
  --atlas-navy-dark: #121a4a;
  --atlas-cyan: #4DD0E1;
  --atlas-cyan-bright: #6ee7f5;
  --atlas-cyan-muted: #3bb8c9;
  --atlas-gradient: linear-gradient(135deg, var(--atlas-navy) 0%, var(--atlas-cyan) 100%);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f1f5f9;
  --gray-100: #e2e8f0;
  --gray-200: #cbd5e1;
  --gray-300: #94a3b8;
  --gray-400: #64748b;
  --gray-500: #475569;
  --gray-600: #334155;
  --gray-700: #1e293b;
  --ink: #0f172a;

  /* Typography - Distinctive pairing */
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 100px;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 800px;

  /* Effects */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.16);
  --shadow-glow-cyan: 0 0 60px rgba(77, 208, 225, 0.3);
  --shadow-glow-navy: 0 0 60px rgba(43, 57, 144, 0.3);
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-500);
  background: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  max-width: 65ch;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Selection ===== */
::selection {
  background: var(--atlas-cyan);
  color: var(--atlas-navy-dark);
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes wave {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-25px) translateY(8px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.animate-fade-up {
  animation: fadeUp 1s var(--ease-out-expo) forwards;
  opacity: 0;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  transition: all 0.5s var(--ease-out-quart);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(43, 57, 144, 0.08);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-quart);
}

.navbar.scrolled::before {
  opacity: 1;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  height: 80px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  height: 80px;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 48px;
  width: auto;
  max-width: 200px;
  display: block;
  transition: all 0.4s var(--ease-out-quart);
  object-fit: contain;
  background: white;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(43, 57, 144, 0.1);
}

.navbar__logo:hover img {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(43, 57, 144, 0.15);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  height: 80px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.navbar__links li {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
}

.navbar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  position: relative;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.navbar__link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: var(--atlas-cyan);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s var(--ease-out-quart);
}

.navbar__link:hover {
  color: var(--atlas-navy);
}

.navbar__link:hover::before {
  opacity: 0.1;
  transform: scale(1);
}

.navbar__link.active {
  color: var(--atlas-navy);
  font-weight: 600;
}

.navbar__link.active::before {
  opacity: 0.12;
  transform: scale(1);
}

/* Reset visited/focus states */
.navbar__link:visited,
.navbar__link:focus {
  color: var(--gray-400);
}

.navbar__link.active:visited,
.navbar__link.active:focus {
  color: var(--atlas-navy);
}

/* On dark backgrounds */
.navbar--dark .navbar__link {
  color: rgba(255, 255, 255, 0.7);
}

.navbar--dark .navbar__link:visited,
.navbar--dark .navbar__link:focus {
  color: rgba(255, 255, 255, 0.7);
}

.navbar--dark .navbar__link:hover {
  color: var(--white);
}

.navbar--dark .navbar__link:hover::before {
  background: white;
  opacity: 0.1;
}

.navbar--dark .navbar__link.active {
  color: var(--white);
}

.navbar--dark .navbar__link.active::before {
  background: white;
  opacity: 0.15;
}

.navbar--dark .navbar__link.active:visited,
.navbar--dark .navbar__link.active:focus {
  color: var(--white);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px var(--space-lg) var(--space-3xl);
  background: linear-gradient(155deg,
    var(--atlas-navy-dark) 0%,
    var(--atlas-navy-deep) 35%,
    var(--atlas-navy) 70%,
    #3a4ba3 100%
  );
  overflow: hidden;
}

/* Mesh gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(77, 208, 225, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(77, 208, 225, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  opacity: 0.025;
  pointer-events: none;
}

/* Flowing wave decoration */
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 140px;
  overflow: hidden;
}

.hero__wave svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100%;
  animation: wave 18s ease-in-out infinite;
}

.hero__wave svg path {
  fill: var(--white);
}

/* Gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.hero__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(77, 208, 225, 0.25) 0%, transparent 60%);
  top: -250px;
  right: -150px;
  animation-delay: -5s;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(43, 57, 144, 0.5) 0%, transparent 60%);
  bottom: 50px;
  left: -150px;
  animation-duration: 25s;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 940px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--atlas-cyan);
  margin-bottom: var(--space-lg);
  padding: 10px 20px;
  background: rgba(77, 208, 225, 0.1);
  border: 1px solid rgba(77, 208, 225, 0.2);
  border-radius: 100px;
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.3);
}

/* Gradient text accent */
.hero__title span {
  background: linear-gradient(135deg, var(--white) 0%, var(--atlas-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto var(--space-xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: var(--atlas-cyan);
  color: var(--atlas-navy-dark);
  box-shadow: 0 4px 20px rgba(77, 208, 225, 0.3);
}

.btn--primary:hover {
  background: var(--atlas-cyan-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(77, 208, 225, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn--dark {
  background: var(--atlas-navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(43, 57, 144, 0.25);
}

.btn--dark:hover {
  background: var(--atlas-navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(43, 57, 144, 0.35);
}

/* ===== Section Base ===== */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--light {
  background: var(--off-white);
}

.section--dark {
  background: linear-gradient(155deg,
    var(--atlas-navy-dark) 0%,
    var(--atlas-navy-deep) 35%,
    var(--atlas-navy) 70%,
    #3a4ba3 100%
  );
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 10% 90%, rgba(77, 208, 225, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.section--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  opacity: 0.025;
  pointer-events: none;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--atlas-cyan);
  margin-bottom: var(--space-md);
  padding: 8px 16px;
  background: rgba(77, 208, 225, 0.1);
  border-radius: 6px;
}

.section--light .section__eyebrow {
  background: rgba(43, 57, 144, 0.08);
  color: var(--atlas-navy);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section--dark .section__title {
  color: var(--white);
}

.section__subtitle {
  color: var(--gray-400);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== Feature Cards ===== */
.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: var(--space-xl);
  border: 1px solid var(--gray-100);
  transition: all 0.5s var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--atlas-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(77, 208, 225, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--atlas-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(43, 57, 144, 0.25);
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
  stroke-width: 1.5;
  fill: none;
}

.feature-card__title {
  margin-bottom: var(--space-sm);
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ===== Location Grid ===== */
.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  backdrop-filter: blur(16px);
  transition: all 0.5s var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(77, 208, 225, 0.12) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.location-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(77, 208, 225, 0.35);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-cyan);
}

.location-card:hover::before {
  opacity: 1;
}

.location-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.location-card__status {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--atlas-cyan);
  position: relative;
  z-index: 1;
}

.location-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-sm);
  position: relative;
  z-index: 1;
}

/* Status badge */
.location-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

.location-card__badge--hq {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.location-card__badge--active {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.location-card__badge--progress {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.location-card__badge--future {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

/* Card variants by status */
.location-card--hq {
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.08);
}

.location-card--hq:hover {
  border-color: rgba(220, 38, 38, 0.5);
  background: rgba(220, 38, 38, 0.12);
}

.location-card--hq .location-card__status {
  color: #fca5a5;
}

.location-card--active {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
}

.location-card--active:hover {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.12);
}

.location-card--active .location-card__status {
  color: #86efac;
}

.location-card--progress {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
}

.location-card--progress:hover {
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.12);
}

.location-card--progress .location-card__status {
  color: #fcd34d;
}

.location-card--future {
  opacity: 0.75;
}

.location-card--future:hover {
  opacity: 1;
}

/* ===== Footer ===== */
.footer {
  background: var(--off-white);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--gray-100);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer__logo img {
  height: 44px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
  transition: all 0.3s ease;
}

.footer__logo:hover img {
  transform: scale(1.02);
}

.footer__tagline {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-400);
}

.footer__links {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.footer__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--atlas-navy);
}

.footer__email {
  font-weight: 600;
  color: var(--atlas-navy);
}

.footer__email:hover {
  color: var(--atlas-cyan-muted);
}

.footer__copyright {
  font-size: 13px;
  color: var(--gray-300);
}

/* ===== Page Variants ===== */
.hero--about {
  min-height: 80vh;
}

.hero--about .hero__subtitle {
  max-width: 720px;
}

.hero--contact {
  min-height: 80vh;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 120px;
  }

  .hero__wave {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .world-map {
    margin-bottom: var(--space-xl);
  }

  .world-map__legend {
    gap: var(--space-md);
  }

  .legend-label {
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  :root {
    --space-3xl: 70px;
  }

  .navbar {
    height: 70px;
  }

  .navbar__inner {
    height: 70px;
  }

  .navbar__logo {
    height: 70px;
  }

  .navbar__links {
    gap: 4px;
    height: 70px;
  }

  .navbar__link {
    font-size: 13px;
    height: 34px;
    padding: 0 12px;
  }

  .navbar__logo img {
    height: 38px;
    max-width: 140px;
    padding: 6px 10px;
  }

  .world-map {
    display: none;
  }

  .features,
  .locations {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 120px;
  }

  .hero--about,
  .hero--contact {
    min-height: auto;
    padding-bottom: 100px;
  }

  .hero__eyebrow {
    font-size: 11px;
    padding: 8px 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__wave {
    height: 70px;
  }

  .feature-card,
  .location-card {
    padding: var(--space-lg);
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md) var(--space-lg);
  }
}
