/* ===== Fiverr homepage recreation ===== */
:root {
  --brand: #1dbf73;
  --brand-dark: #19a463;
  --white: #ffffff;
  --black: #000000;
  --text: #222325;
  --text-soft: #404145;
  --muted: #74767e;
  --border: #e4e5e7;
  --surface: #f5f5f5;

  --pro-green: #0a3d2a;
  --ai-black: #050505;
  --cta-burgundy: #5a1426;

  --container: 1385px;
  --radius: 8px;
  --radius-lg: 16px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.4;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-md { padding: 13px 20px; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #404145; }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--text); }
.btn-outline-dark:hover { background: var(--text); color: var(--white); }
.btn-white { background: var(--white); color: var(--text); }
.btn-white:hover { background: #e4e5e7; }
.btn-green { background: var(--brand); color: var(--white); }
.btn-green:hover { background: var(--brand-dark); }

/* ===== Header ===== */
.header {
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header .container { display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; }
.logo svg { height: 27px; width: auto; }
.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-soft);
}
.header-nav a { display: inline-flex; align-items: center; gap: 6px; }
.header-nav a:hover { color: var(--brand); }
.header-nav .pro-link { font-weight: 700; }
.header-nav .pro-link b { color: var(--brand); }
.caret { width: 9px; height: 9px; }
.globe { width: 16px; height: 16px; }
.lang { display: inline-flex; align-items: center; gap: 6px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.65) 100%),
    url("https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center 35%;
  color: var(--white);
}
.hero-inner { padding: 116px 0 92px; }
.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  max-width: 560px;
  letter-spacing: -.5px;
}
.search {
  margin-top: 22px;
  display: flex;
  max-width: 640px;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  height: 54px;
}
.search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 18px;
  font-size: 16px;
  color: var(--text);
  font-family: inherit;
}
.search input::placeholder { color: var(--muted); }
.search button {
  width: 52px;
  background: var(--black);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  border-radius: 4px;
}
.search button svg { width: 18px; height: 18px; stroke: #fff; }
.chips { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; max-width: 720px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}
.chip:hover { background: rgba(255,255,255,.15); }
.chip svg { width: 11px; height: 11px; }

/* Trusted by */
.trusted {
  margin-top: 56px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 4px;
}
.trusted span { font-size: 16px; color: #bdbdbd; font-weight: 400; }
.trusted .brands { display: flex; align-items: center; gap: 30px; }
.trusted .brands svg { height: 22px; width: auto; opacity: .92; fill: #dcdcdc; }

/* ===== Categories row ===== */
.categories { padding: 26px 0 6px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
}
.cat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: box-shadow .15s ease, border-color .15s ease;
  background: #fff;
}
.cat-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.08); border-color: #c5c6c9; }
.cat-card svg { width: 24px; height: 24px; stroke: var(--text); }
.cat-card span { font-size: 12px; color: var(--text-soft); font-weight: 600; line-height: 1.25; }

/* ===== Section base ===== */
.section { padding: 62px 0; }
.section h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.5px;
}
.section-sub { color: var(--muted); margin-top: 6px; font-size: 16px; }

