/* ============================================
   VATCOMPASS — Design System v3 (Inter)
   ============================================ */

:root {
  --dark:        #0b2422;
  --dark-mid:    #0f2e2b;
  --dark-card:   #132e2a;
  --dark-border: #1e3d38;
  --gold:        #c8a96e;
  --gold-hover:  #b8944f;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --light-bg:    #f3f2ef;
  --text-main:   #0b2422;
  --text-muted:  #444444;
  --text-light:  rgba(255,255,255,0.6);
  --border:      #e2e0db;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --max-w: 1080px;
  --r: 6px;
  --r-btn: 4px;
  --t: 0.16s ease;
  --sp: 80px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; font-weight: 400; background: var(--white); color: #1a1a1a; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: #0b2422; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: #0b2422; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; color: #0b2422; }
p { font-size: 1rem; line-height: 1.7; font-weight: 400; }
.label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #0b2422; display: block; margin-bottom: 12px; }
.label--light { color: var(--gold); }
/* backward compat */
.section-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #0b2422; display: block; margin-bottom: 12px; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: var(--sp) 24px; }
.section-sub { font-size: 1.0625rem; color: #1a1a1a; margin-top: 12px; max-width: 540px; line-height: 1.7; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav { position: sticky; top: 0; z-index: 1000; background-color: var(--dark); background-image: linear-gradient(rgba(11,36,34,0.72), rgba(11,36,34,0.72)), url('../hero-bg.jpg'); background-size: cover; background-position: top center; background-repeat: no-repeat; height: 64px; display: flex; align-items: center; padding: 0 24px; border-bottom: 1px solid var(--dark-border); }
.nav__inner { max-width: var(--max-w); margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; text-decoration: none; }
.nav__logo img { display: none; }
.nav__logo-icon { display: block; color: var(--gold); flex-shrink: 0; }
.nav__logo-text { display: block; font-size: 1.3rem; font-weight: 700; color: #ffffff; font-family: var(--font); letter-spacing: -0.02em; line-height: 1; }
.nav__links { display: flex; align-items: center; gap: 22px; list-style: none; flex: 1; justify-content: center; }
.nav__links a { font-size: 0.8125rem; font-weight: 500; color: #ffffff; transition: color var(--t); white-space: nowrap; }
.nav__links a:hover { color: var(--gold); }

.nav__dropdown { position: relative; }
.nav__dropdown-toggle { font-size: 0.8125rem; font-weight: 500; color: #ffffff; background: none; border: none; cursor: pointer; font-family: var(--font); display: flex; align-items: center; gap: 4px; padding: 0; transition: color var(--t); }
.nav__dropdown-toggle:hover, .nav__dropdown:hover .nav__dropdown-toggle { color: var(--gold); }
.nav__dropdown-toggle svg { width: 10px; height: 10px; transition: transform var(--t); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%); background: var(--dark-mid); border: 1px solid var(--dark-border); border-radius: var(--r); padding: 6px 0; min-width: 220px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t); }
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; }
.nav__dropdown-menu a { display: block; padding: 9px 16px; font-size: 0.8125rem; color: rgba(255,255,255,0.65) !important; transition: color var(--t), background var(--t); }
.nav__dropdown-menu a:hover { color: var(--gold) !important; background: rgba(255,255,255,0.04); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0; }
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: var(--t); }
.nav__mobile { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--dark); border-bottom: 1px solid var(--dark-border); padding: 20px 24px; z-index: 999; }
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; margin-bottom: 16px; }
.nav__mobile ul li { border-bottom: 1px solid var(--dark-border); }
.nav__mobile ul a { display: block; padding: 12px 0; color: #ffffff; font-size: 0.9375rem; transition: color var(--t); }
.nav__mobile ul a:hover { color: var(--gold); }

/* ============================================
   BUTTONS
   ============================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 22px; border-radius: var(--r-btn); font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all var(--t); border: 1.5px solid transparent; text-decoration: none; white-space: nowrap; line-height: 1; font-family: var(--font); }
.btn-lg { padding: 13px 28px; font-size: 0.9375rem; }
.btn-sm { padding: 8px 14px; font-size: 0.8125rem; }

/* Gold = primary action */
.btn-gold, .btn-primary { background: var(--gold); color: #0b2422; border-color: var(--gold); font-weight: 700; }
.btn-gold:hover, .btn-primary:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

.btn-dark { background: #0b2422; color: #ffffff; border-color: #0b2422; font-weight: 600; }
.btn-dark:hover { background: var(--dark-mid); border-color: var(--dark-mid); }

.btn-outline, .btn-outline-dark { background: transparent; color: #0b2422; border-color: #0b2422; font-weight: 600; }
.btn-outline:hover, .btn-outline-dark:hover { background: rgba(11,36,34,0.06); }

.btn-outline-light, .btn-outline-white { background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover, .btn-outline-white:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

.btn-white { background: #fff; color: var(--dark); border-color: #fff; }
.btn-white:hover { background: var(--off-white); }

/* ============================================
   HERO (dark)
   ============================================ */
.hero { background-color: var(--dark); background-image: url('../hero-bg.PNG'); background-size: cover; background-position: center center; background-repeat: no-repeat; padding: 40px 24px 36px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(11,36,34,0.75); z-index: 0; }
.hero__inner { position: relative; z-index: 1; }
.hero__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero .label { margin-bottom: 16px; }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero__sub { color: #ffffff; font-size: 1.0625rem; margin-bottom: 8px; line-height: 1.7; }
.hero__micro { font-size: 0.8125rem; color: #ffffff; margin-bottom: 28px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 32px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero__stat-num { font-size: 1.5rem; font-weight: 800; color: #ffffff; display: block; letter-spacing: -0.02em; }
.hero__stat-label { font-size: 0.72rem; color: #ffffff; text-transform: uppercase; letter-spacing: 0.08em; }

/* Report card */
.report-card { background: #fff; border-radius: var(--r); padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); position: relative; }
.report-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); border-radius: var(--r) var(--r) 0 0; }
.report-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.report-card__logo { height: 22px; width: auto; mix-blend-mode: multiply; }
.report-card__badge { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 7px; border-radius: 3px; background: rgba(200,169,110,0.1); color: #7a6030; border: 1px solid rgba(200,169,110,0.25); }
.report-card__meta { margin-bottom: 14px; }
.report-card__company { font-size: 0.9375rem; font-weight: 600; color: var(--dark); }
.report-card__date { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.report-card__cols { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(11,36,34,0.35); margin-bottom: 8px; display: grid; grid-template-columns: 1fr auto 56px; gap: 8px; }
.verdict-row { display: grid; grid-template-columns: 1fr auto 56px; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid rgba(11,36,34,0.05); }
.verdict-row:last-child { border-bottom: none; }
.verdict-country { font-size: 0.8125rem; color: var(--dark); font-weight: 500; }
.verdict-status { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 6px; border-radius: 3px; white-space: nowrap; }
.verdict-status.register { background: rgba(220,38,38,0.08); color: #b91c1c; }
.verdict-status.monitor { background: rgba(245,158,11,0.08); color: #b45309; }
.verdict-status.exempt { background: rgba(200,169,110,0.1); color: #7a6030; }
.risk-bar { height: 3px; background: rgba(11,36,34,0.08); border-radius: 2px; overflow: hidden; }
.risk-fill { height: 100%; border-radius: 2px; }
.risk-fill.high { background: #dc2626; }
.risk-fill.med { background: #f59e0b; }
.risk-fill.low { background: var(--gold); }
.risk-fill.none { background: rgba(11,36,34,0.12); }

/* ============================================
   TRUST STRIP (off-white)
   ============================================ */
.trust-strip { background: #f3f2ef; padding: 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.trust-strip__inner { display: flex; align-items: center; padding: 14px 0; gap: 0; }
.trust-strip__label { font-size: 0.78rem; color: #444444; font-weight: 500; white-space: nowrap; padding: 0 28px 0 24px; flex-shrink: 0; border-right: 1px solid var(--border); margin-right: 0; }
.trust-strip__scroll { flex: 1; overflow: hidden; display: flex; }
.marquee-track { display: flex; flex-shrink: 0; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-size: 0.875rem; color: #1a1a1a; font-weight: 500; display: inline-flex; align-items: center; padding: 0 14px; white-space: nowrap; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
.marquee-track span .fi { width: 20px; height: 15px; display: inline-block; vertical-align: middle; margin-right: 6px; border-radius: 2px; }

/* ============================================
   WHAT YOU GET (white, 4-card grid)
   ============================================ */
.wyg { background: var(--white); padding: var(--sp) 24px; }
.wyg__inner { max-width: var(--max-w); margin: 0 auto; }
.wyg__head { margin-bottom: 44px; }
.wyg__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.wyg__card { background: var(--white); border: 1px solid #d0cec9; border-left: 3px solid var(--gold); border-radius: var(--r); padding: 24px; transition: border-color var(--t); }
.wyg__card:hover { border-color: var(--gold); }
.wyg__icon { display: none; }
.wyg__icon svg { width: 18px; height: 18px; }
.wyg__card h3 { font-size: 1.1rem; font-weight: 700; color: #0b2422; margin-bottom: 8px; }
.wyg__card p { font-size: 0.875rem; color: #1a1a1a; line-height: 1.65; margin: 0; }

/* ============================================
   WHO IS BEHIND (off-white, 2-col)
   ============================================ */
.behind { background: var(--off-white); padding: var(--sp) 24px; }
.behind__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.behind__name { font-size: 0.75rem; font-weight: 700; color: #0b2422; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; display: block; }
.behind h2 { margin-bottom: 20px; }
.behind__text p { color: #1a1a1a; font-size: 0.9375rem; line-height: 1.78; margin-bottom: 14px; }
.behind__text p:last-child { margin-bottom: 0; }
.behind__stats { display: flex; flex-direction: column; gap: 16px; }
.behind__stat { padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); border-left: 3px solid var(--gold); }
.behind__stat-num { font-size: 2rem; font-weight: 800; color: #a07840; letter-spacing: -0.02em; display: block; margin-bottom: 4px; }
.behind__stat-label { font-size: 0.8125rem; color: #444444 !important; }

/* ============================================
   HOW IT WORKS (dark)
   ============================================ */
.hiw { background: var(--dark); padding: var(--sp) 24px; }
.hiw__inner { max-width: var(--max-w); margin: 0 auto; }
.hiw__head { margin-bottom: 52px; }
.hiw__head h2 { color: #ffffff; }
.hiw__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.hiw__step { }
.hiw__num { width: 38px; height: 38px; background: var(--gold); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.hiw__step h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.hiw__step p { color: rgba(255,255,255,0.9); font-size: 0.9375rem; line-height: 1.7; margin: 0; }

/* ============================================
   WHO IT IS FOR (white, 2-col cards)
   ============================================ */
.for-whom { background: var(--white); padding: var(--sp) 24px; }
.for-whom__inner { max-width: var(--max-w); margin: 0 auto; }
.for-whom__head { margin-bottom: 36px; }
.for-whom__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.for-whom__card { border: 1px solid var(--border); border-radius: var(--r); padding: 32px; }
.for-whom__card--good { border-top: 2px solid var(--gold); }
.for-whom__card h3 { font-size: 0.9375rem; font-weight: 700; color: #0b2422; margin-bottom: 20px; }
.for-whom__list { display: flex; flex-direction: column; gap: 12px; }
.for-whom__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #1a1a1a; line-height: 1.6; }
.for-whom__list li svg { flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; }
.check-icon { color: var(--gold); }
.cross-icon { color: #666666; }

/* ============================================
   COMPARISON TABLE (off-white)
   ============================================ */
.comparison { background: var(--off-white); padding: var(--sp) 24px; }
.comparison__inner { max-width: 860px; margin: 0 auto; }
.comparison__head { margin-bottom: 36px; }
.cmp-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: var(--white); }
.cmp-table th { padding: 13px 20px; font-size: 0.8125rem; font-weight: 600; text-align: left; }
.cmp-table th:first-child { background: var(--light-bg); color: var(--text-muted); width: 36%; }
.cmp-table th:nth-child(2) { background: var(--dark); color: #fff; text-align: center; }
.cmp-table th:last-child { background: var(--light-bg); color: var(--text-muted); text-align: center; }
.cmp-table td { padding: 12px 20px; border-top: 1px solid var(--border); font-size: 0.9rem; font-weight: 500; }
.cmp-table tbody tr:nth-child(even) td { background: rgba(11,36,34,0.025); }
.cmp-table td:first-child { color: #0b2422; font-weight: 600; }
.cmp-table td:nth-child(2) { text-align: center; font-weight: 600; color: var(--dark); border-left: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.cmp-table td:last-child { text-align: center; color: #1a1a1a; }
.cmp-table tr:last-child td:nth-child(2) { border-bottom: 1.5px solid var(--gold); }
.icon-check { color: var(--gold); display: inline-flex; align-items: center; }
.icon-cross { color: rgba(11,36,34,0.2); display: inline-flex; align-items: center; }

/* ============================================
   PRICING (white)
   ============================================ */
.pricing { background: var(--white); padding: var(--sp) 24px; }
.pricing__inner { max-width: var(--max-w); margin: 0 auto; }
.pricing__head { margin-bottom: 44px; }
.pricing__grid { display: grid; grid-template-columns: 360px 1fr; gap: 24px; align-items: start; }
.pricing-card { border: 1px solid var(--border); border-radius: var(--r); padding: 32px; background: var(--white); }
.pricing-card--featured { border-top: 2px solid var(--gold); }
.pricing-card .label { margin-bottom: 8px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: #0b2422; }
.pricing-card__name { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.pricing-card__price { font-size: 3.5rem; font-weight: 800; color: #0b2422; letter-spacing: -0.03em; line-height: 1; margin: 18px 0; }
.pricing-card__price sup { font-size: 1.35rem; vertical-align: super; font-weight: 700; }
.pricing-card__desc { font-size: 0.875rem; color: #1a1a1a; line-height: 1.65; margin-bottom: 18px; }
.pricing-card__features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.pricing-card__feature { display: flex; align-items: center; gap: 9px; font-size: 0.875rem; color: #1a1a1a; }
.pricing-card__feature svg { color: var(--gold); flex-shrink: 0; width: 14px; height: 14px; }
.pricing-card__divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.agency-tiers { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 18px; }
.agency-tier { border: 1px solid var(--border); border-radius: var(--r); padding: 14px; text-align: center; }
.agency-tier__name { font-size: 0.68rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.agency-tier__price { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; letter-spacing: -0.02em; }
.agency-tier__credits { font-size: 0.72rem; color: #444444; }

/* ============================================
   PROVIDERS CTA (off-white)
   ============================================ */
.providers-cta { background: var(--off-white); padding: var(--sp) 24px; }
.providers-cta__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.providers-cta__box { max-width: 580px; }
.providers-cta__box h2 { margin-bottom: 12px; }
.providers-cta__box p { color: #1a1a1a; margin-bottom: 24px; font-size: 1.0625rem; }

.providers-cta__photo { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 8px; display: block; }
@media (max-width: 768px) { .providers-cta__photo { display: none; } }

/* ============================================
   INSIGHTS (white)
   ============================================ */
.insights { background: var(--white); padding: var(--sp) 24px; }
.insights__inner { max-width: var(--max-w); margin: 0 auto; }
.insights__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.insights__all { font-size: 0.875rem; font-weight: 600; color: #0b2422; display: inline-flex; align-items: center; gap: 4px; }
.insights__all:hover { color: var(--gold); }
.article-card { border: 1px solid var(--border); border-radius: var(--r); padding: 28px; background: var(--white); transition: border-color var(--t); max-width: 640px; }
.article-card:hover { border-color: var(--gold); }
.article-card__date { font-size: 0.75rem; color: #444444; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; font-weight: 500; }
.article-card__title { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.3; letter-spacing: -0.01em; }
.article-card__excerpt { font-size: 0.9rem; color: #1a1a1a; line-height: 1.65; margin-bottom: 16px; }
.article-card__link { font-size: 0.875rem; font-weight: 600; color: #0b2422; display: inline-flex; align-items: center; gap: 4px; text-decoration: underline; text-underline-offset: 2px; }
.article-card__link:hover { color: var(--gold); text-decoration: none; }

/* ============================================
   EXPERT BIO SMALL (off-white)
   ============================================ */
.bio-small { background: var(--off-white); padding: var(--sp) 24px; }
.bio-small__inner { max-width: 680px; margin: 0 auto; }
.bio-small h2 { margin-bottom: 18px; }
.bio-small__name { font-size: 0.75rem; font-weight: 700; color: #0b2422; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; display: block; }
.bio-small p { color: #1a1a1a; font-size: 0.9375rem; line-height: 1.78; margin-bottom: 12px; }
.bio-small p:last-child { margin-bottom: 0; }

/* ============================================
   FAQ (white)
   ============================================ */
.faq { background: var(--white); padding: var(--sp) 24px; }
.faq__inner { max-width: 720px; margin: 0 auto; }
.faq__head { margin-bottom: 32px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; background: none; border: none; cursor: pointer; text-align: left; font-size: 0.9375rem; font-weight: 600; color: var(--dark); transition: color var(--t); font-family: var(--font); }
.faq__question:hover { color: var(--gold); }
.faq__icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--t); }
.faq__item.open .faq__icon { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: rotate(45deg); }
.faq__icon svg { width: 12px; height: 12px; }
.faq__answer { display: none; padding: 0 0 20px; font-size: 0.9375rem; color: #1a1a1a; line-height: 1.78; }
.faq__answer a { color: var(--gold); }
.faq__item.open .faq__answer { display: block; }

/* ============================================
   CTA BAND (dark)
   ============================================ */
.cta-band { background: var(--dark); padding: var(--sp) 24px; text-align: center; }
.cta-band__inner { max-width: 600px; margin: 0 auto; }
.cta-band .label { margin-bottom: 14px; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 28px; font-size: 1.0625rem; }
.cta-band__btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-band__sub { font-size: 0.8125rem; color: rgba(255,255,255,0.6); margin-top: 16px; margin-bottom: 0 !important; }

/* ============================================
   FOOTER (dark)
   ============================================ */
.footer { background: var(--dark); padding: 56px 24px 28px; border-top: 1px solid var(--dark-border); }
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--dark-border); margin-bottom: 22px; }
.footer__brand img { height: 28px; width: auto; margin-bottom: 12px; display: block; }
.footer__brand svg { display: none; }
.footer__brand-text { display: none; }
.footer__desc, .footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.65; max-width: 240px; margin-bottom: 16px; }
.footer__social { display: flex; gap: 8px; margin-bottom: 16px; margin-top: 4px; }
.footer__social a, .footer__social-link { width: 32px; height: 32px; border: 1px solid var(--dark-border); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all var(--t); }
.footer__social a:hover, .footer__social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer__social a svg, .footer__social-link svg { width: 15px; height: 15px; }
.footer__reg { font-size: 0.72rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 240px; }
.footer__col-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.95); font-weight: 700; margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.75); transition: color var(--t); }
.footer__links a:hover { color: #ffffff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { font-size: 0.75rem; color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer__legal a:hover { color: rgba(255,255,255,0.85); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner { position: fixed; bottom: 24px; left: 24px; max-width: 380px; background: var(--dark-mid); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r); padding: 20px 22px; z-index: 9999; box-shadow: 0 8px 40px rgba(0,0,0,0.5); opacity: 0; transform: translateY(12px); pointer-events: none; visibility: hidden; transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s; }
.cookie-banner.visible { opacity: 1; transform: translateY(0); pointer-events: auto; visibility: visible; }
.cookie-banner h4 { font-size: 0.9375rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.8125rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 16px; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 8px; }
.cookie-banner__btns .btn { flex: 1; padding: 9px 12px; font-size: 0.8125rem; }
.cookie-accept { background: var(--gold) !important; color: var(--dark) !important; border-color: var(--gold) !important; font-weight: 600 !important; }
.cookie-reject { background: transparent !important; color: rgba(255,255,255,0.8) !important; border: 1.5px solid rgba(255,255,255,0.3) !important; }
.cookie-reject:hover { border-color: rgba(255,255,255,0.6) !important; color: #fff !important; }

/* ============================================
   PAGE HERO (shared)
   ============================================ */
.page-hero { background: var(--dark); padding: 60px 24px 52px; }
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero .label { margin-bottom: 12px; }
.page-hero h1 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
.page-hero p { color: #ffffff; font-size: 1.0625rem; max-width: 600px; margin-top: 12px; line-height: 1.7; }

/* ============================================
   LEGAL
   ============================================ */
.legal-body { background: var(--white); padding: 52px 24px 96px; }
.legal-body__inner { max-width: 700px; margin: 0 auto; }
.legal-meta { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 32px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.legal-body h2 { font-size: 1.15rem; font-weight: 600; color: var(--dark); margin: 32px 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-body h3 { font-size: 1rem; font-weight: 600; color: var(--dark); margin: 20px 0 7px; }
.legal-body p { font-size: 0.9375rem; color: #1a1a1a; line-height: 1.8; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { margin: 8px 0 14px 18px; display: flex; flex-direction: column; gap: 6px; }
.legal-body li { font-size: 0.9375rem; color: #1a1a1a; line-height: 1.7; }
.legal-body ul li { list-style: disc; }
.legal-body ol li { list-style: decimal; }
.legal-body a { color: var(--gold); text-decoration: underline; }
.legal-body strong { color: var(--dark); font-weight: 600; }

/* ============================================
   PROVIDERS PAGE
   ============================================ */
.filter-bar { background: var(--white); padding: 14px 24px; border-bottom: 1px solid var(--border); position: sticky; top: 64px; z-index: 100; }
.filter-bar__inner { max-width: var(--max-w); margin: 0 auto; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-search { position: relative; flex: 1; min-width: 200px; }
.filter-search__icon { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--text-muted); width: 15px; height: 15px; pointer-events: none; }
.filter-search input { width: 100%; padding: 9px 12px 9px 34px; border: 1px solid var(--border); border-radius: var(--r); font-family: var(--font); font-size: 0.875rem; color: var(--dark); background: var(--white); outline: none; transition: border-color var(--t); }
.filter-search input:focus { border-color: var(--gold); }
.filter-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tag { padding: 6px 12px; border: 1px solid var(--border); border-radius: 20px; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); background: var(--white); cursor: pointer; transition: all var(--t); font-family: var(--font); }
.filter-tag:hover, .filter-tag.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.providers-section { background: var(--white); padding: 36px 24px 72px; }
.providers-section__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.provider-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; transition: border-color var(--t); }
.provider-card:hover { border-color: var(--gold); }
.provider-card--featured { border-top: 2px solid var(--gold); }
.provider-card__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.provider-card__avatar { width: 40px; height: 40px; background: var(--light-bg); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: var(--dark); }
.provider-card__badges { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.badge { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; }
.badge-vetted { background: rgba(200,169,110,0.1); color: #7a6030; border: 1px solid rgba(200,169,110,0.25); }
.badge-featured { background: rgba(200,169,110,0.12); color: #7a6030; border: 1px solid rgba(200,169,110,0.28); }
.provider-card__name { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.provider-card__location { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 9px; }
.provider-card__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.specialism-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 14px; }
.specialism-tag { font-size: 0.675rem; font-weight: 500; padding: 3px 8px; border-radius: 3px; background: var(--light-bg); color: var(--text-muted); border: 1px solid var(--border); }
.provider-card__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.rating { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--text-muted); }
.rating-stars { display: flex; gap: 2px; color: var(--gold); }
.rating-stars svg { width: 11px; height: 11px; fill: currentColor; }
.provider-cta { background: var(--off-white); padding: 52px 24px; text-align: center; border-top: 1px solid var(--border); }

/* ============================================
   VAT REGISTRATION PAGE
   ============================================ */
.vat-reg { background: var(--white); padding: 36px 24px 72px; }
.vat-reg__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.vat-reg__info { background: var(--light-bg); border: 1px solid var(--border); border-radius: var(--r); padding: 12px 16px; max-width: var(--max-w); margin: 0 auto 24px; font-size: 0.875rem; color: var(--text-muted); }
.country-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 18px; display: flex; flex-direction: column; gap: 6px; transition: border-color var(--t); }
.country-card:hover { border-color: var(--gold); }
.country-card__flag { font-size: 1.4rem; line-height: 1; }
.country-card__name { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.country-card__authority { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; flex: 1; }
.country-card__link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.8125rem; font-weight: 600; color: var(--gold); margin-top: 4px; transition: gap var(--t); }
.country-card__link:hover { gap: 8px; }
.country-card__link svg { width: 12px; height: 12px; }

/* ============================================
   INTAKE FORM
   ============================================ */
.intake-form-wrap, .intake-wrap { background: var(--white); padding: 48px 24px 80px; }
.intake-form-wrap__inner, .intake-wrap__inner { max-width: 680px; margin: 0 auto; }
.form-section-title { font-size: 0.9375rem; font-weight: 600; color: var(--dark); margin: 28px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.form-section-title:first-child { margin-top: 0; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.form-label .req { color: #dc2626; margin-left: 2px; }
.form-hint { font-size: 0.8125rem; color: #1a1a1a; margin-top: 6px; line-height: 1.5; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 10px 13px; border: 1px solid #d0cec9; border-radius: var(--r); font-family: var(--font); font-size: 0.9375rem; color: #1a1a1a; background: #ffffff; outline: none; transition: border-color var(--t); appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select-wrap { position: relative; }
.form-select-wrap::after { content: ''; position: absolute; right: 13px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 6px; height: 6px; border-right: 1.5px solid #444444; border-bottom: 1.5px solid #444444; pointer-events: none; }
.form-select { padding-right: 34px; cursor: pointer; }
.radio-group, .check-group { display: flex; gap: 14px; flex-wrap: wrap; }
.radio-item, .check-item { display: flex; align-items: center; gap: 7px; cursor: pointer; font-size: 0.9375rem; color: #1a1a1a; }
.radio-item input, .check-item input { accent-color: var(--gold); cursor: pointer; }
.countries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 12px; }
.country-check { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; color: var(--dark); cursor: pointer; padding: 3px 0; }
.country-check input { accent-color: var(--gold); cursor: pointer; }
.disclaimer-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r); padding: 14px; margin-bottom: 20px; }
.disclaimer-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.disclaimer-check input { accent-color: var(--gold); flex-shrink: 0; margin-top: 3px; cursor: pointer; }
.disclaimer-check p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.form-error { display: none; background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.2); border-radius: var(--r); padding: 12px 14px; font-size: 0.875rem; color: #b91c1c; margin-bottom: 14px; }
.form-success { display: none; text-align: center; padding: 40px 20px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r); margin-top: 28px; }
.form-success.visible { display: block; }
.form-success__icon { width: 48px; height: 48px; color: var(--gold); margin: 0 auto 14px; }
.form-success h3 { font-size: 1.25rem; color: var(--dark); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-why { background: var(--white); padding: var(--sp) 24px; }
.about-why__inner { max-width: 720px; margin: 0 auto; }
.about-why h2 { margin-bottom: 22px; }
.about-why p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 14px; }
.about-why ul { margin: 14px 0; display: flex; flex-direction: column; gap: 10px; }
.about-why ul li { font-size: 0.9375rem; color: var(--text-muted); padding-left: 18px; position: relative; line-height: 1.65; }
.about-why ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.about-who { background: var(--off-white); padding: var(--sp) 24px; }
.about-who__inner { max-width: 720px; margin: 0 auto; }
.about-who__name { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; display: block; }
.about-who h2 { margin-bottom: 22px; }
.about-who p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 14px; }
.about-who p:last-child { margin-bottom: 0; }
.about-wyg { background: var(--white); padding: var(--sp) 24px; }
.about-wyg__inner { max-width: var(--max-w); margin: 0 auto; }

/* ============================================
   VAT CHECKER
   ============================================ */
.checker-body { background: var(--white); padding: var(--sp) 24px; }
.checker-body__inner { max-width: 620px; margin: 0 auto; }
.checker-card { background: #ffffff; border: 1px solid #d0cec9; border-radius: var(--r); padding: 36px; }
.checker-step { margin-bottom: 22px; }
.checker-step__label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #0b2422; margin-bottom: 8px; display: block; }
.checker-result { display: none; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; margin-top: 22px; }
.checker-result.visible { display: block; }
.checker-result__verdict { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.checker-result p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.email-gate { display: none; margin-top: 18px; padding: 18px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r); }
.email-gate.visible { display: block; }
.email-gate p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.email-gate-row { display: flex; gap: 8px; }

/* ============================================
   VIES CHECKER
   ============================================ */
.vies-result { margin-top: 18px; padding: 18px; border-radius: var(--r); border: 1px solid var(--border); display: none; }
.vies-result.visible { display: block; }
.vies-result--valid { border-color: rgba(200,169,110,0.4); background: rgba(200,169,110,0.04); }
.vies-result--invalid { border-color: rgba(220,38,38,0.2); background: rgba(220,38,38,0.03); }
.vies-result--error { border-color: rgba(245,158,11,0.2); background: rgba(245,158,11,0.03); }
.vies-result__status { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.vies-result--valid .vies-result__status { color: #5a7030; }
.vies-result--invalid .vies-result__status { color: #b91c1c; }
.vies-result--error .vies-result__status { color: #b45309; }
.vies-result__name { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.vies-result__address { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.vies-result__message { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }
.vies-spinner { display: none; align-items: center; gap: 8px; margin-top: 14px; font-size: 0.875rem; color: var(--text-muted); }
.vies-spinner.visible { display: flex; }
@keyframes spin { to { transform: rotate(360deg); } }
.vies-spinner svg { animation: spin 1s linear infinite; color: var(--gold); }

/* ============================================
   RESOURCES PAGE
   ============================================ */
.resources-body { background: var(--white); padding: var(--sp) 24px; }
.resources-body__inner { max-width: var(--max-w); margin: 0 auto; }
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .wyg__grid { grid-template-columns: repeat(2,1fr); }
  .pricing__grid { grid-template-columns: 1fr; }
  .behind__inner { grid-template-columns: 1fr; gap: 44px; }
  .articles-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vat-reg__inner { grid-template-columns: repeat(3,1fr); }
  .providers-section__inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  :root { --sp: 56px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero { padding: 52px 24px 44px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 20px; flex-wrap: wrap; }
  .hiw__grid { grid-template-columns: 1fr; gap: 28px; }
  .for-whom__grid { grid-template-columns: 1fr; }
  .agency-tiers { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .trust-strip__inner { flex-direction: column; gap: 10px; text-align: center; }
  .email-gate-row { flex-direction: column; }
  .insights__head { flex-direction: column; align-items: flex-start; }
  .articles-grid { grid-template-columns: 1fr; }
  .wyg__grid { grid-template-columns: 1fr; }
  .providers-section__inner { grid-template-columns: 1fr; }
  .vat-reg__inner { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .checker-card { padding: 24px 18px; }
  .cmp-table { font-size: 0.875rem; }
  .cmp-table th, .cmp-table td { padding: 10px 14px; }
}
@media (max-width: 480px) {
  .agency-tiers { grid-template-columns: 1fr 1fr; }
  .vat-reg__inner { grid-template-columns: 1fr 1fr; }
  .countries-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.about-hero__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.about-hero h1 { color: var(--white); max-width: 640px; margin-bottom: 20px; }
.about-hero p { font-size: 1.125rem; color: rgba(255,255,255,0.7); max-width: 560px; }

.about-why { background: var(--white); padding: var(--sp) 24px; }
.about-why__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-why__text h2 { margin-bottom: 20px; }
.about-why__text p { color: var(--text-muted); margin-bottom: 16px; }
.about-why__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-why__stat { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; }
.about-why__stat-number { font-size: 2rem; font-weight: 800 !important; color: #8B6914; line-height: 1; margin-bottom: 6px; }
.about-why__stat-label { font-size: 0.875rem; color: #444444 !important; line-height: 1.4; }

.about-behind { background: var(--off-white); padding: var(--sp) 24px; }
.about-behind__inner { max-width: var(--max-w); margin: 0 auto; }
.about-behind__inner > .label { margin-bottom: 32px; }
.about-behind__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-behind__bio h2 { margin-bottom: 4px; }
.about-behind__title { font-size: 0.9rem; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.about-behind__bio p { color: var(--text-muted); margin-bottom: 16px; }
.about-behind__links { margin-top: 24px; }
.about-behind__linkedin { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 500; color: var(--text-main); border: 1px solid var(--border); border-radius: var(--r-btn); padding: 8px 16px; transition: var(--t); }
.about-behind__linkedin:hover { border-color: var(--gold); color: var(--gold); }
.about-behind__expertise h3 { margin-bottom: 16px; }
.about-behind__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.about-behind__list li { padding-left: 20px; position: relative; color: var(--text-muted); font-size: 0.9375rem; }
.about-behind__list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.about-behind__company { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 20px; }
.about-behind__company p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

.about-wyg { background: var(--white); padding: var(--sp) 24px; }
.about-wyg__inner { max-width: var(--max-w); margin: 0 auto; }
.about-wyg__inner h2 { margin-bottom: 10px; }
.about-wyg__sub { color: var(--text-muted); margin-bottom: 40px; max-width: 540px; }
.about-wyg__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.about-wyg__card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 22px; }
.about-wyg__icon { margin-bottom: 16px; color: var(--gold); }
.about-wyg__card h3 { margin-bottom: 10px; font-size: 1rem; }
.about-wyg__card p { font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 1024px) {
  .about-why__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-behind__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-wyg__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .about-why__stats { grid-template-columns: 1fr; }
  .about-wyg__grid { grid-template-columns: 1fr; }
}

/* Dark-section overrides — keep text white/gold, not the dark #0b2422 from base */
.page-hero .label, .page-hero .section-label { color: var(--gold); }
.page-hero h1, .page-hero h2, .page-hero h3 { color: #ffffff; }
.hiw .label, .hiw .section-label { color: var(--gold); }
.hiw h2, .hiw h3 { color: #ffffff; }
.cta-band .label, .cta-band .section-label { color: var(--gold); }
.cta-band h2 { color: #ffffff; }
.hero .label, .hero .section-label { color: #ffffff; }
.hero h1, .hero h2 { color: #ffffff; }
.about-hero h1 { color: #ffffff; }
.about-hero .label { color: var(--gold); }
