/* ============================================================
   ResumeAnna — brand stylesheet
   Palette from logo/flyer: orange #F04E23 · ink navy #1C2433 · cream #FAF4EE
   ============================================================ */

:root {
  --orange: #F04E23;
  --orange-dark: #D63E12;
  --orange-soft: #FDE8E0;
  --grad: linear-gradient(135deg, #FF7A3D 0%, #F04E23 55%, #E23A0E 100%);
  --ink: #1C2433;
  --ink-2: #2A3448;
  --body: #46505F;
  --muted: #75808F;
  --bg: #FAF4EE;
  --card: #FFFFFF;
  --line: #F0E2D6;
  --gold: #FFB000;
  --wa: #25D366;
  --wa-dark: #1EBE5A;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(28, 36, 51, .08);
  --shadow-lg: 0 22px 50px rgba(28, 36, 51, .14);
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --wrap: 1120px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; }

.container { width: min(var(--wrap), 92%); margin-inline: auto; }

section { padding: 72px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(240, 78, 35, .35); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(240, 78, 35, .45); }

.btn-outline { border-color: var(--orange); color: var(--orange); background: transparent; }
.btn-outline:hover { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(240, 78, 35, .3); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, .35); }
.btn-wa:hover { background: var(--wa-dark); box-shadow: 0 12px 28px rgba(37, 211, 102, .45); color: #fff; }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }

.btn-lg { padding: 16px 34px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; gap: 14px; height: 74px; }
.brand { flex: none; display: flex; align-items: center; }

/* Back navigation (sub-pages) */
.back-btn {
  flex: none;
  width: 40px; height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(28, 36, 51, .06);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.back-btn svg { width: 19px; height: 19px; }
.back-btn:hover { border-color: var(--orange); color: var(--orange); transform: translateX(-2px); }
.back-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.brand img { height: 40px; width: auto; mix-blend-mode: multiply; }

.site-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.site-nav a:not(.btn) {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2.5px;
  border-radius: 2px;
  background: var(--orange);
  transition: width .25s ease;
}
.site-nav a:not(.btn):hover::after,
.site-nav a.active::after { width: 100%; }
.site-nav a.active { color: var(--orange); }

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px 0 16px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(28, 36, 51, .06);
}
.nav-toggle .bars { display: inline-flex; flex-direction: column; gap: 4px; }
.nav-toggle .bars span {
  width: 20px; height: 2.4px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
body.nav-open .nav-toggle .bars span:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
body.nav-open .nav-toggle .bars span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle .bars span:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }

/* ---------- Hero (centered) ---------- */
.hero {
  position: relative;
  padding: 96px 0 92px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #FFF6F1 0%, #FDF2EB 38%, var(--bg) 100%);
}
/* dotted brand pattern — right */
.hero::before {
  content: "";
  position: absolute;
  top: 54px; right: -34px;
  width: 250px; height: 190px;
  background-image: radial-gradient(var(--orange) 2.2px, transparent 2.4px);
  background-size: 19px 19px;
  opacity: .18;
  pointer-events: none;
}
/* dotted brand pattern — left */
.hero::after {
  content: "";
  position: absolute;
  bottom: 34px; left: -34px;
  width: 220px; height: 165px;
  background-image: radial-gradient(var(--orange) 2.2px, transparent 2.4px);
  background-size: 19px 19px;
  opacity: .14;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-inline: auto;
}
/* soft glow behind the headline */
.hero-inner::before {
  content: "";
  position: absolute;
  top: -70px; left: 50%;
  transform: translateX(-50%);
  width: min(720px, 100%);
  height: 380px;
  background: radial-gradient(ellipse at center, rgba(240, 78, 35, .13), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* longer positioning line — allow it to wrap instead of overflowing on phones */
.eyebrow-no1 {
  max-width: 100%;
  text-align: center;
  letter-spacing: .04em;
  line-height: 1.45;
  padding: 9px 18px;
}
.eyebrow-no1 b { font-weight: 800; color: var(--orange); }
.eyebrow-no1::before { flex: none; }
@media (max-width: 560px) {
  .eyebrow-no1 { font-size: 11.5px; padding: 8px 14px; gap: 7px; }
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--orange);
  background: linear-gradient(105deg, #FF8A4C 0%, #F04E23 48%, #DC3A0C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .lead {
  font-size: clamp(16.5px, 2vw, 19px);
  max-width: 56ch;
  margin: 0 auto 28px;
}
.hero .lead strong { color: var(--ink); }

/* centre every hero element */
.hero .eyebrow,
.hero .rating,
.hero .hero-cta,
.hero .hero-trust { justify-content: center; }

/* Star rating */
.rating { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 3px; font-size: 24px; line-height: 1; }
.stars span {
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(255, 176, 0, .45);
  display: inline-block;
}
.js .stars span {
  opacity: 0;
  transform: scale(.2) rotate(-40deg);
  animation:
    starPop .5s cubic-bezier(.34, 1.56, .64, 1) forwards var(--d, 0s),
    starTwinkle 2.6s ease-in-out infinite calc(var(--d, 0s) + 1.2s);
}
@keyframes starPop { to { opacity: 1; transform: scale(1) rotate(0deg); } }
@keyframes starTwinkle { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }
.rating p { font-size: 15px; color: var(--muted); }
.rating strong { color: var(--ink); font-family: var(--font-head); }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.hero-cta .sub-note { font-size: 14px; color: var(--muted); }
.hero-cta .sub-note b { color: var(--ink); font-family: var(--font-head); }

/* Hero stats */
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stats .stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.hero-stats .stat span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ---------- Section headers ---------- */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; letter-spacing: -.015em; margin-bottom: 12px; }
.sec-head p { color: var(--muted); font-size: 16.5px; }

/* ---------- Service tiles ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  justify-content: center;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(240, 78, 35, .35); }

.svc-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.svc-icon svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 6px; }
.svc-tag { font-size: 13px; font-weight: 600; color: var(--orange-dark); letter-spacing: .02em; margin-bottom: 14px; }
.svc-card > p { font-size: 15px; margin-bottom: 18px; }

.price-row { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 20px; }
.price-row .from { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -.02em;
  line-height: 1;
}
.price .rupee { font-size: 24px; vertical-align: 6px; margin-right: 2px; }

.svc-feats { margin-bottom: 24px; flex: 1; text-align: left; align-self: stretch; }
.svc-feats li { display: flex; gap: 10px; font-size: 14.5px; padding: 5.5px 0; color: var(--body); }
.svc-feats li::before {
  content: "✓";
  flex: none;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 3px;
}

.pop-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(240, 78, 35, .4);
  white-space: nowrap;
}
.svc-card.popular { border-color: var(--orange); border-width: 2px; }

/* ---------- Combo strip ---------- */
.combo {
  margin-top: 40px;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 34px 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.combo::before {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 78, 35, .45), transparent 70%);
}
.combo-info { flex: 1; min-width: 260px; position: relative; }
.combo-badge {
  display: inline-block;
  background: rgba(240, 78, 35, .18);
  border: 1px solid rgba(240, 78, 35, .55);
  color: #FFB59D;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 12px;
}
.combo h3 { color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.combo h3 .price { font-size: 30px; margin-left: 4px; }
.combo p { color: #B9C2D0; font-size: 15px; }
.combo .btn { position: relative; }

/* ---------- Category pills ---------- */
.cat-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: 0 4px 12px rgba(28, 36, 51, .05);
  transition: transform .2s ease, border-color .2s ease;
}
.cat-pill:hover { transform: translateY(-3px); border-color: var(--orange); }
.cat-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }

/* ---------- Trust strip (dark) ---------- */
.trust { background: var(--ink); padding: 46px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.trust-item { display: flex; align-items: center; gap: 15px; }
.trust-icon {
  width: 50px; height: 50px; flex: none;
  border-radius: 14px;
  background: rgba(240, 78, 35, .16);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.trust-icon svg { width: 25px; height: 25px; }
.trust-item h4 { color: #fff; font-size: 15.5px; font-weight: 600; margin-bottom: 2px; }
.trust-item p { color: #98A2B3; font-size: 13.5px; line-height: 1.4; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow);
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(240, 78, 35, .35);
}
.step h4 { font-size: 16.5px; font-weight: 600; margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 60px 0 52px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute;
  top: 26px; right: 4%;
  width: 170px; height: 130px;
  background-image: radial-gradient(var(--orange) 2.2px, transparent 2.4px);
  background-size: 18px 18px;
  opacity: .14;
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.page-hero .lead { max-width: 62ch; margin: 0 auto 22px; font-size: 17px; }
.page-hero .rating { justify-content: center; margin-bottom: 6px; }
.page-hero .cat-grid { margin-top: 10px; }
.crumb { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; display: inline-block; }
.crumb a { color: var(--orange); font-weight: 600; }
.crumb a:hover { text-decoration: underline; }

/* ---------- Tier cards (resume plans) ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; justify-content: center; }
.tier-note { text-align: center; margin-top: 26px; font-size: 14px; color: var(--muted); }
.tier-note strong { color: var(--ink); }

/* ---------- Sample cards ---------- */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
  gap: 20px;
}
.sample-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(28, 36, 51, .06);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.sample-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(240, 78, 35, .3); }
/* 17/22 matches the sample scans, so the full page shows with no cropping */
.thumb {
  position: relative;
  aspect-ratio: 17 / 22;
  background: linear-gradient(160deg, #F7F3EE, #EFE9E2);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.sample-card:hover .thumb img { transform: scale(1.035); }
.thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  transition: transform .45s ease;
  z-index: 2;
}
/* soft inner edge so the scan reads as a sheet of paper */
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(28, 36, 51, .05), inset 0 -22px 30px -26px rgba(28, 36, 51, .3);
}
/* ATS score — small pill on the top-right corner of the resume */
.ats-badge {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 4;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  color: #fff;
  background: rgba(18, 112, 60, .94);
  border-radius: 7px;
  padding: 4px 8px;
  box-shadow: 0 3px 10px rgba(18, 112, 60, .35);
}
.ats-badge b { font-size: 9.5px; font-weight: 700; letter-spacing: .06em; opacity: .92; }
.thumb-ph {
  position: absolute;
  inset: 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thumb-ph .ph-head { display: flex; gap: 9px; align-items: center; margin-bottom: 4px; }
.thumb-ph .ph-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--orange-soft); flex: none; }
.thumb-ph .ph-name { height: 8px; border-radius: 4px; background: var(--ink); opacity: .82; width: 60%; }
.thumb-ph .ln { height: 6px; border-radius: 4px; background: #EDF0F4; }
.thumb-ph .ln.or { background: var(--orange-soft); width: 42%; margin-top: 6px; }
.ph-soon {
  margin-top: auto;
  align-self: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  text-align: center;
}
.sample-body { padding: 12px 13px 14px; display: flex; flex-direction: column; gap: 8px; }
.sample-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sample-row h3 { font-size: 14.5px; font-weight: 600; }
.sample-row h3 .num { color: var(--orange); font-weight: 800; }
.mini-stars { color: var(--gold); font-size: 12px; letter-spacing: 1.2px; white-space: nowrap; }
.sample-price { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--orange); line-height: 1.1; }
.sample-price .rupee { font-size: 13px; }
.sample-meta { font-size: 11.5px; color: var(--muted); text-align: right; }
.sample-body .btn { margin-top: 2px; padding: 9px 14px; font-size: 13px; }

/* ============================================================
   Info panels — "What you get" + "Good to know"
   Both share one structure: accent rule + title row, a divider,
   then a list on a fixed marker gutter so every row lines up.
   ============================================================ */
.includes,
.note-box {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 28px 30px;
  text-align: left;
}

/* --- shared header row --- */
.includes h3,
.note-box h4 {
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  margin: 0 0 20px;
  padding-bottom: 16px;
}
.includes h3::before,
.note-box h4::before {
  content: "";
  flex: none;
  width: 4px;
  align-self: stretch;
  min-height: 17px;
  border-radius: 2px;
  background: var(--grad);
}

/* --- shared list --------------------------------------------------------
   Hanging indent, NOT grid/flex: the <li> must stay a plain block so that
   inline markup (<strong>, links) keeps flowing as one paragraph. The marker
   is absolutely positioned into the indent, which keeps every row aligned.
   --mark = marker size, --gap = space after it, --line = line-height in px
   (px, not em: the marker's `top` calc must not resolve em against the
   marker's own font-size).
   ------------------------------------------------------------------------ */
.includes ul li,
.note-box ul li {
  position: relative;
  padding: var(--pad-y, 0px) 0 var(--pad-y, 0px) calc(var(--mark) + var(--gap));
  line-height: var(--line);
  min-width: 0;
  overflow-wrap: break-word;
}
.includes ul li::before,
.note-box ul li::before {
  position: absolute;
  left: 0;
  width: var(--mark);
  height: var(--mark);
  /* centre the marker on the first line of text */
  top: calc(var(--pad-y, 0px) + (var(--line) - var(--mark)) / 2);
}

/* ---------- What you get ---------- */
.includes {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.includes h3 {
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.includes h3 .amt {
  margin-left: auto;
  flex: none;
  background: var(--grad);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(240, 78, 35, .28);
}
.includes ul { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 30px; }
.includes ul li {
  --mark: 20px;
  --gap: 11px;
  --line: 23px;
  --pad-y: 7px;
  font-size: 15px;
}
.includes ul li::before {
  content: "✓";
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: var(--mark);
  text-align: center;
}

/* ---------- Good to know ---------- */
.note-box {
  background: #FFF8F0;
  border: 1px solid #F3DCC4;
}
.note-box h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange-dark);
  border-bottom: 1px solid #F3DCC4;
}
.note-box ul { display: grid; gap: 14px; }
.note-box ul li {
  --mark: 7px;
  --gap: 13px;
  --line: 24px;
  font-size: 14.5px;
  color: var(--body);
}
.note-box ul li::before {
  content: "";
  border-radius: 50%;
  background: var(--orange);
}
.note-box strong { color: var(--ink); }

/* ---------- Policy strip ---------- */
.policy { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.policy .chip { font-weight: 500; color: var(--body); }
.policy .chip b { color: var(--ink); font-weight: 700; }
/* "90+ ATS Score" — the one chip that should stand out */
.policy .chip-ats,
.chip-ats {
  font-weight: 700;
  color: #12703C;
  background: #E8F7EE;
  border-color: #C6EAD5;
  box-shadow: 0 4px 12px rgba(18, 112, 60, .12);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: 0 4px 12px rgba(28, 36, 51, .05);
}
.chip svg { width: 15px; height: 15px; color: var(--orange); flex: none; }

/* ---------- Assurance strip (services section) ---------- */
.assure {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  margin: -14px auto 34px;
  max-width: 900px;
  text-align: center;
}
.assure-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 6px 16px rgba(28, 36, 51, .06);
}
.assure-item svg { width: 17px; height: 17px; flex: none; color: var(--orange); }
.assure-hero {
  color: #fff;
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(240, 78, 35, .32);
}
.assure-hero svg { color: #fff; }

@media (max-width: 720px) {
  .assure { gap: 8px; margin: -6px auto 28px; }
  .assure-item { font-size: 12.8px; padding: 9px 14px; gap: 7px; }
  .assure-item svg { width: 15px; height: 15px; }
}

/* ---------- DIY editable-template band ---------- */
.diy-wrap { padding: 26px 0 0; }
.diy-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #FFF6F2 0%, #FFEFE8 100%);
  border: 1.5px dashed rgba(240, 78, 35, .45);
}
.diy-text { min-width: 0; }
.diy-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 10px;
}
.diy-band h3 { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.diy-band p { font-size: 14.5px; color: var(--body); margin: 0; }
.diy-band .btn { flex: none; }

@media (max-width: 720px) {
  .diy-wrap { padding-top: 20px; }
  .diy-band {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 22px 18px;
  }
  .diy-band h3 { font-size: 17.5px; }
  .diy-band p { font-size: 14px; }
  .diy-band .btn { width: 100%; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(240, 78, 35, .35); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 20px;
  font-weight: 700;
  display: grid;
  place-items: center;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq-item[open] summary::after { content: "–"; background: var(--grad); color: #fff; transform: rotate(180deg); }
.faq-item .faq-a { padding: 0 22px 20px; font-size: 15px; color: var(--body); }
.faq-item .faq-a a { color: var(--orange); font-weight: 600; }

/* ---------- Legal / prose pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal .updated {
  display: inline-block;
  font-size: 13px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 30px;
}
.legal-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 34px 30px;
}
.legal-block h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 26px 0 10px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.legal-block h2:first-of-type { border-top: none; padding-top: 4px; }
.legal-block p { font-size: 15.5px; color: var(--body); line-height: 1.75; margin-bottom: 12px; }
.legal-block ul { list-style: none; margin: 8px 0 14px; display: grid; gap: 9px; }
.legal-block ul li { position: relative; padding-left: 22px; font-size: 15.5px; color: var(--body); line-height: 1.7; }
.legal-block ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.legal-block strong { color: var(--ink); }
.legal-block a { color: var(--orange); font-weight: 600; }
.legal-block a:hover { text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 46px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: 6%; bottom: -40px;
  width: 150px; height: 150px;
  background-image: radial-gradient(rgba(255,255,255,.75) 2px, transparent 2.2px);
  background-size: 16px 16px;
  opacity: .35;
}
.cta-band h2 { color: #fff; font-size: clamp(24px, 3.2vw, 34px); font-weight: 700; margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, .92); margin-bottom: 24px; font-size: 16px; }
.cta-band .btn-wa { box-shadow: 0 14px 34px rgba(20, 60, 35, .35); }

/* ---------- Footer ---------- */
.site-foot { background: var(--ink); color: #98A2B3; padding: 58px 0 0; margin-top: 40px; }
.foot-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}
.foot-brand {
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 4px;
  display: inline-block;
}
.foot-brand span { color: var(--orange); }
.foot-tag {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C2CAD6;
  margin-bottom: 16px;
}
.foot-tag b { color: var(--orange); }
.foot-about {
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 auto 24px;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-bottom: 26px;
}
.foot-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  color: #98A2B3;
  transition: color .2s ease;
}
.foot-links a:hover { color: var(--orange); }
.foot-reach { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.foot-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: #C2CAD6;
  font-size: 14.5px;
  font-weight: 500;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.foot-chip svg { width: 17px; height: 17px; color: var(--orange); flex: none; }
.foot-chip:hover { border-color: var(--orange); color: #fff; background: rgba(240, 78, 35, .1); }
.foot-help { font-size: 12.5px; color: #6C7787; margin-top: 18px; }

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 20px 0 26px;
  font-size: 13px;
  text-align: center;
  color: #6C7787;
}
.foot-bottom p + p { margin-top: 6px; font-size: 12px; }
.foot-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 10px !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px !important;
  color: #98A2B3;
}
.foot-credit svg { width: 14px; height: 14px; flex: none; color: var(--orange); }

/* ---------- Placed-at marquee ---------- */
.placed { padding: 44px 0; background: #fff; border-block: 1px solid var(--line); overflow: hidden; }
.placed-head {
  text-align: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  /* fade the strip out at both edges */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex;
  flex: none;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex: none;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink-2);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  white-space: nowrap;
}

/* Logo tiles — one uniform white card per company logo */
.marquee-logos .marquee-track { gap: 16px; padding-right: 16px; animation-duration: 46s; }
.logo-item {
  flex: none;
  width: 152px;
  height: 76px;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(28, 36, 51, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.logo-item:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 78, 35, .35);
  box-shadow: 0 10px 22px rgba(28, 36, 51, .10);
}
/* width/height 100% + contain: the logo is letterboxed inside the tile, never
   cropped. min-*:0 is required — a grid item's automatic minimum size would
   otherwise let the image push past max-height. */
.logo-item img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.placed-note {
  text-align: center;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--muted);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ---------- Review / social band ---------- */
.review-band {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 36px 30px;
}
.review-band h3 { font-size: clamp(20px, 3vw, 26px); margin-bottom: 8px; }
.review-band p { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.review-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.btn-google {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: 0 4px 14px rgba(28, 36, 51, .07);
}
.btn-google:hover { border-color: #4285F4; color: #1a73e8; }
.btn-ig {
  color: #fff;
  border: none;
  background: linear-gradient(65deg, #F9CE34 0%, #EE2A7B 52%, #6228D7 100%);
  box-shadow: 0 10px 24px rgba(238, 42, 123, .3);
}
.btn-ig:hover { filter: brightness(1.06); }
.btn-x {
  color: #fff;
  border: none;
  background: #0F1419;
  box-shadow: 0 10px 24px rgba(15, 20, 25, .28);
}
.btn-x:hover { background: #272C30; }
.btn-x svg { width: 16px; height: 16px; }

/* ---------- Payment policy strip ---------- */
.pay-note {
  max-width: 720px;
  margin: 26px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFF8F0;
  border: 1px solid #F3DCC4;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  text-align: left;
}
.pay-note svg { width: 19px; height: 19px; color: var(--orange); flex: none; margin-top: 2px; }
.pay-note b { color: var(--ink); }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .5);
  animation: waGlow 2.2s ease-out infinite;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.09); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
.wa-float::after {
  content: "Chat with us";
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 9px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.wa-float:hover::after { opacity: 1; }
@keyframes waGlow {
  0%   { box-shadow: 0 10px 26px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .55); }
  70%  { box-shadow: 0 10px 26px rgba(37, 211, 102, .5), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 26px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; }
.js .reveal.d2 { transition-delay: .16s; }
.js .reveal.d3 { transition-delay: .24s; }
.js .reveal.d4 { transition-delay: .32s; }

/* ---------- Utilities ---------- */
.bg-white { background: #fff; }
.mt-40 { margin-top: 40px; }
.center { text-align: center; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .hero { padding: 66px 0 72px; }
  .hero::before { width: 170px; height: 130px; top: 30px; right: -40px; opacity: .13; }
  .hero::after { width: 150px; height: 115px; bottom: 20px; left: -40px; opacity: .11; }
  .svc-grid, .tier-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .svc-card.popular { order: -1; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 4vw 18px;
    display: none;
    box-shadow: 0 18px 30px rgba(28, 36, 51, .08);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a:not(.btn) { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .site-nav a:not(.btn)::after { display: none; }
  .site-nav .btn { margin-top: 14px; }
}

@media (max-width: 640px) {
  section { padding: 52px 0; }
  .head-in { height: 64px; gap: 14px; }
  .site-nav { top: 64px; }
  .brand img { height: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .trust-item { flex-direction: column; text-align: center; gap: 10px; }
  .trust-icon { margin: 0 auto; }
  .includes ul { grid-template-columns: 1fr; }
  .legal-block { padding: 8px 20px 24px; }
  .combo { padding: 26px 22px; }
  .combo .btn { width: 100%; }
  .cta-band { padding: 36px 22px; }
  .foot-about { max-width: none; }
  .foot-reach { width: 100%; }
  .foot-chip { width: 100%; }
  .placed { padding: 34px 0; }
  .placed-head { font-size: 11.5px; letter-spacing: .12em; margin-bottom: 20px; }
  .marquee-item { font-size: 14px; padding: 9px 17px; }
  .marquee-track { gap: 12px; padding-right: 12px; animation-duration: 26s; }
  .marquee-logos .marquee-track { gap: 10px; padding-right: 10px; animation-duration: 34s; }
  .logo-item { width: 118px; height: 62px; padding: 9px 12px; border-radius: 12px; }
  .placed-note { font-size: 12.5px; margin-top: 18px; padding-inline: 8px; }
  .review-band { padding: 28px 20px; border-radius: 16px; }
  .review-actions { flex-direction: column; }
  .review-actions .btn { width: 100%; }
  .pay-note { padding: 14px 16px; font-size: 13.5px; gap: 10px; }
  .hero { padding: 48px 0 58px; }
  .hero h1 { font-size: clamp(34px, 9.4vw, 44px); letter-spacing: -.02em; }
  .hero .lead { font-size: 15.8px; }
  .hero-cta { width: 100%; gap: 11px; margin-bottom: 24px; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { flex-direction: column; align-items: center; gap: 8px; margin-top: 18px; }
  .hero-stats { gap: 22px; justify-content: center; }
  .sample-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sample-body { padding: 11px 11px 12px; gap: 7px; }
  .sample-row h3 { font-size: 13.5px; }
  .sample-price { font-size: 16.5px; }
  .sample-meta { font-size: 11px; }
  .mini-stars { font-size: 11px; letter-spacing: .8px; }
  .sample-body .btn { padding: 9px 10px; font-size: 12.2px; }
  .ats-badge { top: 6px; right: 6px; font-size: 10px; padding: 3px 6px; border-radius: 6px; }
  .ats-badge b { font-size: 8.5px; }
  .wa-float { width: 56px; height: 56px; right: 16px; bottom: 18px; }
  .wa-float svg { width: 30px; height: 30px; }
  .price { font-size: 36px; }
  .faq-item summary { font-size: 15px; padding: 16px 18px; }
  .faq-item .faq-a { padding: 0 18px 18px; }
}

/* Narrow / split-screen phones: keep the info + note panels tight and aligned */
@media (max-width: 560px) {
  .includes,
  .note-box { padding: 22px 18px; border-radius: 16px; }

  .includes h3,
  .note-box h4 { margin-bottom: 16px; padding-bottom: 14px; gap: 10px; }

  .includes h3 { font-size: 16.5px; }
  .includes h3 .amt { font-size: 13px; padding: 4px 12px; }
  .includes ul { gap: 0; }
  .includes ul li { --mark: 18px; --gap: 10px; --line: 22px; --pad-y: 6px; font-size: 14.5px; }
  .includes ul li::before { font-size: 10px; }

  .note-box h4 { font-size: 12px; letter-spacing: .07em; }
  .note-box ul { gap: 13px; }
  .note-box ul li { --mark: 6px; --gap: 11px; --line: 22.5px; font-size: 14px; }
}

@media (max-width: 380px) {
  .sample-grid { gap: 10px; }
  .sample-body .btn { padding: 9px 6px; font-size: 11.5px; }
}

/* ============================================================
   Landing page v2 sections
   ============================================================ */

/* ---------- Anchor offset (clears the sticky header) ---------- */
section[id], [id="services"], [id="faq"] { scroll-margin-top: 92px; }

/* ---------- Hero trust line ---------- */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--wa); flex: none; }

/* ---------- Stats band ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stat-card b {
  display: block;
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-card span { display: block; margin-top: 9px; font-size: 14.5px; color: var(--muted); font-weight: 500; }

/* ---------- Feature grid (Why choose) ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(240, 78, 35, .32); }
.feat-ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
}
.feat-ic svg { width: 24px; height: 24px; }
.feat-card h4 { font-size: 16.5px; font-weight: 600; margin-bottom: 6px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- Template / design showcase ---------- */
.tpl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tpl-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.tpl-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(240, 78, 35, .35); }
.tpl-preview {
  position: relative;
  background: linear-gradient(160deg, #FFF6F2 0%, #F7F1EB 100%);
  padding: 26px 26px 0;
  height: 210px;
  overflow: hidden;
}
/* the real resume peeks up from the bottom of the panel like a sheet of paper */
.tpl-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px 8px 0 0;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(28, 36, 51, .09);
  transition: transform .35s ease;
}
.tpl-card:hover .tpl-preview img { transform: translateY(-6px); }
.tpl-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(240, 78, 35, .4);
  z-index: 2;
}
.tpl-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tpl-body h3 { font-size: 18px; font-weight: 700; }
.tpl-body .meta { font-size: 13.5px; color: var(--muted); }
.tpl-body .go {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.tpl-card:hover .go svg { transform: translateX(4px); }
.tpl-body .go svg { width: 16px; height: 16px; transition: transform .25s ease; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tst-card .mini-stars { font-size: 15px; }
.tst-card p { font-size: 15px; color: var(--body); line-height: 1.7; flex: 1; }
.tst-who { display: flex; align-items: center; gap: 12px; padding-top: 6px; border-top: 1px solid var(--line); }
.tst-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  display: grid;
  place-items: center;
  flex: none;
}
.tst-who b { display: block; font-family: var(--font-head); font-size: 15px; color: var(--ink); font-weight: 600; }
.tst-who small { font-size: 13px; color: var(--muted); }

/* ============================================================
   Landing v2 — responsive
   ============================================================ */
@media (max-width: 1000px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .tpl-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .tst-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .hero-trust { justify-content: center; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; gap: 14px; max-width: 340px; margin-inline: auto; }
  .stat-card { padding: 22px 18px; display: flex; align-items: center; justify-content: center; gap: 12px; }
  .stat-card b { font-size: 32px; }
  .stat-card span { margin-top: 0; text-align: left; }
  .feat-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .feat-card { padding: 22px 20px; }
  .tpl-preview { height: 165px; padding: 20px 20px 0; }
  .hero-trust { font-size: 13px; gap: 6px 14px; }
  section[id], [id="services"], [id="faq"] { scroll-margin-top: 78px; }
}

/* ============================================================
   Independence Day promo popup — auto-closes after 12s
   ============================================================ */
.promo {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px 16px;
}
.promo[hidden] { display: none; }
body.promo-open { overflow: hidden; }
.promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 25, 36, .55);
  backdrop-filter: blur(3px);
  animation: promo-fade .3s ease both;
}
.promo-card {
  position: relative;
  width: min(400px, 100%);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  text-align: center;
  background: var(--card);
  border-radius: 22px;
  padding: 34px 24px 0;   /* top clears the close button */
  box-shadow: 0 30px 70px rgba(19, 25, 36, .38);
  animation: promo-pop .38s cubic-bezier(.2, .9, .3, 1.2) both;
}
/* tricolour top edge */
.promo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #FF9933 0 33.33%, #FFFFFF 33.33% 66.66%, #138808 66.66% 100%);
}
@keyframes promo-fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes promo-pop {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  to   { opacity: 1; transform: none; }
}

.promo-x {
  position: absolute;
  top: 11px; right: 11px;
  z-index: 2;
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.promo-x svg { width: 17px; height: 17px; }
.promo-x:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(90deg); }
.promo-x:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.promo-kicker {
  margin: 0 34px;         /* stay clear of the close button */
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.promo-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 16px;
}
.promo-logo {
  width: 78px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
}
.promo-logo img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.promo-more {
  display: inline-flex;
  align-items: center;
  height: 44px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-soft);
  border: 1px solid #F7D3C6;
  border-radius: 11px;
  padding: 0 12px;
}

.promo-safe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #12703C;
  background: #E8F7EE;
  border: 1px solid #C6EAD5;
  border-radius: 999px;
  padding: 7px 15px;
}
.promo-safe svg { width: 15px; height: 15px; flex: none; }

.promo-title {
  margin: 16px 0 4px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.promo-flag {
  width: 22px; height: 15px;
  flex: none;
  border-radius: 3px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #FF9933 0 33.33%, #FFFFFF 33.33% 66.66%, #138808 66.66% 100%);
}

.promo-offers { display: grid; gap: 10px; margin-top: 14px; }
.promo-offer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 12px;
  text-align: left;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #FFFBF9;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.promo-offer:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(240, 78, 35, .18);
}
.po-name { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--ink); }
.po-price { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--orange); white-space: nowrap; }
.po-price s { font-size: 13px; font-weight: 600; color: var(--muted); margin-right: 3px; }
.po-go {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange);
}
.po-go svg { width: 13px; height: 13px; }

/* headline offer inside the promo — the ₹99 first-order box */
.promo-offer-lead {
  background: linear-gradient(135deg, #FFF3EE 0%, #FFE7DD 100%);
  border-color: var(--orange);
  box-shadow: 0 8px 20px rgba(240, 78, 35, .14);
}
.po-flag {
  grid-column: 1 / -1;
  justify-self: start;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  padding: 3px 9px;
  margin-bottom: 2px;
}
.promo-offer-lead .po-price b { font-size: 21px; }

.promo-till { margin-top: 12px; font-size: 12.5px; color: var(--muted); }
.promo-till b { color: var(--ink); }

.promo-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: #fff;
  background: linear-gradient(45deg, #F09433, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888);
  border-radius: 999px;
  padding: 10px 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.promo-ig:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(204, 35, 102, .35); }
.promo-ig svg { width: 16px; height: 16px; }

.promo-bar {
  height: 3px;
  margin: 18px -24px 0;   /* flush to the card's bottom edge */
  border-radius: 0 0 22px 22px;
  background: var(--line);
  overflow: hidden;
}
.promo-bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad);
  transform-origin: left center;
  animation: promo-timer 12s linear forwards;
}
@keyframes promo-timer { from { transform: scaleX(1) } to { transform: scaleX(0) } }

@media (max-width: 560px) {
  .promo { padding: 14px 12px; }
  .promo-card { padding: 32px 18px 0; border-radius: 20px; }
  .promo-title { font-size: 19.5px; }
  .promo-logo { width: 70px; height: 40px; padding: 7px 9px; }
  .promo-more { height: 40px; font-size: 11.5px; padding: 0 10px; }
  .po-name { font-size: 13.5px; }
  .po-price { font-size: 17px; }
  .promo-ig { font-size: 12.5px; padding: 10px 14px; }
  .promo-bar { margin: 16px -18px 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .stars span, .js .reveal { opacity: 1; transform: none; }
  /* let the strip scroll manually instead of animating */
  .marquee { overflow-x: auto; }
  .marquee-track { animation: none; }
  /* keep the popup's 12s countdown running — it is a timer, not decoration */
  .promo-bar i { animation-duration: 12s !important; }
}

/* ============================================================
   Cover-letter preview — button + lightbox
   ============================================================ */
.cl-band {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(165deg, #FFFFFF 0%, #FFF7F3 62%, #FFEFE8 100%);
  border: 1px solid #F7D9CC;
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(240, 78, 35, .10), 0 2px 6px rgba(28, 36, 51, .04);
  padding: 34px 28px 30px;
  overflow: hidden;
}
/* soft orange glow behind the icon */
.cl-band::before {
  content: "";
  position: absolute;
  top: -70px; left: 50%;
  width: 220px; height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(240, 78, 35, .13) 0%, transparent 68%);
  pointer-events: none;
}
.cl-badge {
  position: relative;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  padding: 5px 14px;
  box-shadow: 0 6px 14px rgba(240, 78, 35, .3);
  margin-bottom: 16px;
}
.cl-icon {
  position: relative;
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: #fff;
  border: 1px solid #F7D9CC;
  box-shadow: 0 8px 20px rgba(240, 78, 35, .14);
  margin-bottom: 16px;
}
.cl-icon svg { width: 27px; height: 27px; }
.cl-band h4 {
  position: relative;
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.cl-band p {
  position: relative;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--body);
  max-width: 44ch;
  margin: 0 auto 22px;
}
.cl-band p b { color: var(--orange-dark); font-weight: 700; }
.btn-cl {
  position: relative;
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  padding: 14px 30px;
  box-shadow: 0 12px 26px rgba(240, 78, 35, .3);
}
.btn-cl:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.btn-cl svg { width: 18px; height: 18px; }

/* lightbox */
.cl-pop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px 16px;
}
.cl-pop[hidden] { display: none; }
.cl-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 51, .62);
  backdrop-filter: blur(3px);
  animation: clFade .2s ease;
}
.cl-card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 44px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: clRise .26s cubic-bezier(.22, 1, .36, 1);
}
@keyframes clFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes clRise { from { opacity: 0; transform: translateY(14px) scale(.98) } to { opacity: 1; transform: none } }

