/* =====================================================================
   FoodicsPays — Global Stylesheet
   A modern, responsive design system for the marketing site.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --brand: #0e9f6e;
  --brand-dark: #0b7a53;
  --brand-darker: #07372a;
  --brand-deep: #052a20;
  --brand-soft: #e7f6ef;
  --accent: #f59e0b;
  --accent-soft: #fff3df;

  --ink: #0f172a;
  --body: #334155;
  --muted: #64748b;
  --line: #e6ebe9;
  --line-strong: #cfd9d5;

  --bg: #ffffff;
  --bg-alt: #f6faf8;
  --bg-dark: #07241c;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --shadow: 0 10px 30px -12px rgba(7, 55, 42, .18);
  --shadow-lg: 0 30px 60px -25px rgba(7, 55, 42, .35);

  --container: 1160px;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Sora", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand-dark); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--brand); }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.32rem; }
p { color: var(--body); }
strong { color: var(--ink); font-weight: 600; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }
.section--brand { background: var(--brand-soft); }
.section--dark { background: var(--bg-dark); color: #cfe7de; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #aecabd; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section--dark .eyebrow { background: rgba(14,159,110,.18); color: #6ee7b7; }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p { font-size: 1.08rem; margin-top: 14px; color: var(--muted); }
.lead { font-size: 1.18rem; color: var(--body); }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px -8px rgba(14,159,110,.7); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--brand-darker); }
.btn-light:hover { background: #f0fff8; transform: translateY(-2px); color: var(--brand-darker); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.link-arrow { font-family: var(--font-head); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow svg { transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; color: var(--ink); letter-spacing: -.03em; }
.logo:hover { color: var(--ink); }
.logo .mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.2rem;
  box-shadow: 0 6px 16px -6px rgba(14,159,110,.8);
}
.logo b { color: var(--brand); font-weight: 800; }

.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav a { color: var(--ink); font-weight: 500; font-size: .97rem; padding: 9px 14px; border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: 5px; }
.main-nav a:hover { background: var(--bg-alt); color: var(--brand-dark); }
.main-nav .has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 264px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: var(--radius-sm); }
.dropdown li a span { font-weight: 600; font-size: .95rem; }
.dropdown li a small { color: var(--muted); font-weight: 400; font-size: .82rem; }
.dropdown li a:hover { background: var(--brand-soft); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(14,159,110,.16), transparent 60%),
    radial-gradient(700px 500px at 5% 110%, rgba(245,158,11,.10), transparent 55%),
    var(--bg);
  padding: 90px 0 96px;
}
.hero .split { gap: 48px; }
.hero h1 { margin-bottom: 20px; }
.hero p.lead { margin-bottom: 30px; max-width: 540px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line);
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: .85rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.pill svg { color: var(--brand); }

/* hero visual card */
.hero-visual { position: relative; }
.device {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 22px; position: relative; z-index: 2;
}
.device-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.device-head .dots { display: flex; gap: 6px; }
.device-head .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); display: block; }
.amount { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--ink); letter-spacing: -.03em; }
.amount small { font-size: 1rem; color: var(--muted); font-weight: 500; }
.txn-row { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.txn-row:first-of-type { border-top: 0; }
.txn-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; flex: none; }
.txn-row .meta { flex: 1; min-width: 0; }
.txn-row .meta b { display: block; font-size: .95rem; }
.txn-row .meta span { font-size: .82rem; color: var(--muted); }
.txn-row .val { font-weight: 700; color: var(--ink); font-family: var(--font-head); }
.txn-row .val.pos { color: var(--brand-dark); }
.float-card {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 14px 16px;
  display: flex; align-items: center; gap: 11px; z-index: 3; font-size: .9rem;
}
.float-card .ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex: none; }
.float-card b { display: block; font-size: .95rem; color: var(--ink); }
.float-card span { font-size: .78rem; color: var(--muted); }
.float-card.tl { top: -22px; left: -26px; }
.float-card.br { bottom: -24px; right: -22px; }

