/* ========================================
   APEX ROUTE LOGISTICS — style.css
   Palette: Navy #0a1628 | Blue #1a3a6e | Accent Orange #f97316
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a1628;
  --blue-dark: #1a3a6e;
  --blue-mid: #2563eb;
  --blue-light: #3b82f6;
  --orange: #f97316;
  --orange-lt: #fb923c;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .15);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .20);
  --radius: 12px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--navy); /* prevents OS-default colour bleeding above fixed navbar */
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, .12);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag svg {
  width: 14px;
  height: 14px;
}

h2.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

h2.section-title span {
  color: var(--orange);
}

p.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(249, 115, 22, .45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(249, 115, 22, .55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .5);
}

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

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: rgba(10, 22, 40, .85);
  /* always visible on mobile */
}

#navbar.scrolled {
  background: rgba(10, 22, 40, .96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--orange);
  text-transform: uppercase;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
}

nav a:hover {
  color: var(--white);
}

nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 22px !important;
  border-radius: 50px !important;
}

.nav-cta:hover {
  transform: none;
  box-shadow: 0 6px 24px rgba(249, 115, 22, .45);
}

#menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(125deg, var(--navy) 0%, var(--blue-dark) 60%, #0f2a50 100%);
  overflow: hidden;
  padding-top: 80px;
  /* offset for fixed navbar */
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_truck.png');
  background-size: cover;
  background-position: center 40%;
  opacity: .18;
  mix-blend-mode: luminosity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 40, .95) 45%, rgba(10, 22, 40, .3) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: linear-gradient(rgba(255, 255, 255, .6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .6) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, .18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, .15);
  border: 1px solid rgba(249, 115, 22, .3);
  color: var(--orange-lt);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--orange-lt);
  border-radius: 50%;
  animation: pulse-ring 1.8s ease-in-out infinite;
}

@keyframes pulse-ring {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, .6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0);
  }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--orange), #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-num span {
  color: var(--orange);
}

.stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

.hero-divider {
  width: 1px;
  background: rgba(255, 255, 255, .15);
  align-self: stretch;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ── ABOUT ── */
#about {
  padding: 110px 0;
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-large {
  opacity: .25;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 8px 32px rgba(249, 115, 22, .45);
  text-align: center;
}

.about-badge strong {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.about-badge small {
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--gray-600);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(249, 115, 22, .12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

/* ── SERVICES ── */
#services {
  padding: 110px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header p.section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-card.featured {
  background: linear-gradient(145deg, var(--navy), var(--blue-dark));
  border-color: transparent;
  color: var(--white);
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card:not(.featured) .service-icon {
  background: rgba(37, 99, 235, .1);
  color: var(--blue-mid);
}

.service-card.featured .service-icon {
  background: rgba(249, 115, 22, .25);
  color: var(--orange-lt);
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: inherit;
}

.service-card:not(.featured) h3 {
  color: var(--navy);
}

.service-card p {
  font-size: .93rem;
  line-height: 1.65;
}

.service-card:not(.featured) p {
  color: var(--gray-600);
}

.service-card.featured p {
  color: rgba(255, 255, 255, .75);
}

.service-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.service-card:not(.featured) .service-tag {
  background: rgba(37, 99, 235, .1);
  color: var(--blue-mid);
}

.service-card.featured .service-tag {
  background: rgba(249, 115, 22, .25);
  color: var(--orange-lt);
}

/* ── WHY CHOOSE US ── */
#why {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .15) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-text h2.section-title {
  color: var(--white);
}

.why-text p.section-sub {
  color: rgba(255, 255, 255, .6);
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateX(6px);
}

.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(249, 115, 22, .25);
  line-height: 1;
  min-width: 48px;
}

.why-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-card-body p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

/* ── CONTACT ── */
#contact {
  padding: 110px 0;
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37, 99, 235, .35);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.contact-item h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form>p {
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── intl-tel-input overrides ── */
.phone-field-wrap { width: 100%; }

.phone-field-wrap .iti {
  width: 100%;
}

.phone-field-wrap .iti__tel-input {
  width: 100%;
  padding: 13px 16px 13px 90px; /* leave room for the flag + dial code */
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--gray-50);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}

.phone-field-wrap .iti__tel-input:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.phone-field-wrap .iti__flag-container {
  border-right: 1.5px solid var(--gray-200);
  border-radius: 10px 0 0 10px;
  background: var(--gray-50);
}

.phone-field-wrap .iti__selected-country {
  border-radius: 8px 0 0 8px;
  padding: 0 10px;
  gap: 6px;
  background: transparent;
}

.phone-field-wrap .iti__selected-dial-code {
  font-size: .85rem;
  color: var(--gray-600);
}

.phone-field-wrap .iti__dropdown-content {
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
}


.form-submit {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  font-size: 1rem;
  justify-content: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(37, 99, 235, .07);
  border-radius: 12px;
  color: var(--blue-mid);
  font-weight: 600;
  margin-top: 16px;
}

.form-success.show {
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h5 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  font-size: .95rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 28px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom a {
  color: var(--orange);
  text-decoration: none;
}

.footer-credit {
  color: rgba(255, 255, 255, .35); /* matches surrounding footer text */
  text-decoration: none;
  transition: color .2s;
}

.footer-credit:hover {
  color: rgba(255, 255, 255, .65);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

/* ── FADE IN ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.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;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  nav {
    display: none;
  }

  nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, .97);
    backdrop-filter: blur(16px);
    padding: 20px 28px 24px;
    gap: 16px;
    z-index: 1002;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
  }

  nav.open a {
    font-size: 1rem;
  }

  #menu-btn {
    display: flex;
    z-index: 1003;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-divider {
    display: none;
  }

  .about-badge {
    right: 0;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}