/* ============================================================
   AFEX Logistics — Shared Stylesheet
   Primary: #29ABD4 (cyan) | Dark: #0E2530 | Light: #F5F7F8
   ============================================================ */
:root {
  --primary: #29ABD4;
  --primary-dark: #1C93B8;
  --primary-soft: #E3F5FA;
  --dark: #0E2530;
  --dark-2: #14313F;
  --ink: #1D2B36;
  --muted: #6B7A85;
  --line: #E4E9EC;
  --light: #F5F7F8;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(14, 37, 48, .08);
  --font: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.6; font-size: 15px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; background: var(--primary); color: #fff;
  font-weight: 600; font-size: 14px; padding: 13px 28px;
  border-radius: 10px; border: none; cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 6px 16px rgba(41, 171, 212, .35);
}
.btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--dark); outline-offset: 2px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand .logo-text { line-height: 1.1; }
.brand .logo-text b { font-size: 22px; letter-spacing: .5px; color: var(--ink); }
.brand .logo-text span { display: block; font-size: 8px; letter-spacing: 2.5px; color: var(--primary); font-weight: 600; }

.main-nav { display: flex; gap: 34px; }
.main-nav a { font-weight: 500; font-size: 14px; color: var(--ink); padding: 6px 0; position: relative; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--primary); transition: width .25s;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch { font-size: 14px; font-weight: 500; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.lang-switch .flag { width: 20px; height: 13px; background: #165d31; border-radius: 2px; display: inline-block; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Page banner ---------- */
.page-banner {
  margin: 22px auto; width: min(1200px, 92%);
  background: linear-gradient(100deg, var(--primary) 0%, #1FA0C9 100%);
  border-radius: 16px; color: #fff; padding: 52px 48px; position: relative; overflow: hidden;
}
.page-banner h1 { font-size: 38px; font-weight: 700; }
.breadcrumb { margin-top: 8px; font-size: 13px; opacity: .9; display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { text-decoration: underline; }
.banner-cubes {
  position: absolute; right: -20px; top: 0; bottom: 0; width: 260px;
  background:
    linear-gradient(45deg, rgba(255,255,255,.18) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.18) 75%),
    linear-gradient(45deg, rgba(13,90,120,.18) 25%, transparent 25%, transparent 75%, rgba(13,90,120,.18) 75%);
  background-size: 56px 56px; background-position: 0 0, 28px 28px; opacity: .8;
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
}

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-eyebrow { color: var(--primary); font-weight: 700; letter-spacing: 2px; font-size: 13px; text-transform: uppercase; text-align: center; }
.section-sub { text-align: center; color: var(--muted); max-width: 440px; margin: 8px auto 0; font-size: 14px; }
.section-title { font-size: 32px; font-weight: 700; text-align: center; }

/* ---------- Hero (home) ---------- */
.hero {
  margin: 22px auto 0; width: min(1200px, 92%);
  background: linear-gradient(100deg, #2FB5DE 0%, #1FA0C9 100%);
  border-radius: 18px; color: #fff; text-align: center;
  padding: 70px 24px 170px; position: relative; overflow: hidden;
}
.hero h1 { font-size: 46px; font-weight: 700; letter-spacing: 1px; color: var(--dark); }
.hero h1 .dot { color: #fff; }
.hero p { max-width: 460px; margin: 14px auto 0; font-size: 15px; color: rgba(255,255,255,.95); }
.hero .hero-art {
  position: absolute; inset: auto 0 0 0; height: 120px;
  background: linear-gradient(0deg, rgba(14,37,48,.25), transparent);
}

/* Quote wizard card overlapping hero */
.quote-card {
  width: min(980px, 92%); margin: -120px auto 0; position: relative; z-index: 5;
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow); padding: 34px 38px;
}
.quote-card h3 { font-size: 20px; margin-bottom: 22px; }
.wizard-steps { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.wizard-steps .step { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--muted); }
.wizard-steps .step .num {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--light); color: var(--muted); font-size: 13px; border: 1px solid var(--line);
}
.wizard-steps .step.active { color: var(--primary); }
.wizard-steps .step.active .num { background: var(--primary); color: #fff; border-color: var(--primary); }

.toggle-pair { display: inline-flex; background: var(--light); border-radius: 10px; padding: 5px; margin-bottom: 24px; }
.toggle-pair button {
  border: none; background: transparent; padding: 10px 26px; border-radius: 8px;
  font-family: inherit; font-weight: 600; font-size: 14px; color: var(--muted); cursor: pointer; transition: .2s;
}
.toggle-pair button.active { background: var(--primary); color: #fff; box-shadow: 0 4px 10px rgba(41,171,212,.35); }

.field-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 9px;
  font-family: inherit; font-size: 14px; color: var(--ink); background: var(--white); transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(41,171,212,.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.quote-card .btn { margin-top: 24px; float: right; padding: 12px 46px; }
.quote-card::after { content: ""; display: block; clear: both; }

/* ---------- Split (about intro) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.split .media {
  border-radius: 16px; min-height: 320px; background:
    radial-gradient(120% 120% at 20% 10%, #d9f1f8 0%, #bfe8f4 45%, #8fd4e9 100%);
  display: grid; place-items: center; color: var(--primary-dark); font-weight: 600;
  border: 1px solid var(--line); overflow: hidden;
}
.split .media svg { width: 70%; height: auto; opacity: .9; }
.split p { color: var(--muted); margin-bottom: 16px; }
.split .btn { margin-top: 8px; }

/* ---------- Cards grid ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 0 22px; overflow: hidden; transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .thumb {
  height: 170px; background: linear-gradient(135deg, var(--primary-soft), #cdeef7);
  display: grid; place-items: center; color: var(--primary-dark);
}
.card .thumb svg { width: 84px; height: 84px; }
.card h4 { font-size: 17px; margin: 18px 20px 8px; }
.card p { color: var(--muted); font-size: 13.5px; margin: 0 20px 16px; flex: 1; }
.card .learn { margin: 0 20px; color: var(--primary); font-weight: 600; font-size: 14px; }
.card .learn:hover { text-decoration: underline; }

/* ---------- Services overlay cards (listing page) ---------- */
.services-overlay-section { padding-top: 24px; padding-bottom: 10px; }
.services-overlay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-overlay-card {
  position: relative;
  min-height: 430px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #0E2530;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-overlay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(14, 37, 48, .28);
}
.service-overlay-card--fallback {
  background-image: linear-gradient(145deg, #1C93B8 0%, #0E2530 100%);
}
.service-overlay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 18, 28, .88) 0%,
    rgba(8, 18, 28, .55) 42%,
    rgba(8, 18, 28, .12) 100%
  );
  z-index: 1;
}
.service-overlay-card__body {
  position: relative;
  z-index: 2;
  padding: 28px 24px 26px;
}
.service-overlay-card h4 {
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
  font-weight: 700;
}
.service-overlay-card p {
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.service-overlay-card .btn-learn {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.service-overlay-card .btn-learn:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

/* ---------- Why choose ---------- */
.why { background: var(--light); border-radius: 18px; width: min(1200px, 92%); margin: 0 auto; }
.why .inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; padding: 54px 48px; }
.why h2 { font-size: 30px; margin-bottom: 20px; }
.check-list li { display: flex; gap: 12px; margin-bottom: 14px; color: var(--ink); font-size: 14.5px; }
.check-list li::before {
  content: "✓"; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.why .media { border-radius: 14px; min-height: 280px; background: radial-gradient(120% 120% at 80% 20%, #d9f1f8, #9adcee); display: grid; place-items: center; }
.why .media svg { width: 65%; }
.about-ops .inner { align-items: start; }
.about-ops-copy .btn { margin-top: 8px; }
.about-ops-intro { color: var(--muted); margin-bottom: 20px; font-size: 14.5px; line-height: 1.7; }
.about-ops-intro p { margin-bottom: 14px; }
.about-ops-intro p:last-child { margin-bottom: 0; }
.about-ops-checklist { align-self: center; }
.about-ops-checklist .check-list { margin: 0; padding: 0; list-style: none; }

/* ---------- Logos strip ---------- */
.logos { text-align: center; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 30px; }
.logo-chip {
  border: 1px solid var(--line); border-radius: 10px; padding: 16px 30px; color: var(--muted);
  font-weight: 600; letter-spacing: 1px; background: var(--white); font-size: 13px;
}

/* ---------- Features band ---------- */
.features { background: var(--dark); color: #fff; border-radius: 18px; width: min(1200px, 92%); margin: 0 auto; }
.features .inner { padding: 56px 48px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; }
.features h2 { font-size: 28px; line-height: 1.3; }
.features .lead p { color: #B7C6CE; margin-top: 14px; font-size: 14.5px; }
.features .lead .btn { margin-top: 24px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feature {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 22px;
}
.feature h4 { font-size: 15.5px; margin-bottom: 8px; color: #fff; }
.feature p { color: #9FB3BC; font-size: 13px; margin-bottom: 10px; }
.feature a { color: var(--primary); font-size: 13px; font-weight: 600; }
.feature a:hover { text-decoration: underline; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 34px; align-items: start; }
.contact-grid h2 { font-size: 32px; margin-bottom: 20px; }
.map-box {
  border-radius: 14px; min-height: 420px; border: 1px solid var(--line);
  background:
    linear-gradient(rgba(41,171,212,.06), rgba(41,171,212,.06)),
    repeating-linear-gradient(0deg, transparent, transparent 39px, #e8eef1 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, #e8eef1 40px),
    #F7F5EF;
  position: relative; overflow: hidden;
}
.map-pin {
  position: absolute; width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 0 8px rgba(41,171,212,.25);
}
.map-label { position: absolute; font-size: 12px; font-weight: 600; color: var(--muted); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: var(--shadow); }
.form-card .field { margin-bottom: 16px; }

/* ---------- Careers ---------- */
.tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--line); margin: 34px 0 8px; overflow-x: auto; }
.tab-btn {
  display: flex; align-items: center; gap: 8px; padding: 13px 20px; background: none; border: none;
  font-family: inherit; font-size: 14.5px; font-weight: 600; color: var(--muted); cursor: pointer;
  border-bottom: 3px solid transparent; white-space: nowrap; transition: .2s;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.job-row {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; border-bottom: 1px solid var(--line);
}
.job-row .job-title { font-size: 19px; font-weight: 700; color: var(--primary); }
.job-row .job-title:hover { text-decoration: underline; }
.job-row .job-title::after { content: " ↗"; font-size: 14px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.empty-note { padding: 40px 4px; color: var(--muted); }

/* ---------- Application form ---------- */
.apply-card {
  width: min(640px, 92%); margin: 46px auto; background: var(--white);
  border-radius: 16px; box-shadow: var(--shadow); border: 1px solid var(--line); padding: 40px 38px;
}
.apply-card h2 { text-align: center; font-size: 26px; margin-bottom: 28px; }
.apply-card .field { margin-bottom: 18px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dropzone {
  border: 2px dashed var(--line); border-radius: 12px; text-align: center;
  padding: 34px 16px; color: var(--muted); font-size: 14px; margin-bottom: 22px; cursor: pointer; transition: .2s;
}
.dropzone:hover, .dropzone.drag { border-color: var(--primary); background: var(--primary-soft); }
.dropzone .up-ic {
  width: 40px; height: 40px; margin: 0 auto 10px; border-radius: 50%;
  border: 1px solid var(--primary); color: var(--primary); display: grid; place-items: center; font-size: 18px;
}
.dropzone b { color: var(--primary); }

/* ---------- Equipments ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.fleet-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.fleet-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fleet-item .thumb { height: 160px; background: linear-gradient(135deg, #EFF7FA, #DCF0F7); display: grid; place-items: center; color: var(--primary-dark); }
.fleet-item .thumb svg { width: 96px; height: 76px; }
.fleet-item h4 { font-size: 15px; padding: 16px 18px; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  width: min(1200px, 92%); margin: 30px auto; border-radius: 18px; overflow: hidden;
  background: linear-gradient(100deg, #DCF2F8 55%, #113648 55.2%); padding: 54px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.cta-band h2 { font-size: 30px; line-height: 1.35; color: var(--ink); max-width: 440px; }
.cta-band h2 span { color: var(--primary); }
.cta-band .btn { flex-shrink: 0; }

/* ---------- Terms ---------- */
.terms-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 42px 44px; margin: 44px 0;
}
.terms-card h2 { font-size: 22px; margin-bottom: 22px; }
.terms-list { list-style: decimal; padding-left: 22px; }
.terms-list li { margin-bottom: 14px; color: var(--ink); font-size: 14.5px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 34px; }
.team-card { text-align: center; }
.team-card .avatar {
  height: 210px; border-radius: 14px; background: linear-gradient(160deg, #E8F6FA, #C6E9F4);
  display: grid; place-items: center; color: var(--primary-dark); margin-bottom: 12px;
}
.team-card .avatar svg { width: 70px; height: 70px; }
.team-card h4 { font-size: 15px; }
.team-card span { font-size: 12.5px; color: var(--muted); }

/* ---------- Vision / Mission ---------- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.vm-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 30px;
  border-top: 4px solid var(--primary);
}
.vm-card h3 { font-size: 19px; margin-bottom: 10px; }
.vm-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #C6D3DA; margin-top: 70px; padding: 56px 0 0; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.footer-brand b { color: #fff; font-size: 22px; }
.footer-brand span { display: block; font-size: 8px; letter-spacing: 2.5px; color: var(--primary); font-weight: 600; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center; color: #fff; font-size: 14px; transition: .2s;
}
.socials a:hover { background: var(--primary); border-color: var(--primary); }
.footer-desc { max-width: 760px; font-size: 13.5px; color: #9FB3BC; margin-bottom: 40px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr 1.3fr 1.2fr; gap: 34px; padding-bottom: 46px; }
.footer-cols h5 { color: var(--primary); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-cols ul li { margin-bottom: 10px; }
.footer-cols ul a { font-size: 13.5px; color: #C6D3DA; }
.footer-cols ul a:hover { color: #fff; }
.contact-line { display: flex; gap: 12px; font-size: 13.5px; margin-bottom: 12px; align-items: flex-start; }
.contact-line .ic { color: var(--primary); flex-shrink: 0; }
.profile-box { background: var(--dark-2); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 24px; }
.profile-box h4 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.profile-box p { font-size: 12.5px; color: #9FB3BC; margin-bottom: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 12.5px; color: #8298A3; }

/* ============================================================
   RESPONSIVE — Tablet & Mobile (matches PDF mobile views)
   ============================================================ */
@media (max-width: 992px) {
  .field-row, .cards-3, .fleet-grid, .services-overlay-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .why .inner, .features .inner, .contact-grid, .vm-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .cta-band { background: linear-gradient(180deg, #DCF2F8 62%, #113648 62.2%); flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  /* Mobile nav */
  .main-nav {
    position: fixed; inset: 74px 0 auto 0; background: var(--white);
    flex-direction: column; gap: 0; padding: 10px 5%; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .3s; z-index: 90;
    box-shadow: 0 20px 30px rgba(14,37,48,.12);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--light); }
  .nav-toggle { display: block; }
  .lang-switch .label { display: none; }

  .hero { padding: 54px 20px 150px; }
  .hero h1 { font-size: 30px; }
  .quote-card { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .cards-3, .fleet-grid, .team-grid, .feature-grid, .two-col, .services-overlay-grid { grid-template-columns: 1fr; }
  .service-overlay-card { min-height: 360px; }
  .page-banner { padding: 38px 26px; }
  .page-banner h1 { font-size: 28px; }
  .section-title { font-size: 25px; }
  .why .inner, .features .inner { padding: 36px 24px; }
  .cta-band { padding: 38px 26px; }
  .cta-band h2 { font-size: 24px; }
  .terms-card { padding: 28px 22px; }
  .apply-card { padding: 30px 22px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .job-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .job-row .btn { width: 100%; text-align: center; }
  .quote-card .btn { float: none; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
