:root {
  --brown-dark: #2d1f12;
  --brown: #4a3420;
  --brown-mid: #6b4a2b;
  --gold: #c9a961;
  --gold-light: #e8d5a0;
  --gold-pale: #f5eed8;
  --cream: #faf6ec;
  --ivory: #fbf8f0;
  --ink: #1a1208;
  --body: #3d2f1f;
  --muted: #7a6a55;
  --border: #e4dcc2;
  --red-warn: #8b2a2a;
  --green-ok: #4a6b3a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px; line-height: 1.65; color: var(--body); background: var(--ivory);
}

.topbar { background: var(--brown-dark); color: var(--gold-light); padding: 6px 0; font-size: 12px; text-align: right; }
.topbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 30px; display: flex; justify-content: flex-end; gap: 18px; align-items: center; }
.lang-switch { color: var(--gold-light); text-decoration: none; font-size: 12px; }
.lang-switch:hover { color: var(--gold); }

.site-header { background: var(--cream); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(45, 31, 18, 0.04); }
.header-inner { max-width: 1240px; margin: 0 auto; padding: 14px 30px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--brown-dark); }
.brand-lion { width: 48px; height: 48px; border-radius: 50%; background: var(--brown); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: Georgia, serif; font-weight: bold; font-size: 24px; border: 2px solid var(--gold); }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: Georgia, serif; font-size: 22px; font-weight: 700; color: var(--brown-dark); letter-spacing: 1.5px; line-height: 1; }
.brand-tag { font-size: 10px; color: var(--brown-mid); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { color: var(--brown-dark); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.5px; padding: 6px 0; border-bottom: 2px solid transparent; transition: all 0.2s; }
.nav a:hover, .nav a.active { color: var(--brown); border-color: var(--gold); }

.hero { background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%); color: white; padding: 80px 30px 70px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 40%, rgba(201, 169, 97, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 60%, rgba(201, 169, 97, 0.08) 0%, transparent 50%); }
.hero-inner { max-width: 1000px; margin: 0 auto; position: relative; }
.hero-logo { width: 90px; height: 90px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--brown-dark); font-family: Georgia, serif; font-weight: bold; font-size: 46px; margin: 0 auto 30px; border: 3px solid var(--gold-light); }
.hero-kicker { color: var(--gold); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-family: Georgia, serif; font-size: 52px; line-height: 1.1; font-weight: 700; margin-bottom: 22px; letter-spacing: -0.5px; }
.hero-lead { font-size: 20px; line-height: 1.5; color: var(--gold-light); max-width: 780px; margin: 0 auto 14px; font-weight: 300; }
.hero-trust { font-size: 15px; color: white; margin-top: 30px; font-style: italic; opacity: 0.9; }
.hero-trust strong { color: var(--gold); font-style: normal; font-weight: 600; }

.stats-strip { background: var(--brown-dark); border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); padding: 30px 0; }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; color: white; border-right: 1px solid rgba(201, 169, 97, 0.3); padding: 0 10px; }
.stat:last-child { border-right: none; }
.stat-num { font-family: Georgia, serif; font-size: 38px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }

section { padding: 70px 30px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { font-family: Georgia, serif; font-size: 36px; color: var(--brown-dark); margin-bottom: 20px; font-weight: 700; line-height: 1.2; }
.section-title::before { content: ""; display: inline-block; width: 40px; height: 3px; background: var(--gold); vertical-align: middle; margin-right: 18px; margin-bottom: 8px; }
.section-lead { font-size: 18px; color: var(--body); line-height: 1.7; margin-bottom: 28px; max-width: 880px; }

.what-is { background: var(--cream); }
.what-is-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 30px; }
.what-is-content p { font-size: 16px; line-height: 1.75; color: var(--body); margin-bottom: 18px; }
.what-is-content strong { color: var(--brown-dark); }

