/* ===================================================
   AL-FURSAN RECRUITMENT — Main Stylesheet
   Color palette drawn from the gold logo
   =================================================== */

:root {
  --g4: #D4A833;   /* bright gold  */
  --g5: #B8930E;   /* primary gold */
  --g7: #8B6D0A;   /* dark gold    */
  --g9: #5C4707;   /* deepest gold */
  --ink:     #1e1a0e;
  --muted:   #6b5f3a;
  --bg:      #ffffff;
  --surface: #fdfaf0;
  --radius:  14px;
  --shadow:  0 12px 36px rgba(139,109,10,.16);
  --soft:    0 4px 18px rgba(0,0,0,.07);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: 'Cairo', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.8; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }

/* ===== LAYOUT WRAPPER ===== */
.wrap { width: min(calc(100% - 2.4rem), 1160px); margin-inline: auto; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  background: rgba(255,255,255,.97);
  border-bottom: 3px solid var(--g5);
  transition: box-shadow .25s;
}
#header.scrolled { box-shadow: 0 6px 24px rgba(139,109,10,.18); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .55rem clamp(.8rem,3vw,2rem);
  width: min(calc(100% - 1rem), 1200px);
  margin-inline: auto;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.logo-img  {
  width:  clamp(42px,5.5vw,56px);
  height: clamp(42px,5.5vw,56px);
  object-fit: contain;
  border-radius: 10px;
  padding: 2px;
  background: #fff;
  border: 2px solid var(--g5);
}
.logo-name {
  display: block;
  font-weight: 800;
  font-size: clamp(15px,2.8vw,22px);
  color: var(--g7);
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: clamp(10px,1.6vw,12px);
  color: var(--muted);
  font-weight: 600;
  white-space: normal;
  max-width: 340px;
  line-height: 1.4;
}

/* Nav */
.header-nav { display: flex; gap: clamp(.8rem,2.5vw,2rem); margin-inline: auto; }
.header-nav a {
  font-weight: 700;
  font-size: clamp(13px,1.8vw,15px);
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.header-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 2px;
  background: var(--g5);
  transform: scaleX(0);
  transition: transform .2s;
}
.header-nav a:hover { color: var(--g5); }
.header-nav a:hover::after { transform: scaleX(1); }

/* CTA buttons in header */
.header-cta { display: flex; gap: .5rem; flex-shrink: 0; }
.hdr-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(12px,1.7vw,14px);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.hdr-call {
  background: var(--g5);
  color: #fff;
  border: 2px solid var(--g5);
}
.hdr-call:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(184,147,14,.3); }
.hdr-wa {
  background: transparent;
  color: var(--g7);
  border: 2px solid var(--g5);
}
.hdr-wa:hover { background: var(--g5); color: #fff; transform: translateY(-2px); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--g7); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: .5rem 1.2rem 1rem;
  border-top: 1px solid #f0e8cc;
}
.mobile-menu.open { display: flex; }
.mm-link {
  padding: .7rem 0;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid #f5f0df;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mm-link:last-child { border-bottom: none; }
.mm-phone { color: var(--g7); }
.mm-wa    { color: #25d366; }

main { padding-top: var(--hh, 72px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(100svh, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(92,71,7,.82) 0%, rgba(30,26,14,.75) 60%, rgba(0,0,0,.65) 100%),
    url('../assets/hero.jpg') center/cover no-repeat;
  z-index: 0;
}

/* Large watermark letters */
.hero-watermark {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(42vw, 420px);
  font-weight: 900;
  color: rgba(255,255,255,.04);
  letter-spacing: -8px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem,5vw,3rem) clamp(1rem,4vw,2rem);
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(212,168,51,.2);
  border: 1px solid rgba(212,168,51,.5);
  color: var(--g4);
  font-size: clamp(12px,2vw,14px);
  font-weight: 700;
  padding: .32rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(28px,6vw,52px);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero h1 span { color: var(--g4); }

.hero p {
  font-size: clamp(14px,2.8vw,18px);
  color: rgba(255,255,255,.9);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 1.6rem;
}

/* Hero CTA */
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-bottom: 2rem; }

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1.8rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: clamp(14px,2.5vw,17px);
  transition: transform .2s, box-shadow .2s;
}
.btn-hero-solid  { background: var(--g5); color: #fff; border: 2px solid var(--g5); }
.btn-hero-solid:hover  { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(184,147,14,.45); }
.btn-hero-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-hero-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }

/* Stats strip inside hero */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: .6rem 1.8rem;
  display: inline-flex;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: clamp(18px,4vw,26px); font-weight: 900; color: var(--g4); line-height: 1; }
.stat span   { font-size: 11px; color: rgba(255,255,255,.75); }
.stat-sep    { width: 1px; height: 30px; background: rgba(255,255,255,.25); }