/* ---------- Logo strip ---------- */
.logos { padding: 40px 0; border-bottom: 1px solid var(--line); }
.logos p { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; font-weight: 600; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 44px; }
.logos-row span { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: #94a3b8; letter-spacing: -.02em; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-dark); margin-bottom: 18px;
}
.card .ic.amber { background: var(--accent-soft); color: #b45309; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card-link { margin-top: 16px; font-size: .92rem; }

.feature-flat { display: flex; gap: 16px; align-items: flex-start; }
.feature-flat .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; flex: none; }
.feature-flat h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feature-flat p { color: var(--muted); font-size: .96rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--brand-dark); letter-spacing: -.03em; }
.section--dark .stat b { color: #6ee7b7; }
.stat span { color: var(--muted); font-size: .95rem; }
.section--dark .stat span { color: #9cc3b3; }

/* ---------- Media block (image/visual + text) ---------- */
.media-visual {
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--brand-darker), var(--brand-deep));
  padding: 36px; color: #cfe7de; position: relative; overflow: hidden; min-height: 320px;
  box-shadow: var(--shadow);
}
.media-visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 300px at 90% 0%, rgba(14,159,110,.4), transparent 60%);
}
.media-visual .inner { position: relative; z-index: 1; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--body); }
.check-list li svg { color: var(--brand); flex: none; margin-top: 3px; }
.section--dark .check-list li { color: #cfe7de; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step .num {
  counter-increment: step; flex: none;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff; font-family: var(--font-head); font-weight: 700;
  display: grid; place-items: center; font-size: 1.05rem;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.14rem; margin-bottom: 5px; }