/* ===== Popular services ===== */
.pop-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.pop-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.pop-card {
  border-radius: var(--radius);
  padding: 16px 12px 12px;
  color: #fff;
  height: 264px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.pop-card h3 { font-size: 16px; font-weight: 600; line-height: 1.2; }
.pop-card .thumb {
  margin-top: auto;
  height: 158px;
  width: 100%;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}
.pop-card.c1 { background: #003912; }
.pop-card.c2 { background: #003912; }
.pop-card.c3 { background: #003912; }
.pop-card.c4 { background: #003912; }
.pop-card.c5 { background: #a82d68; }
.pop-card.c6 { background: #f2a87f; color:#3a1d0b; }

/* ===== Make it happen ===== */
.make { border-top: 1px solid var(--border); }
.make-head { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.make-head h2 { font-size: 30px; }
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.benefit { display: flex; flex-direction: column; gap: 12px; }
.benefit svg { width: 34px; height: 34px; stroke: var(--text); }
.benefit p { font-size: 15px; color: var(--text-soft); line-height: 1.5; max-width: 200px; }

/* ===== Pro banner ===== */
.pro-banner {
  background: var(--pro-green);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.pro-banner .copy { flex: 1; max-width: 460px; }
.pro-logo { display:flex; align-items:center; gap:6px; font-weight:700; font-size:22px; margin-bottom: 22px; }
.pro-logo .badge { background:#fff; color:#0a3d2a; font-size:11px; font-weight:800; padding:2px 6px; border-radius:4px; letter-spacing:.5px; }
.pro-banner h2 { font-size: 30px; font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.pro-banner ul { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 12px; }
.pro-banner li { position: relative; padding-left: 18px; font-size: 15px; color: #d7e3dc; }
.pro-banner li::before { content:""; position:absolute; left:0; top:8px; width:5px; height:5px; border-radius:50%; background:#fff; }
.pro-guarantee { display:flex; align-items:center; gap:8px; margin-top:18px; font-size:14px; color:#cfe0d6; }
.pro-guarantee svg { width:18px; height:18px; stroke:#fff; }
.pro-visual { flex: 0 0 320px; display:flex; justify-content:center; position:relative; }
.pro-card {
  width: 200px; height: 250px; border-radius: 12px; overflow:hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  background-size: cover; background-position: center;
  position: relative;
}
.pro-card .tag {
  position:absolute; left:10px; bottom:10px; right:10px;
  background: rgba(255,255,255,.95); border-radius:8px; padding:7px 10px;
  display:flex; align-items:center; gap:8px; color:#222;
}
.pro-card .tag .dot { width:26px; height:26px; border-radius:50%; background:#1dbf73; flex:0 0 auto; }
.pro-card .tag b { font-size:12px; display:block; }
.pro-card .tag small { font-size:10px; color:#74767e; }
.cursor { position:absolute; right:60px; bottom:70px; width:34px; height:34px; background:var(--brand); clip-path: polygon(0 0, 0 75%, 28% 55%, 50% 100%, 65% 90%, 45% 48%, 80% 45%); transform: rotate(-8deg); }

/* ===== AI banner ===== */
.ai-banner {
  background: var(--ai-black);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 56px 52px;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 460px;
  overflow: hidden;
}
.ai-banner .copy { flex: 1; max-width: 430px; }
.ai-banner h2 { font-size: 40px; font-weight: 700; line-height: 1.05; margin-bottom: 16px; letter-spacing: -.5px; }
.ai-banner p { color: #b7b7b7; font-size: 15px; line-height: 1.55; margin-bottom: 26px; max-width: 380px; }
.ai-visual { flex: 0 0 460px; display:flex; gap:10px; justify-content:center; align-items:center; }
.ai-portrait { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ai-portrait .img {
  width: 92px; height: 132px; border-radius: 8px; background-size:cover; background-position:center;
  box-shadow: 0 12px 34px rgba(0,0,0,.6); display:block;
}
.ai-portrait figcaption { font-size: 11px; color: #cfcfcf; white-space: nowrap; }
.ai-portrait.big .img { width: 110px; height: 156px; }

/* ===== Success video ===== */
.success-head { margin-bottom: 22px; }
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 540px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1519642918688-7e43b19245d8?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.video-card .badge {
  position:absolute; top:38%; left:50%; transform:translate(-50%,-50%);
  width:54px; height:54px; border-radius:50%; background:var(--brand);
  display:flex; align-items:center; justify-content:center; font-weight:800; color:#fff; font-size:22px;
}
.video-card h3 { font-size: 66px; font-weight: 800; text-align:center; line-height: 1.02; text-shadow: 0 2px 20px rgba(0,0,0,.4); max-width: 960px; }
.video-card h3 em { font-style: italic; font-weight: 700; }
.video-card .caption {
  position:absolute; bottom: 22px; left:50%; transform:translateX(-50%);
  background: rgba(0,0,0,.6); padding: 6px 14px; border-radius: 4px; font-size: 14px;
}

/* ===== Guides ===== */
.guides-head { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom: 22px; }
.guides-head a { color: var(--text); font-weight:600; font-size:15px; border-bottom:1px solid var(--text); padding-bottom:2px; }
.guides-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.guide-card img, .guide-card .img {
  width:100%; height: 252px; border-radius: var(--radius); object-fit: cover; background-size:cover; background-position:center;
}
.guide-card p { margin-top: 14px; font-size: 16px; font-weight:600; color: var(--text); }

/* ===== Final CTA ===== */
.final-cta {
  background: var(--cta-burgundy);
  border-radius: var(--radius-lg);
  padding: 76px 20px;
  text-align: center;
  color: #fff;
}
.final-cta h2 { font-size: 48px; font-weight: 700; margin-bottom: 30px; letter-spacing:-.5px; color: #fff; }
.final-cta h2 em { font-style: italic; color: #ff7a59; font-weight:600; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); padding: 64px 0 40px; }
.footer-cols { display:grid; grid-template-columns: repeat(5,1fr); gap: 24px; }
.footer-cols h4 { font-size: 16px; font-weight:700; color: var(--text); margin-bottom: 20px; }
.footer-cols ul { list-style:none; display:flex; flex-direction:column; gap: 16px; }
.footer-cols a { font-size: 14px; color: var(--muted); }
.footer-cols a:hover { text-decoration: underline; color: var(--text-soft); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top:1px solid var(--border);
  display:flex; align-items:center; gap: 18px;
}
.footer-bottom .logo svg { height: 24px; }
.footer-bottom .copy { color: var(--muted); font-size: 14px; }
.footer-bottom .right { margin-left:auto; display:flex; align-items:center; gap: 22px; }
.footer-bottom .socials { display:flex; gap: 16px; }
.footer-bottom .socials svg { width:18px; height:18px; fill: var(--text-soft); }
.footer-bottom .settings { display:flex; gap:20px; color: var(--text-soft); font-size:14px; }
.footer-bottom .settings span { display:inline-flex; align-items:center; gap:6px; }
.footer-disclaimer { margin-top: 20px; font-size: 12px; line-height: 1.5; color: #9a9ba0; max-width: 760px; }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(5, 1fr); }
  .pop-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 760px) {
  .container { padding: 0 18px; }
  .header-nav { gap: 14px; font-size: 14px; }
  .header-nav .hide-sm { display:none; }
  .hero h1 { font-size: 34px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .pop-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2,1fr); }
  .pro-banner, .ai-banner { flex-direction: column; align-items:flex-start; padding: 32px 24px; }
  .ai-visual, .pro-visual { display:none; }
  .guides-grid { grid-template-columns: 1fr; }
  .video-card h3 { font-size: 30px; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; align-items:flex-start; }
  .footer-bottom .right { margin-left:0; flex-wrap:wrap; }
  .section h2 { font-size: 24px; }
}

/* ============================================================
   FAITHBASED.nl — content/brand overrides on the template
   ============================================================ */
:root {
  --brand: #1f8a5a;          /* kingdom green */
  --brand-dark: #176b46;
  --gold: #c79a3a;           /* faith accent */
  --pro-green: #0c3d2a;
  --cta-burgundy: #5a1230;   /* royal */
  --font: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* text logo */
.fb-logo { display: flex; flex-direction: column; line-height: 1; }
.fb-logo .name { font-size: 21px; font-weight: 800; letter-spacing: -.3px; color: var(--text); }
.fb-logo .name .nl { color: var(--brand); }
.fb-logo .name .cross { color: var(--gold); margin-right: 2px; }
.fb-logo .tag { font-size: 10px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* hero tweaks */
.hero h1 { max-width: 640px; }
.hero h1 .accent { color: var(--gold); }

/* pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  border-radius: var(--radius-lg);
  padding: 30px 28px 32px;
  color: #fff;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pillar .k { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.7); }
.pillar h3 { font-size: 24px; font-weight: 700; margin: 12px 0 14px; letter-spacing: -.3px; }
.pillar p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.88); }
.pillar.p1 { background: var(--pro-green); }
.pillar.p2 { background: #14213d; }
.pillar.p3 { background: var(--brand); }
.pillar .num { position: absolute; right: 20px; top: 18px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.35); font-variant-numeric: tabular-nums; }

/* checkmark benefit list inside pro banner */
.pro-banner ul.checks li::before { content: "✓"; background: var(--gold); color:#1a1205; width:16px; height:16px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:800; top:3px; }
.pro-banner ul.checks li { padding-left: 26px; }

.gratis-pill { display:inline-flex; align-items:center; gap:8px; background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25); color:#fff; border-radius:30px; padding:7px 14px; font-size:13px; font-weight:600; margin-bottom:18px; }
.gratis-pill b { color: var(--gold); }

/* ai/mission banner accent */
.ai-banner h2 .accent { color: var(--gold); }
.ai-banner .verse { margin-top: 22px; font-style: italic; color:#d8d8d8; font-size:17px; max-width:420px; }

@media (max-width: 760px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ---- modern category cards ---- */
.categories { padding: 40px 0 10px; }
.cat-grid { gap: 16px; }
.cat-card {
  border: 1px solid #eceae4;
  border-radius: 16px;
  padding: 22px 10px 18px;
  gap: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16,24,20,.04), 0 6px 16px rgba(16,24,20,.05);
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease, border-color .22s ease;
}
.cat-card svg {
  width: 46px; height: 46px; padding: 11px;
  border-radius: 14px;
  background: rgba(31,138,90,.09);
  stroke: var(--brand);
  transition: background .22s ease, stroke .22s ease, transform .22s ease;
}
.cat-card span { font-size: 13px; font-weight: 600; color: var(--text); }
.cat-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 2px 4px rgba(16,24,20,.05), 0 16px 30px rgba(16,24,20,.12);
}
.cat-card:hover svg { background: var(--brand); stroke: #fff; transform: scale(1.04); }
.cat-card:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

/* ============================================================
   Contrast & legibility fixes
   ============================================================ */
:root { --gold-light: #e7c06a; }   /* brighter gold for use on dark backgrounds */

/* dark banners: force readable white headings (override .section h2) */
.pro-banner h2,
.ai-banner h2,
.final-cta h2 { color: #fff; }

/* accents on dark backgrounds -> brighter gold for legibility */
.hero h1 .accent,
.ai-banner h2 .accent,
.final-cta h2 em { color: var(--gold-light); font-style: normal; }
.final-cta h2 em { font-style: italic; }

/* pillar 3: deepen green so white text meets contrast like the others */
.pillar.p3 { background: #0f5e3e; }
.pillar .k { color: rgba(255,255,255,.82); }
.pillar p  { color: rgba(255,255,255,.92); }
.pillar .num { color: rgba(255,255,255,.4); }

/* ============================================================
   ARMY OF GRACE brand palette — orange #eb9401 + near-black
   (this block intentionally last so it wins)
   ============================================================ */
:root {
  --brand: #fa7807;
  --brand-dark: #d9650a;
  --gold: #fa7807;
  --gold-light: #ff9a3d;   /* lighter orange for accents on dark */
  --ink: #1d1c1c;
  --text: #1d1c1c;
  --text-soft: #3a3838;
}

/* buttons: white-on-orange is low contrast -> dark text on orange */
.btn-green { background: var(--brand); color: #1d1c1c; }
.btn-green:hover { background: var(--brand-dark); color: #1d1c1c; }

/* logo accents */
.fb-logo .name .nl { color: var(--brand); }
.fb-logo .name .cross { color: var(--brand-dark); }
.header-nav a:hover { color: var(--brand-dark); }

/* category tiles -> orange */
.cat-card svg { background: rgba(235,148,1,.12); stroke: var(--brand-dark); }
.cat-card:hover svg { background: var(--brand); stroke: #1d1c1c; }
.cat-card:hover { box-shadow: 0 2px 4px rgba(29,28,28,.05), 0 16px 30px rgba(29,28,28,.13); }
.cat-card:focus-visible { outline-color: var(--brand-dark); }

/* dark banners */
.pro-banner { background: #1d1c1c; }
.ai-banner  { background: #141210; }
.final-cta  { background: #1d1c1c; }

/* pillars: near-black + one orange pop + warm charcoal */
.pillar.p1 { background: #1d1c1c; }
.pillar.p2 { background: var(--brand); color: #1d1c1c; }
.pillar.p2 .k  { color: rgba(29,28,28,.7); }
.pillar.p2 p   { color: rgba(29,28,28,.86); }
.pillar.p2 .num { color: rgba(29,28,28,.4); }
.pillar.p3 { background: #2a2623; }

/* keep gratis-pill + checkmark on-brand orange */
.gratis-pill b { color: var(--gold-light); }
.pro-banner ul.checks li::before { background: var(--brand); color: #1d1c1c; }

/* avail dot / pro card dot -> orange */
.pro-card .tag .dot { background: var(--brand); }

/* ============================================================
   HERO redesign — split layout, near-black + orange glow,
   live directory preview panel  (last block wins)
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(820px 520px at 88% -8%, rgba(235,148,1,.20), transparent 62%),
    radial-gradient(620px 420px at 6% 110%, rgba(235,148,1,.10), transparent 60%),
    #1a1816;
  overflow: hidden;
}
.hero::before {                    /* faint grid signature */
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(80% 80% at 50% 30%, #000 40%, transparent 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
  padding: 76px 24px 84px;
}

/* left column */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: #f0d9b3;
  background: rgba(235,148,1,.12);
  border: 1px solid rgba(235,148,1,.3);
  padding: 7px 14px; border-radius: 30px;
}
.hero-eyebrow .cross { color: var(--brand); }
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.02; font-weight: 800; letter-spacing: -1.4px;
  margin: 22px 0 0; max-width: 14ch;
}
.hero h1 .accent { color: var(--brand); }
.hero-lead {
  margin-top: 20px; font-size: 18px; line-height: 1.6;
  color: #cfc8c2; max-width: 50ch;
}

/* search */
.hero-search {
  margin-top: 30px; display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 14px; padding: 7px 7px 7px 16px;
  max-width: 540px; box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.hero-search .loupe { width: 20px; height: 20px; color: #8a847d; flex: 0 0 auto; }
.hero-search input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: inherit; font-size: 16px; color: var(--ink); padding: 10px 4px;
}
.hero-search input::placeholder { color: #98927f; }
.hero-search button {
  background: var(--brand); color: #1d1c1c; font-weight: 700; font-size: 15px;
  border: none; border-radius: 9px; padding: 12px 22px; transition: background .15s ease;
}
.hero-search button:hover { background: var(--brand-dark); }

/* actions */
.hero-actions { margin-top: 22px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-text-link { color: #fff; font-weight: 600; font-size: 15px; display: inline-flex; gap: 8px; align-items: center; }
.hero-text-link span { transition: transform .2s ease; color: var(--brand); }
.hero-text-link:hover span { transform: translateX(5px); }

/* stats */
.hero-stats { margin-top: 40px; display: flex; gap: 40px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; }
.hero-stats .stat b { display: block; font-size: 28px; font-weight: 800; letter-spacing: -.5px; }
.hero-stats .stat span { font-size: 13px; color: #a59f98; }

/* right column — directory preview */
.hero-visual { position: relative; }
.hero-badge {
  position: absolute; top: -18px; right: 18px; z-index: 3;
  background: var(--brand); color: #1d1c1c; font-size: 13px; font-weight: 600;
  padding: 9px 15px; border-radius: 30px; box-shadow: 0 12px 26px rgba(235,148,1,.35);
  transform: rotate(2deg);
}
.hero-badge b { font-weight: 800; }
.hero-panel {
  background: #232120;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.panel-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px 14px; }
.panel-head .live { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: #efe9e2; }
.panel-head .live i { width: 9px; height: 9px; border-radius: 50%; background: #2ec27a; box-shadow: 0 0 0 4px rgba(46,194,122,.18); }
.panel-head .panel-count { font-size: 12px; color: #9c958e; }
.member {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 10px; border-radius: 14px;
  transition: background .18s ease, transform .18s ease;
}
.member:hover { background: rgba(255,255,255,.05); transform: translateX(3px); }
.member .avatar { width: 44px; height: 44px; border-radius: 12px; background-size: cover; background-position: center; flex: 0 0 auto; }
.member .m-info { flex: 1; min-width: 0; }
.member .m-info b { display: block; font-size: 15px; font-weight: 600; color: #fff; }
.member .m-info small { font-size: 12.5px; color: #a59f98; }
.member .m-dot {
  width: 11px; height: 11px; border-radius: 50%; background: #2ec27a; flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(46,194,122,.16);
}
.member .m-dot.soon {
  width: auto; height: auto; border-radius: 20px; background: rgba(235,148,1,.16);
  color: var(--brand); font-size: 11px; font-weight: 700; padding: 3px 8px; box-shadow: none;
}
.panel-foot {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 6px; padding: 14px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 14px; font-weight: 600; color: var(--brand);
}
.panel-foot span { transition: transform .2s ease; }
.panel-foot:hover span { transform: translateX(4px); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 60px; }
  .hero h1 { max-width: 18ch; }
  .hero-lead { max-width: 60ch; }
}
@media (max-width: 560px) {
  .hero-stats { gap: 26px; }
  .hero-stats .stat b { font-size: 23px; }
  .hero-search { flex-wrap: nowrap; }
  .hero-badge { right: 8px; }
}

/* ============================================================
   HERO — Proxify-style profile cards (last block wins)
   ============================================================ */
.hero-grid {
  grid-template-columns: minmax(0,1fr) minmax(0,1.12fr);
  gap: 48px;
  align-items: center;
  padding: 72px 24px 88px;
}

/* eyebrow: uppercase tracking, no pill */
.hero-eyebrow {
  display: inline-block; background: none; border: none; padding: 0;
  font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand);
}
.hero h1 { margin-top: 18px; max-width: 15ch; }
.hero-lead { max-width: 46ch; }

/* checklist */
.hero-check { list-style: none; margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; }
.hero-check li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: #e7e1da; }
.hero-check svg { width: 22px; height: 22px; flex: 0 0 auto; stroke: var(--brand); margin-top: 1px; }

/* CTA buttons (pill) */
.hero-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btn { border-radius: 40px; padding: 15px 28px; font-size: 16px; }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* trust row */
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 14px; color: #a59f98; }
.hero-trust b { color: #fff; font-weight: 700; }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: #6c655e; }

/* ---- profile cards carousel ---- */
.hero-cards { overflow: hidden; }
.cards-track { display: flex; gap: 18px; will-change: transform; transition: transform .5s cubic-bezier(.22,.7,.3,1); }
.pcard {
  position: relative; flex: 0 0 296px; height: 432px;
  border-radius: 20px; overflow: hidden;
  background: #2a2623; box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.pcard-photo { position: absolute; inset: 0; background-size: cover; background-position: center top; }
.pcard::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 38%, rgba(20,18,16,.55) 64%, rgba(20,18,16,.94) 100%); }
.pcard-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px; color: #fff; }
.pcard-meta h3 { font-size: 20px; font-weight: 700; letter-spacing: -.3px; display: flex; align-items: center; gap: 8px; }
.pcard-meta h3 .flag { font-size: 15px; }
.pcard-meta > p { font-size: 14px; color: #d6cfc7; margin-top: 2px; }
.verified { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px; font-weight: 600; color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); padding: 4px 10px 4px 7px; border-radius: 20px; }
.verified svg { width: 13px; height: 13px; stroke: var(--brand); }
.pcard-tags { display: flex; gap: 7px; margin-top: 12px; }
.pcard-tags span { font-size: 12px; font-weight: 600; color: #fff; background: rgba(0,0,0,.35); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: 5px 10px; }

/* carousel controls */
.cards-ctrl { display: flex; align-items: center; gap: 22px; margin-top: 26px; }
.cards-bar { flex: 1; height: 3px; background: rgba(255,255,255,.14); border-radius: 3px; overflow: hidden; }
.cards-bar span { display: block; height: 100%; width: 35%; background: var(--brand); border-radius: 3px; transition: width .4s ease; }
.cards-arrows { display: flex; gap: 10px; }
.cards-arrows button {
  width: 46px; height: 46px; padding: 0; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  transition: background .16s ease, border-color .16s ease, color .16s ease, opacity .16s ease, transform .16s ease;
}
.cards-arrows button svg { width: 17px; height: 17px; display: block; }
.cards-arrows button:hover:not(:disabled) { background: var(--brand); border-color: var(--brand); color: #1d1c1c; transform: translateY(-1px); }
.cards-arrows button:active:not(:disabled) { transform: translateY(0); }
.cards-arrows button:disabled { opacity: .3; cursor: default; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero h1 { max-width: 18ch; }
  .pcard { flex-basis: 260px; height: 380px; }
}
@media (max-width: 560px) {
  .pcard { flex-basis: 78vw; height: 360px; }
  .hero-cta { flex-direction: column; }
  .hero-btn { width: 100%; }
}

/* ============================================================
   HERO background — remove grid, use black + orange gradients
   (brand: #000000 / #ffffff / #fa7807)  — last block wins
   ============================================================ */
.hero {
  background:
    radial-gradient(900px 640px at 88% -14%, rgba(250,120,7,.26), transparent 56%),
    radial-gradient(620px 520px at -8% 118%, rgba(250,120,7,.12), transparent 52%),
    radial-gradient(1200px 800px at 50% 120%, rgba(250,120,7,.05), transparent 60%),
    linear-gradient(165deg, #141210 0%, #000000 60%);
}
.hero::before { display: none; }   /* removes the grid squares */

/* ============================================================
   BRAND COLORS across the whole page — strictly
   black #000000 / white #ffffff / orange #fa7807
   (final block — wins)
   ============================================================ */
:root {
  --text: #000000;
  --ink:  #000000;
  --gold-light: #fa7807;   /* single brand orange for every accent */
}

/* every dark surface -> pure black, with a soft orange glow for depth */
.pro-banner {
  background: radial-gradient(720px 520px at 100% -30%, rgba(250,120,7,.14), transparent 60%), #000000;
}
.ai-banner {
  background: radial-gradient(720px 540px at 0% 120%, rgba(250,120,7,.14), transparent 58%), #000000;
}
.final-cta {
  background: radial-gradient(820px 520px at 50% -45%, rgba(250,120,7,.18), transparent 60%), #000000;
}
.pillar.p1, .pillar.p3 {
  background: radial-gradient(440px 320px at 112% -25%, rgba(250,120,7,.16), transparent 60%), #000000;
}
.pillar.p2 { background: var(--brand); color: #000000; }
.pillar.p2 .k  { color: rgba(0,0,0,.7); }
.pillar.p2 p   { color: rgba(0,0,0,.86); }
.pillar.p2 .num { color: rgba(0,0,0,.4); }

/* accents -> exact brand orange */
.hero h1 .accent,
.ai-banner h2 .accent,
.final-cta h2 em,
.gratis-pill b { color: var(--brand); }
.fb-logo .name .cross,
.fb-logo .name .nl { color: var(--brand); }

/* dark-on-orange controls stay pure black */
.btn-green { color: #000000; }
.btn-green:hover { color: #000000; }

/* tie sections together: benefit icons in brand orange */
.benefit svg { stroke: var(--brand); }

/* dark banner headings MUST stay white (override .section h2) */
.pro-banner h2,
.ai-banner h2,
.final-cta h2 { color: #ffffff; }

/* neutralise leftover green/grey tints on the black banners */
.pro-banner li { color: #c9c6c2; }
.pro-guarantee { color: #c9c6c2; }
.pro-banner ul.checks li::before { background: var(--brand); color: #000000; }
.pro-card .tag .dot { background: var(--brand); }

/* footer logo is a brand mark, not a text link — no underline, give the cross room */
.footer a.fb-logo,
.footer a.fb-logo:hover { text-decoration: none; }
.fb-logo { align-items: flex-start; }   /* override .logo's align-items:center so it left-aligns */
.fb-logo .name { align-items: baseline; }
.fb-logo .name .cross { margin-right: 6px; }

/* ============================================================
   Differentiate the two banners (like Fiverr's green vs black):
   "Word lid" banner -> brand ORANGE, mission banner stays BLACK
   ============================================================ */
.pro-banner {
  background: linear-gradient(135deg, #fa7807 0%, #e76a02 100%);
}
.pro-banner h2 { color: #000000; }                 /* dark heading on orange */
.pro-banner li { color: rgba(0,0,0,.82); }
.pro-banner ul.checks li::before { background: #000000; color: #fa7807; }  /* black disc, orange tick */
.pro-guarantee { color: rgba(0,0,0,.72); }
.pro-guarantee svg { stroke: #000000; }
.gratis-pill { background: rgba(0,0,0,.10); border-color: rgba(0,0,0,.22); color: #000000; }
.gratis-pill b { color: #000000; }
.cursor { background: #ffffff; }                   /* visible on orange */

/* Word-lid banner: clean "Nieuw lid" profile card (replaces the template's stock photo + cursor) */
.pro-visual .pcard { flex: 0 0 300px; height: 416px; box-shadow: 0 28px 56px rgba(0,0,0,.26); }
.pro-visual .pcard-meta h3 { font-size: 21px; }
.join-flag { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: #1d1c1c; background: var(--brand); padding: 4px 11px; border-radius: 20px; margin-bottom: 12px; }
.join-flag .d { width: 7px; height: 7px; border-radius: 50%; background: #1d1c1c; box-shadow: 0 0 0 3px rgba(0,0,0,.18); }

/* ============================================================
   MULTI-PAGE COMPONENTS — shared across the marketing site
   brand: #000000 / #ffffff / #fa7807
   ============================================================ */

/* page hero (compact, for subpages) */
.page-hero { background: radial-gradient(900px 620px at 82% -22%, rgba(250,120,7,.22), transparent 56%), #000000; color: #fff; }
.page-hero .container { padding: 88px 24px 76px; }
.page-hero .eyebrow { display:inline-block; font-size:13px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color: var(--brand); }
.page-hero h1 { margin-top: 16px; font-size: clamp(2.2rem, 4.6vw, 3.7rem); font-weight: 800; line-height: 1.04; letter-spacing: -1px; max-width: 20ch; }
.page-hero h1 .accent { color: var(--brand); }
.page-hero p { margin-top: 18px; font-size: 18px; line-height: 1.6; color: #cfc8c2; max-width: 56ch; }
.page-hero .actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero .crumbs { font-size: 13px; color: #8d8780; margin-bottom: 22px; }
.page-hero .crumbs a:hover { color: var(--brand); }

/* generic light content section */
.lead-section { padding: 76px 0; }
.lead-section.tight { padding: 56px 0; }
.section-head-c { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head-c h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; letter-spacing: -.6px; }
.section-head-c p { margin-top: 12px; color: var(--muted); font-size: 17px; }
.prose { max-width: 720px; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -.5px; margin: 36px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #3a3838; font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
.prose .verse { font-style: italic; color: #1a1a1a; border-left: 3px solid var(--brand); padding-left: 18px; margin: 26px 0; font-size: 19px; }

/* forms */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 720px; }
.form .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: #1a1a1a; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #ded7c7; border-radius: 11px; padding: 13px 14px;
  font-family: inherit; font-size: 15px; color: #1a1a1a; background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(250,120,7,.15); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-chip { border: 1px solid #e0dccf; background: #fff; border-radius: 30px; padding: 9px 17px; font-size: 14px; font-weight: 600; color: #3a3838; cursor: pointer; transition: all .15s ease; }
.filter-chip:hover { border-color: var(--brand); color: #000; }
.filter-chip.active { background: #000; color: #fff; border-color: #000; }

/* member directory cards */
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.member-card { background: #fff; border: 1px solid #ece9e2; border-radius: 16px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 22px rgba(0,0,0,.05); transition: transform .2s ease, box-shadow .2s ease; }
.member-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,.1); }
.member-card .ph { height: 210px; background-size: cover; background-position: center top; }
.member-card .body { padding: 18px 18px 20px; }
.member-card h3 { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.member-card .cat { font-size: 14px; color: var(--muted); margin-top: 2px; }
.member-card .verified { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px; font-weight: 600; color: #000; background: rgba(250,120,7,.14); border: 1px solid rgba(250,120,7,.3); padding: 4px 10px 4px 7px; border-radius: 20px; }
.member-card .verified svg { width: 13px; height: 13px; stroke: var(--brand); }
.member-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.member-card .tags span { font-size: 12px; font-weight: 600; color: #3a3838; border: 1px solid #e6e1d6; border-radius: 7px; padding: 4px 9px; }

/* article cards */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article-card { display: flex; flex-direction: column; }
.article-card .img { height: 210px; border-radius: 14px; background-size: cover; background-position: center; }
.article-card .tag { display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--brand); }
.article-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -.3px; line-height: 1.25; margin: 8px 0 8px; }
.article-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.article-card .meta { margin-top: 14px; font-size: 13px; color: #8d8780; }
.article-card:hover h3 { color: var(--brand); }

.article-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; margin-bottom: 56px; }
.article-featured .img { height: 380px; border-radius: 18px; background-size: cover; background-position: center; }
.article-featured h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.6px; line-height: 1.08; margin: 10px 0 14px; }
.article-featured p { font-size: 17px; color: #3a3838; line-height: 1.7; max-width: 48ch; }

/* faq accordion */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid #e6e1d6; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; font-size: 18px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--brand); font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 22px; color: #3a3838; font-size: 16px; line-height: 1.7; max-width: 64ch; }

/* info cards */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { border: 1px solid #ece9e2; border-radius: 16px; padding: 26px 24px; background: #fff; }
.info-card .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(250,120,7,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-card .ic svg { width: 22px; height: 22px; stroke: var(--brand); }
.info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.info-card a { color: var(--brand); font-weight: 600; }

/* numbered steps (light) */
.steps-l { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-l .n { width: 44px; height: 44px; border-radius: 50%; background: #000; color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.step-l h3 { font-size: 20px; font-weight: 700; margin: 16px 0 8px; }
.step-l p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* pricing / offer card */
.offer-card { background: linear-gradient(135deg, #fa7807, #e76a02); color: #000; border-radius: 22px; padding: 48px; text-align: center; max-width: 720px; margin: 0 auto; }
.offer-card .big { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -1px; }
.offer-card .sub { font-size: 18px; font-weight: 600; margin-top: 6px; }
.offer-card ul { list-style: none; max-width: 380px; margin: 26px auto 28px; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.offer-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; }
.offer-card li svg { width: 20px; height: 20px; stroke: #000; flex: 0 0 auto; margin-top: 1px; }

/* split content row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split .visual { border-radius: 18px; overflow: hidden; height: 400px; background-size: cover; background-position: center; }

@media (max-width: 900px) {
  .form, .member-grid, .article-grid, .info-grid, .steps-l { grid-template-columns: 1fr; }
  .article-featured, .split { grid-template-columns: 1fr; gap: 28px; }
  .article-featured .img, .split .visual { height: 280px; }
}

/* ============================================================
   MOBILE — Fiverr-style homepage layout (≤760px)
   Desktop is untouched; everything below is mobile-only.
   (final block — wins)
   ============================================================ */

/* hamburger button (hidden on desktop) */
.nav-toggle { display: none; }

/* mobile-only hero search bar (hidden on desktop) */
.hero-search-m { display: none; }

@media (max-width: 760px) {

  /* ---- Header: logo left, hamburger right, slide-down drawer ---- */
  .header { height: 60px; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 42px; height: 42px; padding: 9px;
    background: none; border: none; border-radius: 10px;
  }
  .nav-toggle span { height: 2px; width: 100%; background: #000; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .header-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    margin-left: 0; gap: 0;
    flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 6px 18px 16px;
    box-shadow: 0 20px 34px rgba(0,0,0,.13);
    max-height: calc(100dvh - 60px); overflow-y: auto;
    display: none;
  }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 15px 4px; font-size: 16px; font-weight: 600; border-bottom: 1px solid #f1ede5; }
  .header-nav a.hide-sm { display: flex; }                 /* show every link inside the drawer */
  .header-nav .btn.btn-green { margin-top: 14px; padding: 15px; font-size: 16px; border-bottom: none; }

  /* ---- Hero: search-first, single column, tighter ---- */
  .hero-grid { grid-template-columns: minmax(0, 1fr); padding: 40px 18px 48px; gap: 30px; }
  .hero h1 { letter-spacing: -.8px; }
  .hero-lead { margin-top: 14px; font-size: 16px; }

  .hero-search-m { display: flex; margin-top: 22px; max-width: 100%; width: 100%; }
  .hero-search-m input { min-width: 0; }
  .hero-search-m button { padding: 12px 18px; flex: 0 0 auto; }

  /* checklist a little more compact, CTA full width */
  .hero-check { margin-top: 22px; gap: 11px; }
  .hero-check li { font-size: 15px; }
  .hero-cta { margin-top: 24px; flex-direction: column; gap: 10px; }
  .hero-btn { width: 100%; padding: 15px; }
  .hero-trust { margin-top: 22px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-trust .sep { display: none; }            /* no orphaned bullet when stacked */

  /* profile cards: swipeable peek carousel (native scroll, hide arrows) */
  .hero-cards { overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scroll-padding-left: 18px; margin: 0 -18px; padding: 4px 18px; }
  .hero-cards::-webkit-scrollbar { display: none; }
  .cards-track { transform: none !important; transition: none; }
  .pcard { flex: 0 0 76vw; height: 340px; scroll-snap-align: start; }
  .cards-ctrl { display: none; }

  /* ---- Category row: horizontal snap-scroll cards (Fiverr signature) ---- */
  .categories { padding: 28px 0 6px; }
  .cat-grid {
    display: flex; gap: 12px; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
    scroll-padding-left: 18px;
    margin: 0 -18px; padding: 4px 18px 16px;
  }
  .cat-grid::-webkit-scrollbar { display: none; }
  .cat-card {
    flex: 0 0 150px; min-height: 128px;
    align-items: center; justify-content: center;   /* centre icon + label, H & V */
    text-align: center;
    gap: 12px; padding: 18px 12px;
    scroll-snap-align: start;
  }
  .cat-card svg { width: 42px; height: 42px; padding: 10px; }
  .cat-card span { font-size: 12.5px; line-height: 1.3; white-space: nowrap; }

  /* ---- Section rhythm ---- */
  .section { padding: 40px 0; }
  .section h2 { font-size: 23px; }
  .pop-head { margin-bottom: 20px; }

  /* section header + side action: stack so the button never crowds the title */
  .make-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
  .make-head h2 { font-size: 23px; }

  /* dark/orange banners: shrink to content (drop the template's 460px min-height
     that leaves a big empty area under the content on mobile) */
  .pro-banner, .ai-banner { min-height: 0; padding: 30px 22px 32px; }

  /* ---- Magazine / guides: horizontal snap-scroll ---- */
  .guides-head { margin-bottom: 18px; }
  .guides-grid {
    display: flex; gap: 14px; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
    scroll-padding-left: 18px;
    margin: 0 -18px; padding: 0 18px 6px;
  }
  .guides-grid::-webkit-scrollbar { display: none; }
  .guide-card { flex: 0 0 80%; scroll-snap-align: start; }
  .guide-card .img { height: 200px; }

  /* benefits read better as a single column on a phone */
  .benefits { grid-template-columns: 1fr; gap: 18px; }
  .benefit p { max-width: none; }

  /* footer: stack into two columns (override the home page's inline 4-col grid) */
  .footer-cols { grid-template-columns: 1fr 1fr !important; gap: 28px 18px; }
  .footer-cols > :first-child { grid-column: 1 / -1; }

  /* ============ Subpages ============ */

  /* compact page hero */
  .page-hero .container { padding: 42px 18px 40px; }
  .page-hero .crumbs { margin-bottom: 14px; }

  /* page-hero search bar: full width + overflow-safe */
  .page-hero .hero-search { max-width: 100%; width: 100%; }
  .page-hero .hero-search input { min-width: 0; }
  .page-hero .hero-search button { flex: 0 0 auto; padding: 12px 18px; }

  /* directory filter chips -> horizontal snap-scroll (Fiverr-style) */
  .filter-bar {
    flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; scroll-padding-left: 18px;
    margin: 0 -18px 26px; padding: 2px 18px 10px;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-chip { flex: 0 0 auto; scroll-snap-align: start; }

  /* tighten large component paddings on phones */
  .lead-section { padding: 44px 0; }
  .lead-section.tight { padding: 34px 0; }
  .offer-card { padding: 32px 22px; }
  .article-featured .img, .split .visual { height: 230px; }
  .section-head-c { margin-bottom: 32px; }
}
