/* =====================================================
   TVR LOGISTICS — styles.css
   Color Palette: White | Black | Turquoise rgb(101,151,152)
   ===================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.accent { color: rgb(101, 151, 152); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .25s, color .25s, border-color .25s, transform .15s;
  white-space: nowrap;
}
.btn--teal   { background: rgb(101,151,152); color: #fff; border-color: rgb(101,151,152); }
.btn--teal:hover { background: rgb(80,125,126); border-color: rgb(80,125,126); transform: translateY(-2px); }
.btn--outline { background: transparent; color: rgb(101,151,152); border-color: rgb(101,151,152); }
.btn--outline:hover { background: rgb(101,151,152); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- SECTION COMMON ---------- */
.section { padding: 90px 0; }
.section__header { text-align: center; margin-bottom: 54px; }
.section__sub {
  display: inline-block;
  color: rgb(101,151,152);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section__header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #1a1a1a; }
.divider {
  width: 56px; height: 4px;
  background: rgb(101,151,152);
  border-radius: 2px;
  margin: 16px auto 0;
}
.divider--left { margin-left: 0; }

/* ---------- TOP BAR ---------- */
.top-bar {
  background: #0d1f22;
  color: #aaa;
  font-size: .78rem;
  padding: 8px 0;
}
.top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar__info { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.top-bar__info span { display: flex; align-items: center; gap: 6px; }
.top-bar__info i { color: rgb(101,151,152); }
.top-bar__social { display: flex; gap: 12px; }
.top-bar__social a { color: #aaa; font-size: .82rem; transition: color .2s; }
.top-bar__social a:hover { color: rgb(101,151,152); }
.sep { color: #333; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.navbar__logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.navbar__logo img { height: 72px; width: auto; display: block; }
.navbar__logo-text { display: flex; flex-direction: column; }
.navbar__logo-text .brand { font-size: 1.15rem; font-weight: 900; color: #111; letter-spacing: .5px; }
.navbar__logo-text .tagline { font-size: .68rem; color: rgb(101,151,152); letter-spacing: 2px; text-transform: uppercase; }
.navbar__links {
  display: flex;
  list-style: none;
  gap: 6px;
  margin: 0 auto;
}
.navbar__links a {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: #333;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.navbar__links a:hover,
.navbar__links a.active { color: rgb(101,151,152); background: rgba(101,151,152,.08); }
.navbar__ctas { display: flex; gap: 10px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 100%; height: 3px;
  background: #333;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background: url('TVR2.jpg') center center / cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.72) 40%, rgba(0,40,42,.55));
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 24px 60px 80px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(101,151,152,.18);
  border: 1px solid rgba(101,151,152,.45);
  color: rgb(101,151,152);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero__content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero__sub { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 34px; max-width: 540px; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- BANNER ---------- */
.banner {
  background: rgb(101,151,152);
  color: #fff;
  text-align: center;
  padding: 14px 24px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .5px;
}
.banner a { color: #fff; text-decoration: underline; margin-left: 8px; }
.banner a:hover { opacity: .8; }

/* ---------- VIDEO SECTION ---------- */
.video-section {
  background: #0a1a1c;
  padding: 80px 0;
}
.video-section .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.video-section .section__sub { color: rgb(101,151,152); }
.video-section h2 { color: #fff; margin-bottom: 30px; }
.video-section .divider { margin-bottom: 36px; }
.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,.6);
}
.video-wrapper video { width: 100%; display: block; }

/* ---------- SERVICES ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}
.service-card__icon {
  width: 66px; height: 66px;
  background: rgba(101,151,152,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: rgb(101,151,152);
  margin: 0 auto 20px;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #111; }
.service-card p { color: #666; font-size: .92rem; line-height: 1.7; }

/* ---------- STATS ---------- */
.stats {
  background: #0d1f22;
  padding: 60px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 6px;
}
.stat__label { color: #888; font-size: .85rem; text-transform: uppercase; letter-spacing: 1.5px; }

/* ---------- ABOUT ---------- */
.about { background: #f8fafa; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__text .section__sub { display: block; margin-bottom: 8px; }
.about__text h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
.about__text p { color: #555; margin-bottom: 14px; font-size: .96rem; line-height: 1.8; }
.about__list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.about__list li { display: flex; gap: 10px; align-items: center; color: #444; font-size: .93rem; }
.about__list li i { font-size: 1.1rem; }
.about__image img { border-radius: 14px; box-shadow: 0 8px 40px rgba(0,0,0,.12); }

/* ---------- WHY ---------- */
.why { background: #fff; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: #f8fafa;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: box-shadow .3s, transform .3s;
}
.why-card__icon {
  font-size: 2rem;
  color: rgb(101,151,152);
  margin-bottom: 16px;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: #111; }
.why-card p  { color: #666; font-size: .9rem; line-height: 1.7; }

/* ---------- CAREERS ---------- */
.careers { background: #0d1f22; }
.careers .section__header h2 { color: #fff; }
.careers .section__header p  { color: #888; }

.careers__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 42px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgb(101,151,152);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.careers__tab {
  flex: 1;
  padding: 14px 28px;
  background: transparent;
  color: rgb(101,151,152);
  border: none;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background .3s, color .3s;
}
.careers__tab.active,
.careers__tab:hover { background: rgb(101,151,152); color: #0d1f22; }
.careers__panel { display: none; }
.careers__panel.active { display: block; }

/* Pay Option Cards */
.pay-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 38px;
}
.pay-card {
  background: #0a1a1c;
  border: 1px solid #1e3a3e;
  border-radius: 12px;
  padding: 32px 28px;
}
.pay-card__badge {
  display: inline-block;
  background: rgb(101,151,152);
  color: #0d1f22;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.pay-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 16px; }
.pay-card ul { list-style: none; padding: 0; margin: 0; }
.pay-card ul li {
  color: #b0c4c8;
  font-size: .9rem;
  padding: 6px 0;
  border-bottom: 1px solid #1e3a3e;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pay-card ul li:last-child { border-bottom: none; }
.pay-card ul li i { color: rgb(101,151,152); margin-top: 3px; flex-shrink: 0; }

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.benefit-item {
  background: #0a1a1c;
  border: 1px solid #1e3a3e;
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.benefit-item i { color: rgb(101,151,152); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.benefit-item span { color: #b0c4c8; font-size: .9rem; line-height: 1.5; }

/* Equipment Box */
.equipment-box {
  background: #0a1a1c;
  border: 1px solid #1e3a3e;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 36px;
}
.equipment-box h4 {
  color: rgb(101,151,152);
  margin-bottom: 16px;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.equipment-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.equipment-box ul li {
  color: #b0c4c8;
  font-size: .9rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.equipment-box ul li i { color: rgb(101,151,152); margin-top: 3px; }

/* OO Highlights */
.oo-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
.oo-card {
  background: #0a1a1c;
  border: 1px solid #1e3a3e;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.oo-card i { font-size: 2rem; color: rgb(101,151,152); margin-bottom: 12px; display: block; }
.oo-card h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.oo-card p  { color: #888; font-size: .85rem; line-height: 1.5; }

/* Requirements Box */
.requirements-box {
  background: #0a1a1c;
  border: 1px solid #1e3a3e;
  border-radius: 12px;
  padding: 28px;
}
.requirements-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.requirements-box ul li {
  color: #b0c4c8;
  font-size: .93rem;
  display: flex;
  gap: 10px;
  align-items: center;
}
.requirements-box ul li i { color: rgb(101,151,152); }

/* ---------- GALLERY ---------- */
.gallery { background: #f8fafa; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery__item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

/* ---------- APPLY SECTION ---------- */
.apply-section { background: #111e20; padding: 90px 0; }
.apply-section .container { max-width: 780px; }
.apply-section .section__header h2 { color: #fff; }
.apply-section .section__header p  { color: #888; }

.apply-form {
  background: #0a1a1c;
  border: 1px solid #1e3a3e;
  border-radius: 16px;
  padding: 48px 44px;
}
.apply-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.apply-form label {
  display: block;
  color: rgb(101,151,152);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  background: #0d1f22;
  border: 1px solid #1e3a3e;
  border-radius: 8px;
  color: #fff;
  padding: 13px 16px;
  font-size: .95rem;
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: border-color .3s;
  font-family: inherit;
}
.apply-form input::placeholder,
.apply-form textarea::placeholder { color: #4a6a6e; }
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus { outline: none; border-color: rgb(101,151,152); }
.apply-form select option { background: #0d1f22; }
.apply-form textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: rgba(101,151,152,.15);
  border: 1px solid rgb(101,151,152);
  border-radius: 10px;
  padding: 20px 24px;
  color: rgb(101,151,152);
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
}

/* ---------- CONTACT ---------- */
.contact { background: #fff; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.contact__list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 24px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__list li i { font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.contact__list li span { color: #444; font-size: .93rem; }
.contact__social { display: flex; gap: 12px; }
.contact__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(101,151,152,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgb(101,151,152);
  font-size: .9rem;
  transition: background .2s, color .2s;
}
.contact__social a:hover { background: rgb(101,151,152); color: #fff; }

.contact__form h3 { font-size: 1.3rem; margin-bottom: 24px; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  background: #f8fafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: .93rem;
  margin-bottom: 14px;
  color: #222;
  box-sizing: border-box;
  transition: border-color .3s;
  font-family: inherit;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus { outline: none; border-color: rgb(101,151,152); }
.contact__form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact__form .form-row input { margin-bottom: 0; }
.contact__form .form-row { margin-bottom: 14px; }
.contact__form textarea { resize: vertical; min-height: 130px; }

/* ---------- FOOTER ---------- */
.footer { background: #0d1f22; color: #aaa; padding: 60px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1e3a3e;
}
.footer__brand p { font-size: .85rem; line-height: 1.7; color: #666; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(101,151,152,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgb(101,151,152);
  font-size: .8rem;
  transition: background .2s, color .2s;
}
.footer__social a:hover { background: rgb(101,151,152); color: #0d1f22; }
.footer h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: #666; font-size: .88rem; transition: color .2s; }
.footer__links a:hover { color: rgb(101,151,152); }
.footer__contact p { display: flex; align-items: flex-start; gap: 10px; color: #666; font-size: .88rem; margin-bottom: 12px; }
.footer__contact i { color: rgb(101,151,152); flex-shrink: 0; margin-top: 3px; }
.footer__logo img { height: 64px; width: auto; margin-bottom: 10px; }
.footer__bottom {
  text-align: center;
  padding: 18px 24px;
  font-size: .78rem;
  color: #444;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- NAVBAR MOBILE CTA (hidden on desktop) ---------- */
.navbar__mobile-cta { display: none; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Hover transforms only on pointer devices that support hover */
@media (hover: hover) {
  .service-card:hover { box-shadow: 0 10px 40px rgba(101,151,152,.15); transform: translateY(-6px); }
  .why-card:hover { box-shadow: 0 8px 32px rgba(101,151,152,.12); transform: translateY(-4px); }
  .oo-card:hover { border-color: rgb(101,151,152); transform: translateY(-4px); }
  .gallery__item:hover img { transform: scale(1.04); }
}

@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__image { order: -1; }
  .contact__inner { grid-template-columns: 1fr; }
  .pay-options { grid-template-columns: 1fr; }
  .equipment-box ul { grid-template-columns: 1fr; }
  .requirements-box ul { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Navbar — keep sticky, smooth dropdown transition */
  .hamburger { display: flex; width: 44px; height: 44px; }
  .navbar__ctas { display: none; }
  .navbar__mobile-cta { display: block; padding: 0 28px; }
  .navbar__mobile-cta a { display: flex; justify-content: center; margin: 4px 0; width: 100%; }
  .navbar__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .35s ease, padding .35s ease;
  }
  .navbar__links.open { max-height: 640px; padding: 12px 0 20px; }
  .navbar__links a { padding: 12px 28px; border-radius: 0; }

  /* Hero */
  .hero__content { padding: 50px 24px; }

  /* Banner */
  .banner { font-size: .82rem; padding: 12px 16px; }

  /* Section padding */
  .section { padding: 60px 0; }
  .section__header { margin-bottom: 36px; }

  /* Gallery */
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item img { height: auto; max-height: 260px; }

  /* Video section */
  .video-section { padding: 50px 0; }

  /* Apply / Contact forms */
  .apply-form { padding: 28px 20px; }
  .apply-form .form-row { grid-template-columns: 1fr; }
  .contact__form .form-row { grid-template-columns: 1fr; }

  /* Form inputs — 16px prevents iOS auto-zoom on focus */
  .apply-form input,
  .apply-form select,
  .apply-form textarea,
  .contact__form input,
  .contact__form select,
  .contact__form textarea { font-size: 16px; padding: 14px 16px; }

  /* Contact info */
  .contact__info { text-align: center; }
  .contact__list li { justify-content: center; }
  .contact__social { justify-content: center; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { text-align: center; }
  .footer__logo { text-align: center; }
  .footer__social { justify-content: center; }

  /* Careers tabs */
  .careers__tabs { max-width: 100%; }

  /* Tap targets — minimum 44×44px */
  .top-bar__social a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .contact__social a { width: 44px; height: 44px; }
  .footer__social a { width: 44px; height: 44px; }
}

@media (max-width: 600px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .top-bar__info { display: none; }
  .oo-highlights { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero { min-height: 75vh; }
  .hero__content { padding: 40px 20px; }
  .hero__content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Banner */
  .banner a { display: block; margin-left: 0; margin-top: 6px; }

  /* Section padding */
  .section { padding: 45px 0; }
  .section__header { margin-bottom: 28px; }

  /* Careers tabs */
  .careers__tab { padding: 10px 12px; font-size: .82rem; }
  .careers__tabs { flex-wrap: wrap; border-radius: 0; }

  /* Contact gap */
  .contact__inner { gap: 36px; }

  /* Footer */
  .footer { padding-top: 40px; }

  /* Video section */
  .video-section { padding: 36px 0; }
}

@media (max-width: 400px) {
  .oo-highlights { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; }
  .stats__grid { grid-template-columns: 1fr; }
}