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

:root {
  --navy:     #003a66;
  --navy-dk:  #002a4d;
  --navy-lt:  #e6eef5;
  --red:      #e02454;
  --red-dk:   #b81d43;
  --red-lt:   #fdeef2;
  --slate:    #4a5e72;
  --muted:    #8fa3b4;
  --cloud:    #f4f7fb;
  --border:   #dde6ef;
  --white:    #ffffff;
  --radius:   12px;
  --radius-sm:7px;
  --shadow:   0 2px 16px rgba(0,58,102,0.08);
  --shadow-md:0 6px 30px rgba(0,58,102,0.13);
  --font:     'Bagoss','DM Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --max:      1160px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 15px; line-height: 1.65; color: var(--navy); background: var(--white); -webkit-font-smoothing: antialiased; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
h1,h2,h3,h4 { font-family: var(--font); color: var(--navy); line-height: 1.2; font-weight: 700; }
h2 { font-size: clamp(24px, 3vw, 36px); }
h3 { font-size: 18px; }
p  { color: var(--slate); }
a  { text-decoration: none; }
img { display: block; }

/* ── Section spacing ── */
section { padding: 72px 0; }

/* ── Pill label ── */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 4px 12px; border-radius: 100px;
}
.pill-navy { color: var(--white); background: var(--navy); }

/* ── Section head ── */
.sh { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.sh .pill { margin-bottom: 12px; }
.sh h2   { margin-bottom: 10px; }
.sh p    { font-size: 16px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  padding: 13px 28px; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none; transition: all 0.17s ease; white-space: nowrap;
}
.btn-red  { background: var(--red);  color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dk); border-color: var(--red-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(224,36,84,0.28); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,58,102,0.28); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy-lt); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 15px 36px; font-size: 16px; }

/* ════════════════════════════════════════
   STICKY NAV CTA
════════════════════════════════════════ */
.sticky-cta {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,58,102,0.08);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-logo { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 700; color: var(--navy); }
.sticky-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.sticky-actions { display: flex; gap: 10px; }

/* ════════════════════════════════════════
   1. HERO
════════════════════════════════════════ */
.hero {
  background: var(--navy);
  padding: 52px 0 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,36,84,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; left: 10%; bottom: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.hero-layout {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 52px; align-items: flex-end;
  position: relative; z-index: 2;
}
.hero-left { padding-bottom: 48px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 5px 13px; border-radius: 100px;
  margin-bottom: 16px;
}
.hero-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.hero-left h1 {
  font-size: clamp(28px, 3.8vw, 46px);
  color: var(--white); line-height: 1.12; margin-bottom: 14px;
}
.hero-left h1 em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 15.5px; color: rgba(255,255,255,0.65);
  line-height: 1.72; margin-bottom: 26px;
  text-align: justify; text-justify: inter-word;
}

/* Trust badges row */
.trust-badges {
  display: flex; gap: 0; margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); overflow: hidden; width: fit-content;
}
.tbadge {
  padding: 12px 20px; border-right: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center;
}
.tbadge:last-child { border-right: none; }
.tbadge-num { font-size: 20px; font-weight: 700; color: var(--white); line-height: 1; }
.tbadge-num em { color: var(--red); font-style: normal; }
.tbadge-label { font-size: 10px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; font-weight: 600; }

.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Hero form (right) */
.hero-form {
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 28px 26px 32px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
  align-self: flex-end; position: relative; z-index: 3;
}
.hform-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(224,36,84,0.12); border: 1px solid rgba(224,36,84,0.22);
  border-radius: var(--radius-sm);
  padding: 7px 11px; margin-bottom: 16px; width: fit-content;
}
.hform-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.hform-badge span { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.07em; }
.hero-form h3 { font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.hero-form > p { font-size: 12.5px; color: var(--muted); margin-bottom: 18px; }
.f-group { display: flex; flex-direction: column; gap: 9px; }
.f-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.f-label { font-size: 11px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; display: block; }
.f-input, .f-select {
  width: 100%; font-family: var(--font); font-size: 13.5px;
  padding: 10px 12px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--navy); outline: none;
  background: var(--white); transition: border-color 0.14s; appearance: none;
}
.f-input:focus, .f-select:focus { border-color: var(--red); }
.f-input::placeholder { color: #b0bec8; }
.f-submit {
  width: 100%; padding: 13px; margin-top: 2px;
  background: var(--red); color: var(--white);
  font-family: var(--font); font-size: 15px; font-weight: 700;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: background 0.16s;
}
.f-submit:hover { background: var(--red-dk); }
.f-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--muted); margin-top: 9px; justify-content: center;
}
.f-trust svg { width: 13px; height: 13px; color: #4caf50; flex-shrink: 0; }

/* Hero bottom trust strip */
.hero-trust {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0; position: relative; z-index: 2;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.trust-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.25); margin-right: 4px; }
.tpill {
  display: flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px; border-radius: 100px;
}
.tpill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ════════════════════════════════════════
   2. SERVICES
