/* ============================================================
   Softech Team — brand palette carried over from the original
   softech.team theme: --theme-color1 #ff6809 on #111,
   Poppins headings + Roboto body.
   Hand-written CSS, no build step.
   ============================================================ */

:root {
  --ink:          #13121D;
  --ink-2:        #2A2833;
  --body:         #696969;
  --muted:        #8A8A93;
  --line:         #E4E4E8;
  --line-soft:    #F1F1F4;

  --paper:        #FFFFFF;
  --tint:         #F7F7F9;
  --tint-2:       #EFEFF2;

  --brand:        #FF6809;
  --brand-dark:   #C2510B;
  --brand-deep:   #E85A05;
  --brand-light:  #FFEEE1;
  --accent:       #FDC009;
  --accent-soft:  #FEF3D6;

  --danger:       #C0392B;

  --radius-sm:    4px;
  --radius:       10px;
  --radius-lg:    16px;

  --shadow-sm:    0 1px 2px rgba(19,18,29,.06), 0 1px 3px rgba(19,18,29,.05);
  --shadow:       0 4px 12px rgba(19,18,29,.07), 0 12px 32px rgba(19,18,29,.06);
  --shadow-lg:    0 18px 48px rgba(19,18,29,.13);

  --wrap:         1180px;
  --wrap-narrow:  760px;

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

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h3 { font-size: clamp(1.08rem, 1.6vw, 1.2rem); }
h4 { font-size: 1rem; }
.widget-title, .card-title, .panel-title {
  font-family: var(--display); font-weight: 700; color: var(--ink);
  font-size: 1rem; line-height: 1.2; letter-spacing: -.01em; margin: 0 0 .5em;
}
p  { margin: 0 0 .85em; }
ul, ol { margin: 0 0 .85em; padding-left: 1.25em; }
li { margin-bottom: .3em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 1.75rem 0; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 3px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding: clamp(2.25rem, 4vw, 3.5rem) 0; }
.section--tint { background: var(--tint); }
.section--ink { background: var(--ink); color: #C9C7CE; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--tight { padding-block: clamp(1.75rem, 3vw, 2.5rem); }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 300px); gap: 40px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 28px; } }

.stack > * + * { margin-top: .85rem; }
.center { text-align: center; }
.lede { font-size: 1.06rem; color: var(--ink-2); }
.small { font-size: .92rem; }
.muted { color: var(--muted); }

/* ---------- eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display);
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-dark); margin-bottom: .6rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }
.section--ink .eyebrow { color: var(--accent); }
.sec-head { max-width: 700px; margin-bottom: 1.75rem; }
/* Full-bleed variant: heading and body span the same width as the grid beneath. */
.sec-head--wide { max-width: none; }
.sec-head.center { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--display); font-weight: 600; font-size: .92rem;
  padding: .62rem 1.15rem; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .12s;
  text-decoration: none; line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: var(--ink); }
.btn-primary:hover { background: var(--brand-deep); color: var(--ink); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--paper); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--brand-light); color: var(--brand-dark); }
.btn-outline-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- header ---------- */
.topbar {
  background: var(--ink); color: #D8D6DC; font-size: .84rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 34px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 500; display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.topbar a:hover { color: var(--brand); text-decoration: none; }
.topbar-icon { color: var(--brand); flex: none; }
.topbar-phone { font-weight: 600; letter-spacing: .01em; }
.topbar ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; flex-wrap: wrap; }
.topbar li { margin: 0; display: flex; align-items: center; gap: .4rem; white-space: nowrap; }
@media (max-width: 720px) { .topbar { display: none; } }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 24px; min-height: 62px; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--display); font-weight: 800; font-size: 1.22rem; color: var(--ink); letter-spacing: -.03em; }
.brand:hover { text-decoration: none; }
.brand img { width: auto; height: 32px; display: block; }
.site-footer .brand img { height: 34px; }
.brand small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-dark); }

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav li { margin: 0; }
.nav a {
  display: block; padding: .5rem .8rem; border-radius: var(--radius-sm);
  font-family: var(--display); font-weight: 600; font-size: .95rem; color: var(--ink-2);
}
.nav a:hover { background: var(--tint); color: var(--brand-dark); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--brand-dark); background: var(--brand-light); }
.header-cta { flex: none; }
@media (max-width: 980px) { .nav, .header-cta { display: none; } }

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: .55rem .7rem; cursor: pointer; color: var(--ink);
}
@media (max-width: 980px) { .nav-toggle { display: block; } }
.mobile-nav { display: none; border-bottom: 1px solid var(--line); background: var(--paper); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 14px 0; }
.mobile-nav li { margin: 0; }
.mobile-nav a { display: block; padding: .8rem 22px; font-family: var(--display); font-weight: 600; color: var(--ink); }
.mobile-nav a:hover { background: var(--tint); text-decoration: none; }
.mobile-nav .btn { margin: 10px 22px 6px; }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(165deg, #13121D 0%, #221C22 55%, #33201A 100%);
  color: #C6D6E4; position: relative; overflow: hidden;
  padding: clamp(2.25rem, 4.5vw, 3.75rem) 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(255,104,9,.34), transparent 46%),
    radial-gradient(circle at 12% 88%, rgba(253,192,9,.14), transparent 42%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lede { color: #C4C1CA; font-size: 1.06rem; max-width: 56ch; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 36px; align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 28px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .85rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; padding: .35rem .9rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: #E3E1E6;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }

.hero-panel {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg); padding: 22px; backdrop-filter: blur(6px);
}
.hero-panel .panel-title { color: #fff; font-size: 1rem; margin-bottom: .7rem; }
.hero-panel ul { list-style: none; margin: 0; padding: 0; }
.hero-panel li { display: flex; gap: .7rem; padding: .45rem 0; border-bottom: 1px solid rgba(255,255,255,.09); font-size: .9rem; color: #C9C7CE; margin: 0; }
.hero-panel li:last-child { border-bottom: 0; }
.hero-panel .tick { color: var(--brand); flex: none; margin-top: .18rem; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { background: var(--ink); color: #C4C1CA; padding: clamp(1.75rem, 3vw, 2.5rem) 0; position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 88% 12%, rgba(255,104,9,.28), transparent 48%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; max-width: 20ch; }
.page-hero .lede { color: #C4C1CA; max-width: 58ch; margin-bottom: 0; }

.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0 0 .7rem; font-size: .82rem; color: #9C99A4; }
.crumbs li { margin: 0; display: flex; align-items: center; gap: .5rem; }
.crumbs li + li::before { content: "/"; color: #6B6874; }
.crumbs a { color: #B3B0BA; }

/* ---------- cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; transition: border-color .15s, box-shadow .15s, transform .15s;
  display: flex; flex-direction: column;
}
.card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.card h2, .card h3 { margin-bottom: .35rem; }
.card h2 { font-size: clamp(1.08rem, 1.6vw, 1.2rem); }
.card p { color: var(--body); margin-bottom: .75rem; }
.card .card-link { margin-top: auto; font-family: var(--display); font-weight: 600; font-size: .93rem; display: inline-flex; align-items: center; gap: .4rem; }
.card .card-link::after { content: "→"; transition: transform .15s; }
.card:hover .card-link::after { transform: translateX(3px); }

.card-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--brand-light); color: var(--brand-dark);
  display: grid; place-items: center; margin-bottom: .7rem; flex: none;
}
.card--plain:hover { transform: none; border-color: var(--line); box-shadow: none; }

/* ---------- feature list ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: .9rem; margin: 0; }
.feature-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%; margin-top: .15rem;
  background: var(--brand-light); color: var(--brand-dark); display: grid; place-items: center; font-size: .72rem; font-weight: 800;
}
.feature-list strong { display: block; color: var(--ink); font-family: var(--display); margin-bottom: .15rem; }
.feature-list span { font-size: .96rem; }

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); list-style: none; padding: 0; margin: 0; }
.steps li { margin: 0; padding-top: 1.1rem; border-top: 2px solid var(--line); position: relative; }
.steps li::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: -.95rem; left: 0; background: var(--paper); padding-right: .6rem;
  font-family: var(--display); font-weight: 800; font-size: .9rem; color: var(--brand);
}
.steps .step-title { font-size: 1rem; margin-bottom: .35rem; }
.steps p { font-size: .95rem; margin: 0; }

/* ---------- stats ---------- */
.stat-row { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.stat { border-left: 3px solid var(--brand); padding-left: 18px; }
.stat .num { font-family: var(--display); font-size: 1.9rem; font-weight: 800; color: var(--ink); line-height: 1.1; display: block; }
.section--ink .stat .num { color: #fff; }
.stat .lbl { font-size: .9rem; color: var(--muted); }

/* ---------- accordion (FAQ) ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: .8rem 2.5rem .8rem 0; position: relative;
  font-family: var(--display); font-weight: 600; font-size: .98rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--brand); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--brand-dark); }
.faq .faq-body { padding: 0 2.5rem .9rem 0; color: var(--body); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- forms ---------- */
.form-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--ink); }
.field .hint { font-size: .84rem; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .97rem; color: var(--ink);
  padding: .58rem .8rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light);
}
.field .err { font-size: .87rem; color: var(--danger); font-weight: 500; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: .75rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1.1rem; font-size: .93rem; }
.alert-success { background: #E7F6EC; border: 1px solid #2E7D4F; color: #1E5C38; }
.alert-error { background: #FDEDEA; border: 1px solid #E8B4AC; color: #8E2A1D; }

/* ---------- contact detail blocks ---------- */
.contact-cards { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.contact-card { background: var(--tint); border-radius: var(--radius); padding: 18px; }
.contact-card .card-icon { background: var(--paper); }
.contact-card .card-title { margin-bottom: .3rem; }
.contact-card p, .contact-card a { font-size: .97rem; margin: 0; }

/* ---------- prose (legal pages) ---------- */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 1.75rem; font-size: 1.25rem; }
.prose h3 { margin-top: 1.3rem; font-size: 1.05rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul { padding-left: 1.25em; }
.prose li { margin-bottom: .5em; }
.prose .updated { font-size: .9rem; color: var(--muted); border-left: 3px solid var(--line); padding-left: 14px; margin-bottom: 1.4rem; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .94rem; }
.prose th, .prose td { text-align: left; padding: .5rem .7rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-family: var(--display); color: var(--ink); background: var(--tint); }
.table-scroll { overflow-x: auto; }

/* ---------- toc ---------- */
.toc { background: var(--tint); border-radius: var(--radius); padding: 18px; position: sticky; top: 80px; }
.toc .widget-title { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .55rem; }
.toc ul { list-style: none; margin: 0; padding: 0; }
.toc li { margin-bottom: .35rem; }
.toc a { font-size: .93rem; color: var(--ink-2); }

/* ---------- pills / tags ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.pill-row li { margin: 0; }
.pill {
  display: inline-block; padding: .38rem .85rem; border-radius: 999px;
  background: var(--tint); border: 1px solid var(--line); color: var(--ink-2);
  font-size: .88rem; font-weight: 500;
}
a.pill:hover { border-color: var(--brand); color: var(--brand-dark); text-decoration: none; background: var(--brand-light); }

/* ---------- quote ---------- */
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.quote blockquote { margin: 0 0 1.1rem; font-size: 1.05rem; color: var(--ink-2); }
.quote blockquote::before { content: "\201C"; font-family: var(--display); font-size: 2.6rem; color: var(--brand); line-height: 0; vertical-align: -.35em; margin-right: .1em; }
.quote cite { font-style: normal; font-family: var(--display); font-weight: 700; color: var(--ink); display: block; font-size: .95rem; }
.quote .role { font-size: .88rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, #13121D 0%, #3A2118 100%);
  color: #C4C1CA; border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 40px; align-items: center;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 88% 30%, rgba(255,104,9,.22), transparent 55%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: .45rem; }
.cta-band p { color: #C4C1CA; max-width: 58ch; margin-bottom: 0; }

.cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; min-width: 230px; }
.cta-actions .btn { width: 100%; }
.cta-meta {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  margin: .15rem 0 0 !important; font-size: .82rem; color: #9B98A3 !important;
}

@media (max-width: 780px) {
  .cta-band { grid-template-columns: 1fr; gap: 18px; }
  .cta-actions { min-width: 0; }
}

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #9B98A3; padding-top: clamp(2rem, 3.5vw, 2.75rem); font-size: .9rem; }
.site-footer .widget-title { color: #fff; font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; margin-bottom: .7rem; }
.site-footer a { color: #C4C1CA; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: minmax(0, 1.6fr) repeat(auto-fit, minmax(150px, 1fr)); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .4rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { max-width: 42ch; color: #9B98A3; }
.footer-bottom {
  margin-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.1); padding: 1rem 0;
  display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: space-between; align-items: center;
  font-size: .87rem; color: #86838E;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom li { margin: 0; }
.legal-note { font-size: .85rem; color: #7A7782; max-width: 70ch; margin-top: .8rem; }

/* ---------- misc ---------- */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 200; background: #fff; padding: .7rem 1.1rem; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.link-list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; }
.link-list li { margin-bottom: .6rem; break-inside: avoid; }
@media (max-width: 560px) { .link-list { columns: 1; } }

@media print {
  .site-header, .topbar, .site-footer, .nav-toggle, .cta-band { display: none; }
  body { font-size: 12pt; color: #000; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Spacing between blocks inside a section — replaces inline margin-top styles. */
.mt-sec { margin-top: 1.75rem; }
.mt-mid { margin-top: 1.1rem; }

/* ---------- FAQ index: two compact columns ---------- */
.faq-jump { display: flex; flex-wrap: wrap; gap: 8px; }
.faq-jump .pill { font-size: .84rem; padding: .3rem .7rem; }
.faq-jump .pill span {
  display: inline-block; margin-left: .35rem; padding: 0 .35rem;
  background: var(--brand-light); color: var(--brand-dark);
  border-radius: 999px; font-size: .76rem; font-weight: 600;
}

.faq-group-title {
  font-size: 1.15rem; margin: 2rem 0 .6rem;
  padding-bottom: .4rem; border-bottom: 2px solid var(--brand);
  display: flex; align-items: baseline; gap: .5rem;
}
.faq-group-title:first-child { margin-top: 0; }
.faq-count { font-size: .8rem; font-weight: 500; color: var(--muted); font-family: var(--sans); }

/* Two columns of question rows. Each <details> stays whole. */
.faq-cols { border-top: 0; columns: 2; column-gap: 34px; }
.faq-cols > details { break-inside: avoid; border-bottom: 1px solid var(--line); }
.faq-cols > details:first-child { border-top: 1px solid var(--line); }

/* Compact rows: tight padding, smaller type, single-line questions when closed. */
.faq-cols summary {
  padding: .42rem 1.4rem .42rem 0;
  font-size: .88rem; font-weight: 500; line-height: 1.35;
}
.faq-cols summary::after { font-size: 1.05rem; right: .1rem; }
.faq-cols .faq-body { padding: 0 1.4rem .6rem 0; font-size: .86rem; line-height: 1.5; }

@media (max-width: 780px) { .faq-cols { columns: 1; } }

/* ---------- Guide + pricing furniture ---------- */
.answer-box {
  background: var(--brand-light); border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 1.5rem;
}
.answer-box h2 {
  font-size: .76rem !important; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-dark); margin: 0 0 .4rem !important;
}
.answer-box p { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.55; }

.takeaways {
  background: var(--tint); border-radius: var(--radius);
  padding: 18px 22px; margin: 1.75rem 0;
}
.takeaways h2 { font-size: 1rem !important; margin: 0 0 .6rem !important; }
.takeaways ul { margin: 0; padding-left: 1.15em; }
.takeaways li { margin-bottom: .35em; font-size: .95rem; }

.price-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.price-table th, .price-table td {
  text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line); vertical-align: top;
}
.price-table th {
  font-family: var(--display); color: var(--ink); background: var(--tint);
  font-size: .82rem; letter-spacing: .04em; text-transform: uppercase;
}
.price-table td:first-child { white-space: nowrap; }
.price-table tr:hover td { background: var(--tint); }

/* Step numbers sit above their title; keep them from colliding after the h3 change. */
.steps .step-title { font-family: var(--display); font-weight: 700; color: var(--ink); }

/* ---------- Country cards ---------- */
.country-card-head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.country-card-head h2 { margin: 0; }
.country-flag { font-size: 1.5rem; line-height: 1; flex: none; }

/* ---------- Country list on the home page ---------- */
/* One column, and each card stacks: name, overlap, then flag underneath. */
.country-list {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 10px;
  grid-template-columns: 1fr;                       /* single column on small screens */
}
@media (min-width: 620px)  { .country-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px)  { .country-list { grid-template-columns: repeat(3, 1fr); } }
.country-list li { margin: 0; }
.country-list a {
  display: block; padding: .8rem .9rem; height: 100%; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04);
  color: #fff; text-decoration: none; transition: border-color .15s, background .15s;
}
.country-list a:hover { border-color: var(--brand); background: rgba(255,104,9,.1); text-decoration: none; }
.country-list strong { display: block; font-family: var(--display); font-size: 1rem; font-weight: 600; line-height: 1.25; }
.country-list small { display: block; font-size: .82rem; color: #9B98A3; line-height: 1.35; margin-top: .1rem; }
.country-list-head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.country-list-flag { font-size: 1.2rem; line-height: 1; flex: none; }