.cl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px 13px 20px;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.cl-head h3 { font-size: 16px; font-weight: 700; color: var(--ink); }
.cl-head p { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.cl-x {
  flex: none;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.cl-x:hover { border-color: var(--orange); color: var(--orange); }
.cl-x svg { width: 16px; height: 16px; }
.cl-x:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.cl-scroll { overflow-y: auto; -webkit-overflow-scrolling: touch; background: var(--bg); padding: 16px; }
.cl-scroll img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 8px 24px rgba(28, 36, 51, .16); }
.cl-foot { flex: none; padding: 14px 16px; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.cl-foot .btn { width: 100%; }
.cl-note { font-size: 11.5px; color: var(--muted); text-align: center; line-height: 1.5; }

@media (max-width: 560px) {
  .cl-band { padding: 28px 18px 24px; border-radius: 18px; }
  .cl-band h4 { font-size: 18.5px; }
  .cl-band p { font-size: 14px; margin-bottom: 18px; }
  .cl-icon { width: 54px; height: 54px; }
  .cl-icon svg { width: 23px; height: 23px; }
  .cl-band .btn-cl { width: 100%; }
  .cl-card { width: 100%; max-height: calc(100vh - 32px); }
  .cl-head { padding: 13px 13px 12px 16px; }
}

/* ============================================================
   Single-page resume catalogue — jump nav, plan sections, sale cards
   ============================================================ */
.plan-jump {
  position: sticky;
  top: 74px;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.plan-jump-in { display: flex; gap: 10px; padding: 10px 0; overflow-x: auto; scrollbar-width: none; }
.plan-jump-in::-webkit-scrollbar { display: none; }
.plan-jump a {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 9px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  white-space: nowrap;
  transition: border-color .2s ease, transform .2s ease;
}
.plan-jump a:hover { border-color: var(--orange); transform: translateY(-1px); }
.plan-jump a b { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--ink); }
.plan-jump a span { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--orange); }

section.plan-sec[id] { padding: 60px 0; scroll-margin-top: 176px; }
.plan-head {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.plan-head h2 {
  font-size: clamp(25px, 4.2vw, 36px);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.plan-price {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  padding: 4px 17px;
  font-size: .6em;
  vertical-align: middle;
  margin-left: 8px;
  box-shadow: 0 8px 18px rgba(240, 78, 35, .3);
}
.plan-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.plan-chips span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--body);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ---------- pinned ₹99 sale cards ---------- */
.sale-card {
  position: relative;
  border: 2px solid var(--orange);
  box-shadow: 0 16px 38px rgba(240, 78, 35, .22);
  overflow: visible;
}
.sale-card .thumb { border-radius: 16px 16px 0 0; overflow: hidden; }
.sale-card:hover { box-shadow: 0 24px 50px rgba(240, 78, 35, .3); }
.sale-ribbon {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 5px 15px;
  box-shadow: 0 8px 18px rgba(240, 78, 35, .4);
}
.sale-ribbon svg { width: 13px; height: 13px; }
.sale-card .sample-body { background: linear-gradient(180deg, #FFF8F5 0%, #fff 70%); }

.sale-price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.sale-now {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -.02em;
}
.sale-now .rupee { font-size: 19px; }
.sale-was { font-size: 15px; font-weight: 600; color: var(--muted); text-decoration: line-through; }
.sale-save {
  margin-left: auto;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 800;
  color: #12703C;
  background: #E8F7EE;
  border: 1px solid #BFE6CE;
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.btn-sale {
  background: var(--grad);
  color: #fff;
  border: none;
  box-shadow: 0 10px 22px rgba(240, 78, 35, .34);
}
.btn-sale:hover { filter: brightness(1.05); }

@media (max-width: 1000px) { .plan-jump { top: 64px; } section.plan-sec[id] { scroll-margin-top: 164px; } }
@media (max-width: 640px) {
  section.plan-sec[id] { padding: 44px 0; }
  .plan-head { padding-bottom: 18px; margin-bottom: 24px; }
  .plan-chips span { font-size: 11.5px; padding: 5px 11px; }
  .sale-now { font-size: 26px; }
  .sale-ribbon { font-size: 10.5px; padding: 4px 12px; }
  .plan-jump-in { gap: 8px; padding: 8px 0; }
  .plan-jump a { padding: 8px 13px; }
  .plan-jump a b { font-size: 13px; }
}

/* DIY templates CTA — long label must wrap instead of forcing the page wide */
.btn-wa.btn-lg { max-width: 100%; white-space: normal; text-align: center; }
@media (max-width: 560px) {
  .btn-wa.btn-lg { width: 100%; padding-inline: 18px; font-size: 15px; line-height: 1.35; }
}

/* ============================================================
   Five services + seven nav items — keep both from breaking
   ============================================================ */
/* the last row of the 3-up service grid now holds 2 cards; centre them */
.svc-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
@media (min-width: 1001px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid > .svc-card:nth-last-child(2):nth-child(3n + 1) { grid-column: 1 / 2; }
}
/* nav got two more links — tighten before it wraps into the logo */
@media (min-width: 1001px) and (max-width: 1240px) {
  .site-nav { gap: 17px; }
  .site-nav a:not(.btn) { font-size: 14px; }
}