════════════════════════════════════════ */
.services-section { background: var(--cloud); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.scard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px;
  transition: all 0.18s ease;
}
.scard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(0,58,102,0.15); }
.scard-icon {
  width: 50px; height: 50px; border-radius: var(--radius-sm);
  background: var(--navy-lt); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.scard-icon svg { width: 22px; height: 22px; color: var(--navy); }
.scard h3 { font-size: 16px; margin-bottom: 9px; }
.scard p { font-size: 13.5px; line-height: 1.65; }
.scard-link {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 14px;
  font-size: 13px; font-weight: 700; color: var(--red); transition: gap 0.14s;
}
.scard-link:hover { gap: 9px; }
.scard-link svg { width: 12px; height: 12px; }

/* ════════════════════════════════════════
   3. JOB CATEGORIES
════════════════════════════════════════ */
.jobs-section { background: var(--white); }
.jobs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.jcard {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; display: flex; align-items: flex-start; gap: 16px;
  transition: all 0.17s ease;
}
.jcard:hover { box-shadow: var(--shadow); border-color: var(--navy); background: var(--cloud); }
.jcard-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--red-lt); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.jcard-icon svg { width: 20px; height: 20px; color: var(--red); }
.jcard h3 { font-size: 15px; margin-bottom: 6px; }
.jcard p { font-size: 13px; color: var(--slate); line-height: 1.6; }

/* ════════════════════════════════════════
   4. COUNTRIES
════════════════════════════════════════ */
.countries-section { background: var(--cloud); }
.countries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.ccard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 18px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: all 0.17s ease;
}
.ccard:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(0,58,102,0.2); }
.ccard-name {
  margin-bottom: 8px;
}
.ccard-name h3 { font-size: 15px; margin: 0; color: var(--navy); }
.ccard p { font-size: 12.5px; color: var(--slate); line-height: 1.55; flex: 1; }

/* ════════════════════════════════════════
   5. WHY CHOOSE US
════════════════════════════════════════ */
.why-section { background: var(--navy); }
.why-section .sh h2 { color: var(--white); }
.why-section .sh p  { color: rgba(255,255,255,0.58); }
.why-section .sh .pill { background: var(--red); color: var(--white); border: none; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.wcard {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px 22px;
  transition: background 0.17s;
}
.wcard:hover { background: rgba(255,255,255,0.09); }
.wcard-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(224,36,84,0.15); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.wcard-icon svg { width: 22px; height: 22px; color: var(--red); }
.wcard h3 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.wcard p  { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ════════════════════════════════════════
   6. PROCESS
════════════════════════════════════════ */
.process-section { background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: calc(12.5% + 8px); right: calc(12.5% + 8px);
  height: 2px; background: linear-gradient(90deg, var(--red), var(--navy));
  opacity: 0.2;
}
.pstep { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; }
.pstep-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--red);
  position: relative; z-index: 1; margin-bottom: 18px;
  box-shadow: 0 0 0 8px var(--white);
}
.pstep h3 { font-size: 15px; margin-bottom: 8px; }
.pstep p  { font-size: 13px; color: var(--slate); }

/* ════════════════════════════════════════
   7. TESTIMONIALS
════════════════════════════════════════ */
.testi-section { background: var(--cloud); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  transition: box-shadow 0.17s;
}
.tcard:hover { box-shadow: var(--shadow-md); }
.tcard-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: #f59e0b; font-size: 14px; }
.tcard-quote {
  font-size: 14px; color: var(--slate); line-height: 1.7; font-style: italic;
  margin-bottom: 18px;
}
.tcard-quote::before { content: '\201C'; }
.tcard-quote::after  { content: '\201D'; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white);
}
.tcard-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.tcard-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.tcard-disclaimer { font-size: 10px; color: var(--muted); margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border); font-style: normal; }