.step p { color: var(--muted); font-size: .97rem; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); height: 100%; }
.quote-card .stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote { font-size: 1.04rem; color: var(--ink); line-height: 1.6; margin-bottom: 20px; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(140deg, var(--brand), var(--brand-dark)); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); flex: none; }
.who b { display: block; font-size: .95rem; color: var(--ink); }
.who span { font-size: .82rem; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--brand); box-shadow: var(--shadow); position: relative; }
.price-card.featured .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-pill); }
.price-card h3 { font-size: 1.25rem; }
.price-card .desc { color: var(--muted); font-size: .92rem; margin: 6px 0 18px; min-height: 42px; }
.price { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--ink); letter-spacing: -.03em; }
.price small { font-size: .95rem; color: var(--muted); font-weight: 500; }
.price-sub { color: var(--muted); font-size: .88rem; margin-bottom: 22px; }
.price-card ul { margin: 6px 0 26px; display: grid; gap: 11px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.price-card ul li svg { color: var(--brand); flex: none; margin-top: 3px; }
.price-card .btn { margin-top: auto; }

/* table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
table.compare thead th { background: var(--bg-alt); font-family: var(--font-head); color: var(--ink); }
table.compare td:not(:first-child), table.compare th:not(:first-child) { text-align: center; }
table.compare tr:last-child td { border-bottom: 0; }
table.compare .yes { color: var(--brand); font-weight: 700; }
table.compare .no { color: var(--line-strong); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { transition: transform .2s ease; flex: none; color: var(--brand); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--brand-darker), var(--brand-deep));
  border-radius: var(--radius-lg); padding: 56px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 0%, rgba(14,159,110,.45), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #b8d6c8; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 360px at 90% -20%, rgba(14,159,110,.14), transparent 60%),
    var(--bg-alt);
  padding: 64px 0 60px; border-bottom: 1px solid var(--line);
}
.page-hero .crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.page-hero .crumbs a { color: var(--muted); }
.page-hero .crumbs a:hover { color: var(--brand-dark); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1.12rem; color: var(--muted); max-width: 680px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink); 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 4px rgba(14,159,110,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }
.contact-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; flex: none; }
.contact-line b { display: block; color: var(--ink); font-size: .98rem; }
.contact-line a, .contact-line span { color: var(--muted); font-size: .94rem; }
.form-success { display: none; background: var(--brand-soft); border: 1px solid var(--brand); color: var(--brand-darker); padding: 16px 18px; border-radius: var(--radius); margin-bottom: 18px; font-weight: 500; }
.form-success.show { display: block; }

/* ---------- Blog ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; height: 100%; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-thumb { height: 180px; background: linear-gradient(135deg, var(--brand), var(--brand-darker)); position: relative; }
.post-thumb.v2 { background: linear-gradient(135deg, #f59e0b, #b45309); }
.post-thumb.v3 { background: linear-gradient(135deg, #0ea5e9, #075985); }
.post-thumb.v4 { background: linear-gradient(135deg, #8b5cf6, #5b21b6); }
.post-thumb.v5 { background: linear-gradient(135deg, #ec4899, #9d174d); }
.post-thumb.v6 { background: linear-gradient(135deg, #14b8a6, #115e59); }
.post-thumb .cat { position: absolute; bottom: 14px; left: 16px; background: rgba(255,255,255,.92); color: var(--brand-darker); font-size: .74rem; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); letter-spacing: .04em; }
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-body .meta { font-size: .82rem; color: var(--muted); margin-bottom: 10px; }
.post-body h3 { font-size: 1.16rem; margin-bottom: 10px; }
.post-body p { color: var(--muted); font-size: .94rem; margin-bottom: 16px; }
.post-body .card-link { margin-top: auto; }

/* ---------- Article ---------- */
.article { max-width: 760px; margin-inline: auto; }
.article p { margin-bottom: 20px; font-size: 1.08rem; }
.article h2 { margin: 38px 0 16px; }
.article h3 { margin: 28px 0 12px; }
.article ul { list-style: disc; padding-left: 24px; margin-bottom: 20px; }
.article ul li { margin-bottom: 8px; }
.article blockquote { border-left: 4px solid var(--brand); padding: 6px 0 6px 22px; margin: 26px 0; font-size: 1.2rem; font-family: var(--font-head); color: var(--ink); font-style: italic; }

/* ---------- Misc content blocks ---------- */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { margin: 34px 0 12px; font-size: 1.4rem; }
.legal h3 { margin: 22px 0 8px; }
.legal p, .legal li { color: var(--body); margin-bottom: 14px; }
.legal ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.legal .updated { color: var(--muted); font-size: .92rem; margin-bottom: 30px; }

.badge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.badge {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; background: #fff;
}
.badge .ic { width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; }
.badge b { display: block; color: var(--ink); font-family: var(--font-head); font-size: 1rem; }
.badge span { font-size: .85rem; color: var(--muted); }

.icon-list { display: grid; gap: 14px; }
.icon-list li { display: flex; gap: 12px; align-items: flex-start; }
.icon-list li svg { color: var(--brand); flex: none; margin-top: 4px; }

.accent-box { background: var(--accent-soft); border: 1px solid #fcd9a0; border-radius: var(--radius); padding: 22px 24px; }
.accent-box b { color: #92400e; }

.job-card { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.job-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.job-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.job-card .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.job-card .tags span { font-size: .78rem; background: var(--bg-alt); color: var(--muted); padding: 4px 10px; border-radius: var(--radius-pill); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #9cc3b3; padding: 68px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: #84a99a; font-size: .95rem; max-width: 320px; margin-bottom: 18px; }
.footer-col h4 { color: #fff; font-size: .95rem; font-family: var(--font-head); margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #9cc3b3; font-size: .93rem; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfe7de; }
.social a:hover { background: var(--brand); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding-top: 24px; flex-wrap: wrap; }
.footer-bottom p { color: #84a99a; font-size: .88rem; }
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .legal-links a { color: #84a99a; font-size: .88rem; }
.footer-bottom .legal-links a:hover { color: #fff; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 18px; }
.mt-4 { margin-top: 34px; }
.mb-2 { margin-bottom: 18px; }
.muted { color: var(--muted); }
.hide-mobile { display: initial; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .split, .hero .split { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin-inline: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: 74px 0 0 0; background: #fff; padding: 22px;
    transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; z-index: 50;
    border-top: 1px solid var(--line);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav > ul > li > a { padding: 14px 12px; font-size: 1.05rem; border-radius: var(--radius-sm); justify-content: space-between; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 2px 0 8px 14px; padding: 0 0 0 8px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .header-cta { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .grid-4, .grid-3, .grid-2, .badge-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 38px 24px; }
  .float-card { display: none; }
  .hide-mobile { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
}