/* Wave divider at hero bottom */
.hero-wave {
  position: absolute;
  bottom: -1px;
  inset-inline: 0;
  z-index: 2;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: clamp(40px,6vw,80px); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-light { background: var(--bg); }

section { padding-block: clamp(52px,7vw,110px); }

.section-head { text-align: center; margin-bottom: clamp(30px,4vw,64px); }
.section-head--light .section-label { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.3); }
.section-head.section-head--light h2 { color: #fff; }
.section-head--light p  { color: rgba(255,255,255,.8); }

.section-label {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--g4);
  color: var(--g7);
  font-size: 12px;
  font-weight: 700;
  padding: .22rem .8rem;
  border-radius: 999px;
  letter-spacing: .04em;
  margin-bottom: .6rem;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(24px,5vw,40px);
  font-weight: 900;
  color: var(--g9);
  margin-bottom: .4rem;
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--g5), var(--g4));
  margin: 8px auto 0;
}
.section-head p {
  color: var(--muted);
  font-size: clamp(14px,2.4vw,17px);
  max-width: 60ch;
  margin-inline: auto;
}

/* ============================================================
   SERVICES — horizontal rows
   ============================================================ */
#services { background: var(--surface); }

.services-list {
  width: min(calc(100% - 2.4rem), 900px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(18px,3vw,32px) clamp(20px,4vw,40px);
  border: 1px solid #f0e8cc;
  box-shadow: var(--soft);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.svc-row::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--g4), var(--g7));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity .25s;
}
.svc-row:hover { transform: translateX(-5px); box-shadow: var(--shadow); border-color: var(--g4); }
.svc-row:hover::before { opacity: 1; }

.svc-num {
  font-size: clamp(28px,5vw,48px);
  font-weight: 900;
  color: #f0e8cc;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.svc-icon-wrap {
  flex-shrink: 0;
  width: clamp(52px,7vw,72px);
  height: clamp(52px,7vw,72px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g5), var(--g9));
  color: #fff;
  font-size: clamp(20px,4vw,30px);
  box-shadow: 0 6px 18px rgba(139,109,10,.25);
}

.svc-body h3 { font-size: clamp(17px,3vw,22px); font-weight: 800; margin-bottom: .3rem; color: var(--g9); }
.svc-body p  { font-size: clamp(13px,2.2vw,15px); color: var(--muted); margin: 0; }

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certs-section {
  position: relative;
  background: linear-gradient(135deg, var(--g7) 0%, var(--g9) 100%);
  padding-block: clamp(52px,7vw,110px);
  overflow: hidden;
}
.certs-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.certs-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px,3vw,32px);
  justify-content: center;
  width: min(calc(100% - 2.4rem), 1000px);
  margin-inline: auto;
}

.cert-tile {
  position: relative;
  background: #fff;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 20px;
  padding: clamp(24px,4vw,40px) clamp(20px,3vw,36px);
  text-align: center;
  color: var(--ink);
  flex: 1 1 220px;
  max-width: 280px;
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.cert-tile:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,.25); }

.cert-glow {
  position: absolute;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(212,168,51,.4) 0%, transparent 70%);
  top: -30px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cert-tile img  { height: clamp(44px,7vw,60px); object-fit: contain; margin: 0 auto 14px; }
.cert-tile h3   { font-size: clamp(16px,2.8vw,20px); font-weight: 800; margin-bottom: .3rem; color: var(--g7); }
.cert-tile p    { font-size: clamp(12px,2vw,14px); color: var(--muted); }

/* ============================================================
   COUNTRIES — pill strip
   ============================================================ */
.countries-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px,2vw,20px);
  justify-content: center;
  width: min(calc(100% - 2.4rem), 1000px);
  margin-inline: auto;
}

.country-pill {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--surface);
  border: 2px solid #f0e8cc;
  border-radius: 999px;
  padding: .55rem 1.2rem .55rem .6rem;
  font-size: clamp(14px,2.4vw,17px);
  font-weight: 700;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: default;
}
.country-pill img {
  width: 44px;
  height: 32px;
  border-radius: 50px;
  object-fit: cover;
  border: 1.5px solid rgba(0,0,0,.08);
  flex-shrink: 0;
}
.country-pill:hover { transform: translateY(-3px) scale(1.04); border-color: var(--g5); box-shadow: 0 8px 20px rgba(184,147,14,.18); }

/* ============================================================
   WHY US
   ============================================================ */
.why-section { position: relative; background: var(--surface); overflow: hidden; }
.why-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--g4) 1px, transparent 1px),
    linear-gradient(90deg, var(--g4) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .035;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: clamp(14px,2.5vw,24px);
  width: min(calc(100% - 2.4rem), 1160px);
  margin-inline: auto;
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(22px,3.5vw,38px);
  border: 1px solid #f0e8cc;
  box-shadow: var(--soft);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--g4); }

.why-icon {
  width: clamp(52px,8vw,68px);
  height: clamp(52px,8vw,68px);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--g4), var(--g7));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: clamp(20px,4vw,28px);
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(139,109,10,.22);
}
.why-card h3 { font-size: clamp(16px,2.8vw,20px); font-weight: 800; color: var(--g9); margin-bottom: .3rem; }
.why-card p  { font-size: clamp(13px,2vw,15px); color: var(--muted); }