/* ════════════════════════════════════════
   8. LEAD FORM SECTION
════════════════════════════════════════ */
.lead-section {
  background: var(--navy);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.lead-section::before {
  content: '';
  position: absolute; left: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,36,84,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.lead-layout {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.lead-text .pill { background: var(--red); color: var(--white); border: none; margin-bottom: 16px; }
.lead-text h2 { color: var(--white); margin-bottom: 12px; }
.lead-text p  { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.lead-features { display: flex; flex-direction: column; gap: 10px; }
.lead-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.lead-feat svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* Lead form card */
.lead-form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.lead-form-card h3 { font-size: 20px; margin-bottom: 6px; }
.lead-form-card > p { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.lf-group { display: flex; flex-direction: column; gap: 12px; }
.lf-row2  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lf-input, .lf-select {
  width: 100%; font-family: var(--font); font-size: 14px;
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--navy); outline: none;
  background: var(--white); transition: border-color 0.14s; appearance: none;
}
.lf-input:focus, .lf-select:focus { border-color: var(--red); }
.lf-input::placeholder { color: #b0bec8; }
.lf-submit {
  width: 100%; padding: 14px;
  background: var(--red); color: var(--white);
  font-family: var(--font); font-size: 15px; font-weight: 700;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: background 0.16s; letter-spacing: 0.02em;
}
.lf-submit:hover { background: var(--red-dk); }
.lf-trust {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  font-size: 11px; color: var(--muted); margin-top: 10px;
}
.lf-trust svg { width: 13px; height: 13px; color: #4caf50; }
.lf-disclaimer {
  font-size: 10.5px; color: var(--muted); margin-top: 12px;
  padding-top: 10px; border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   9. FAQ
════════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
.faq-intro .pill { margin-bottom: 14px; }
.faq-intro h2   { margin-bottom: 12px; }
.faq-intro p    { font-size: 15px; margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.fitem {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.15s;
}
.fitem.open { border-color: rgba(224,36,84,0.3); }
.fq {
  width: 100%; text-align: left; background: var(--white); border: none;
  padding: 16px 18px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-family: var(--font); font-size: 14.5px; font-weight: 700; color: var(--navy);
  transition: color 0.14s;
}
.fq:hover { color: var(--red); }
.fitem.open .fq { color: var(--red); }
.ficon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-lt); display: flex; align-items: center; justify-content: center;
  transition: transform 0.22s ease, background 0.14s;
}
.ficon svg { width: 11px; height: 11px; stroke: var(--navy); transition: stroke 0.14s; }
.fitem.open .ficon { transform: rotate(45deg); background: var(--red); }
.fitem.open .ficon svg { stroke: var(--white); }
.fa { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.fitem.open .fa { max-height: 200px; }
.fa-inner {
  padding: 12px 18px 16px; font-size: 14px; color: var(--slate);
  line-height: 1.72; border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════
   10. FOOTER
════════════════════════════════════════ */
.footer { background: var(--navy-dk); padding: 32px 0 20px; }

/* Top row: logo left, contact+links right — grid for clean alignment */
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 700; color: var(--white); }
.footer-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* Right column: reg line + policy links, all left-aligned within column */
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-reg-line { font-size: 12px; color: rgba(255,255,255,0.38); text-align: right; line-height: 1.5; }
.footer-policy-row { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-policy-row a { font-size: 12.5px; color: rgba(255,255,255,0.5); transition: color 0.14s; }
.footer-policy-row a:hover { color: var(--white); }

/* Bottom row: copyright left, disclaimer full width below */
.footer-bottom {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.22); line-height: 1.55; }

/* ════════════════════════════════════════
   MOBILE STICKY CTA
════════════════════════════════════════ */
.mob-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 10px 16px; z-index: 998;
  box-shadow: 0 -4px 16px rgba(0,58,102,0.1);
}
.mob-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-layout   { grid-template-columns: 1fr 360px; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid     { grid-template-columns: repeat(2, 1fr); }
  .countries-grid{ grid-template-columns: repeat(3, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .lead-layout   { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout    { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  section        { padding: 52px 0; }
  .hero          { padding: 36px 0 0; }

  /* ── MOBILE HERO: form first, then left content ── */
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
    /* Place form (column 2) first via order */
  }
  .hero-left {
    padding-bottom: 0;
    order: 2;         /* text content goes below form on mobile */
    padding-top: 28px;
    padding-bottom: 32px;
  }
  .hero-form {
    order: 1;         /* form appears FIRST on mobile */
    border-radius: var(--radius);
    margin: 0;
  }

  .trust-badges  { flex-wrap: wrap; }
  .hero-sub      { text-align: left; }   /* justify less readable on small screens */
  .services-grid { grid-template-columns: 1fr; }
  .jobs-grid     { grid-template-columns: 1fr; }
  .countries-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .lead-layout   { grid-template-columns: 1fr; }
  .lf-row2       { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; gap: 16px; }
  .footer-right  { align-items: flex-start; }
  .footer-reg-line { text-align: left; }
  .footer-policy-row { justify-content: flex-start; gap: 12px; }
  .mob-cta       { display: none; }
  body           { padding-bottom: 0; }
}

.testi-avatar{
  width: 40px;
  border-radius: 50%;
}