.how-section { background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.step-card { background: var(--ivory); border: 1px solid var(--border); padding: 32px 26px; position: relative; transition: all 0.25s; border-radius: 2px; }
.step-card:hover { box-shadow: 0 8px 30px rgba(45, 31, 18, 0.08); border-color: var(--gold); }
.step-num { position: absolute; top: -18px; left: 26px; width: 36px; height: 36px; background: var(--brown); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: Georgia, serif; font-weight: 700; font-size: 17px; border: 2px solid var(--gold); }
.step-icon { font-size: 36px; margin-bottom: 14px; color: var(--gold); margin-top: 10px; }
.step-card h4 { font-family: Georgia, serif; font-size: 19px; color: var(--brown-dark); margin-bottom: 12px; font-weight: 700; line-height: 1.3; }
.step-card p { font-size: 14.5px; color: var(--body); line-height: 1.65; }

.routes-section { background: var(--cream); }
.routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.route-card { background: white; border: 1px solid var(--border); border-top: 4px solid var(--gold); padding: 26px 24px; }
.route-card.warning { border-top-color: var(--red-warn); }
.route-tag { display: inline-block; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-ok); background: #eef2e9; padding: 4px 10px; border-radius: 2px; margin-bottom: 12px; font-weight: 600; }
.route-card.warning .route-tag { color: var(--red-warn); background: #f8e8e8; }
.route-card h4 { font-family: Georgia, serif; font-size: 18px; color: var(--brown-dark); margin-bottom: 10px; font-weight: 700; }
.route-card p { font-size: 14px; color: var(--body); line-height: 1.6; }
.route-card .benchmark { display: block; margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--border); font-size: 12px; color: var(--muted); letter-spacing: 0.5px; }

.regulatory { background: white; }
.reg-table-wrap { margin-top: 30px; overflow-x: auto; }
.reg-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.reg-table th { background: var(--brown-dark); color: var(--gold); padding: 14px 16px; text-align: left; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; font-size: 11px; }
.reg-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--body); vertical-align: top; }
.reg-table tr:nth-child(even) td { background: var(--cream); }
.reg-table td:first-child { font-weight: 600; color: var(--brown-dark); font-family: Georgia, serif; }

.procurement { background: var(--brown-dark); color: white; }
.procurement .section-title { color: white; }
.procurement .section-lead { color: var(--gold-light); }
.procurement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.proc-step { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(201, 169, 97, 0.2); padding: 22px 18px; position: relative; }
.proc-step-num { font-family: Georgia, serif; color: var(--gold); font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 10px; }
.proc-step h5 { font-family: Georgia, serif; color: white; font-size: 15px; margin-bottom: 8px; font-weight: 700; }
.proc-step p { font-size: 13px; color: var(--gold-light); line-height: 1.55; }

.red-flags { background: var(--cream); }
.red-flags-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.flag-item { background: white; border-left: 4px solid var(--red-warn); padding: 18px 22px; font-size: 14.5px; color: var(--body); line-height: 1.6; }
.flag-item strong { display: block; color: var(--red-warn); margin-bottom: 4px; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 700; }