/* ============================================================
   TIMELINE (Steps)
   ============================================================ */
.timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: min(calc(100% - 2.4rem), 1060px);
  margin-inline: auto;
}

.tl-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 .5rem;
}

.tl-circle {
  width: clamp(52px,8vw,72px);
  height: clamp(52px,8vw,72px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g5), var(--g9));
  color: #fff;
  font-size: clamp(20px,4vw,28px);
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(139,109,10,.3);
  z-index: 1;
  position: relative;
  transition: transform .25s;
}
.tl-item:hover .tl-circle { transform: scale(1.1); }
.tl-circle--end { background: linear-gradient(135deg, #22c55e, #16a34a); }

/* Horizontal connector line */
.tl-connector {
  position: absolute;
  top: calc(clamp(52px,8vw,72px) / 2);
  inset-inline-start: calc(50% + clamp(26px,4vw,36px));
  width: calc(100% - clamp(52px,8vw,72px));
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--g4) 0, var(--g4) 6px, transparent 6px, transparent 14px);
}

.tl-item h3 {
  font-size: clamp(15px,2.5vw,18px);
  font-weight: 800;
  color: var(--g9);
  margin: 14px 0 .3rem;
}
.tl-item p { font-size: clamp(12px,1.9vw,14px); color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: linear-gradient(135deg, var(--g5) 0%, var(--g9) 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2.4rem), 900px);
  margin-inline: auto;
  text-align: center;
}

.contact-header { margin-bottom: clamp(24px,4vw,48px); }
.contact-header h2 { font-size: clamp(26px,5vw,42px); font-weight: 900; color: #fff; margin-bottom: .3rem; }
.contact-header p  { color: rgba(255,255,255,.8); font-size: clamp(14px,2.5vw,18px); }

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px,3vw,28px);
  justify-content: center;
}

.ccard {
  flex: 1 1 180px;
  max-width: 240px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 18px;
  padding: clamp(22px,4vw,36px) clamp(16px,3vw,28px);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  backdrop-filter: blur(10px);
  transition: transform .25s, background .25s;
}
.ccard:hover { transform: translateY(-6px); background: rgba(255,255,255,.18); }
.ccard-icon  { font-size: clamp(28px,6vw,44px); color: var(--g4); }
.ccard-label { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.ccard-val   { font-size: clamp(16px,3.5vw,22px); font-weight: 900; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #110e03; color: #fff; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(24px,4vw,60px);
  padding: clamp(32px,5vw,60px) clamp(1.2rem,4vw,4rem);
  max-width: 1160px;
  margin-inline: auto;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo {
  width: clamp(60px,8vw,80px);
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  padding: 4px;
}
.footer-brand p { font-size: clamp(13px,2vw,15px); color: rgba(255,255,255,.55); line-height: 1.7; max-width: 36ch; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: rgba(255,255,255,.7);
  transition: transform .2s, border-color .2s, color .2s;
}
.footer-social a:hover { transform: translateY(-3px); border-color: var(--g4); color: var(--g4); }

.footer-map-wrap { border-radius: var(--radius); overflow: hidden; }
.footer-map {
  width: 100%;
  height: clamp(220px,30vw,300px);
  border: 0;
  border-radius: var(--radius);
  display: block;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.2rem,4vw,4rem);
  max-width: 1160px;
  margin-inline: auto;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-links { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; }
.footer-links a { color: rgba(255,255,255,.5); font-weight: 600; display: flex; align-items: center; gap: .35rem; transition: color .2s; }
.footer-links a:hover { color: var(--g4); }
.footer-links i { color: var(--g5); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  inset-block-end: 1.6rem;
  inset-inline-end: 1.6rem;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.55); }

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, .wa-pulse { animation: none !important; transition: none !important; }
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-cta  { display: none; }
  .burger      { display: flex; margin-inline-start: auto; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .logo-sub { display: none; }
  main { padding-top: var(--hh, 64px); }

  .hero-stats { flex-wrap: wrap; gap: .6rem 1rem; padding: .5rem 1rem; }
  .stat-sep   { display: none; }

  .svc-row    { flex-direction: column; text-align: center; padding: 1.2rem 1rem; }
  .svc-num    { font-size: 32px; min-width: unset; }
  .svc-row::before { inset-inline-start: 0; inset-block-start: 0; inset-block-end: auto; width: 100%; height: 4px; border-radius: 4px 4px 0 0; }

  /* Timeline stacks vertically */
  .timeline { flex-direction: column; align-items: center; gap: 1rem; }
  .tl-item  { width: 100%; max-width: 340px; }
  .tl-connector { display: none; }

  .certs-row { flex-direction: column; align-items: center; }
  .cert-tile { max-width: 100%; flex-basis: auto; }

  .contact-cards { flex-direction: column; align-items: center; }
  .ccard { max-width: 100%; width: 100%; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links  { justify-content: center; }
}