.due-diligence { background: white; }
.dd-questions { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dd-q { background: var(--ivory); border: 1px solid var(--border); padding: 16px 20px; font-size: 14.5px; line-height: 1.55; color: var(--body); display: flex; gap: 14px; }
.dd-q-num { flex: 0 0 auto; color: var(--gold); font-family: Georgia, serif; font-weight: 700; font-size: 18px; line-height: 1.3; }

.regional { background: var(--cream); }
.regional-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.country-card { background: white; border: 1px solid var(--border); padding: 22px 22px; }
.country-flag { font-size: 28px; margin-bottom: 8px; }
.country-card h5 { font-family: Georgia, serif; font-size: 18px; color: var(--brown-dark); margin-bottom: 8px; font-weight: 700; }
.country-regulator { font-size: 12px; color: var(--gold); letter-spacing: 0.8px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.country-card p { font-size: 13.5px; color: var(--body); line-height: 1.55; }

/* LEAD-CAPTURE SECTION */
.enquire { background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%); color: white; padding: 70px 30px; }
.enquire .container { max-width: 820px; }
.enquire .section-title { color: white; text-align: center; }
.enquire .section-title::before { display: none; }
.enquire-lead { font-size: 17px; color: var(--gold-light); text-align: center; margin: 0 auto 34px; line-height: 1.65; max-width: 720px; }
.enquire-form { background: rgba(250, 246, 236, 0.05); border: 1px solid var(--gold); padding: 36px 40px; border-radius: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; }
.form-field label { color: var(--gold); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255, 255, 255, 0.95); border: 1px solid transparent; padding: 11px 14px; color: var(--brown-dark); font-size: 14px; font-family: inherit; border-radius: 2px; outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-options { margin: 22px 0; }
.form-options-label { color: var(--gold); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; display: block; }
.option { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(201, 169, 97, 0.2); margin-bottom: 8px; cursor: pointer; transition: all 0.15s; border-radius: 2px; }
.option:hover { background: rgba(255, 255, 255, 0.07); border-color: var(--gold); }
.option input[type="radio"] { margin-top: 4px; accent-color: var(--gold); }
.option-text { flex: 1; }
.option-title { color: white; font-size: 14.5px; font-weight: 600; font-family: Georgia, serif; }
.option-desc { color: var(--gold-light); font-size: 12.5px; margin-top: 3px; opacity: 0.8; }
.option-price { color: var(--gold); font-weight: 600; font-size: 13px; margin-left: 8px; }
.submit-row { display: flex; gap: 14px; align-items: center; margin-top: 20px; flex-wrap: wrap; }
.btn-submit { background: var(--gold); color: var(--brown-dark); padding: 14px 36px; border: 2px solid var(--gold); font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; font-family: inherit; border-radius: 2px; }
.btn-submit:hover { background: transparent; color: var(--gold); }
.form-note { font-size: 12px; color: var(--gold-light); opacity: 0.8; margin-top: 18px; line-height: 1.55; font-style: italic; text-align: center; }
.form-note a { color: var(--gold); text-decoration: none; }
.form-disclaimer { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(201, 169, 97, 0.2); font-size: 11.5px; color: var(--gold-light); opacity: 0.75; line-height: 1.6; text-align: center; }

/* SCAM-OFFER QUIZ */
.quiz { background: var(--ivory); padding: 70px 30px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quiz .container { max-width: 820px; }
.quiz-intro { text-align: center; margin-bottom: 40px; }
.quiz-kicker { color: var(--red-warn); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.quiz h2 { font-family: Georgia, serif; font-size: 32px; color: var(--brown-dark); font-weight: 700; line-height: 1.15; margin-bottom: 14px; }
.quiz-lead { font-size: 17px; color: var(--body); max-width: 620px; margin: 0 auto 10px; line-height: 1.55; }
.quiz-meta { font-size: 13px; color: var(--muted); font-style: italic; }
.quiz-card { background: white; border: 1px solid var(--border); padding: 30px 36px; border-radius: 2px; box-shadow: 0 4px 16px rgba(45, 31, 18, 0.06); }
.quiz-progress { display: flex; gap: 6px; margin-bottom: 24px; }
.quiz-progress-dot { flex: 1; height: 4px; background: var(--border); border-radius: 2px; transition: background 0.2s; }
.quiz-progress-dot.active { background: var(--gold); }
.quiz-progress-dot.done { background: var(--brown); }
.quiz-question-num { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.quiz-question { font-family: Georgia, serif; font-size: 21px; color: var(--brown-dark); font-weight: 700; line-height: 1.35; margin-bottom: 22px; }
.quiz-answers { display: flex; flex-direction: column; gap: 10px; }
.quiz-answer { background: var(--cream); border: 1.5px solid var(--border); padding: 14px 18px; font-size: 14.5px; color: var(--body); cursor: pointer; text-align: left; transition: all 0.15s; border-radius: 2px; font-family: inherit; line-height: 1.5; }
.quiz-answer:hover { border-color: var(--gold); background: var(--gold-pale); }
.quiz-answer.selected { border-color: var(--gold); background: var(--gold-pale); color: var(--brown-dark); font-weight: 600; }
.quiz-answer-weight { display: inline-block; margin-left: 6px; font-size: 12px; color: var(--muted); font-weight: 500; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); }
.quiz-btn { background: var(--gold); color: var(--brown-dark); padding: 11px 28px; border: 2px solid var(--gold); font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; font-family: inherit; border-radius: 2px; transition: all 0.2s; }
.quiz-btn:hover:not(:disabled) { background: transparent; color: var(--gold); }
.quiz-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.quiz-btn.secondary { background: transparent; color: var(--brown); border-color: var(--border); }
.quiz-btn.secondary:hover { border-color: var(--brown); }

/* Quiz result states */
.quiz-result { text-align: center; padding: 10px 0; }
.quiz-result-verdict { font-family: Georgia, serif; font-size: 28px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.quiz-result.clean .quiz-result-verdict { color: var(--green-ok); }
.quiz-result.caution .quiz-result-verdict { color: #b8860b; }
.quiz-result.high-risk .quiz-result-verdict { color: var(--red-warn); }
.quiz-result.fraud .quiz-result-verdict { color: var(--red-warn); }
.quiz-result-score { font-size: 15px; color: var(--muted); margin-bottom: 24px; font-weight: 500; }
.quiz-result-body { font-size: 15.5px; color: var(--body); line-height: 1.7; text-align: left; background: var(--cream); padding: 22px 26px; border-left: 4px solid var(--gold); border-radius: 2px; margin-bottom: 26px; }
.quiz-result.clean .quiz-result-body { border-left-color: var(--green-ok); }
.quiz-result.caution .quiz-result-body { border-left-color: #b8860b; }
.quiz-result.high-risk .quiz-result-body,
.quiz-result.fraud .quiz-result-body { border-left-color: var(--red-warn); }
.quiz-result-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }

@media (max-width: 700px) {
  .quiz-card { padding: 22px 20px; }
  .quiz h2 { font-size: 24px; }
  .quiz-question { font-size: 17px; }
  .quiz-result-verdict { font-size: 22px; }
  .quiz-nav { flex-direction: column; gap: 12px; }
  .quiz-nav .quiz-btn { width: 100%; }
}

.faq { background: white; }
.faq-list { margin-top: 30px; max-width: 920px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-q { font-family: Georgia, serif; font-size: 17px; color: var(--brown-dark); margin-bottom: 10px; font-weight: 700; }
.faq-a { font-size: 15px; color: var(--body); line-height: 1.7; padding-right: 30px; }

.site-footer { background: var(--brown-dark); color: var(--gold-light); padding: 50px 30px 20px; border-top: 3px solid var(--gold); }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 35px; border-bottom: 1px solid rgba(201, 169, 97, 0.2); }
.footer-brand .brand-name { color: white; font-size: 20px; }
.footer-brand .brand-tag { color: var(--gold); }
.footer-brand p { font-size: 13px; line-height: 1.7; color: var(--gold-light); margin-top: 14px; opacity: 0.85; }
.footer-col h5 { color: var(--gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.footer-col a { display: block; color: var(--gold-light); text-decoration: none; font-size: 13px; margin-bottom: 8px; opacity: 0.85; }
.footer-col a:hover { color: var(--gold); opacity: 1; }
.footer-bottom { padding-top: 22px; font-size: 11px; color: var(--gold-light); opacity: 0.6; text-align: center; line-height: 1.7; }
.footer-legal { max-width: 900px; margin: 0 auto 14px; }

@media (max-width: 900px) {
  .header-inner { flex-direction: column; gap: 14px; padding: 14px 20px; }
  .nav { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .hero h1 { font-size: 34px; }
  .hero-lead { font-size: 17px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat { border-right: none; }
  .what-is-content, .steps-grid, .routes-grid, .regional-grid, .red-flags-list, .dd-questions, .procurement-grid, .form-row, .vbp-cta-box { grid-template-columns: 1fr !important; }
  .vbp-cta-box { padding: 28px 24px !important; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .section-title { font-size: 26px; }
  .enquire-form { padding: 24px 22px; }
}
