/* ===========================================================
   PropSafe — shared stylesheet (static/styles.css)
   One file styles every page: home, how, markets, pricing,
   about, contact, privacy, terms, roadmap.
=========================================================== */

:root {
  --black: #0a0a0a;
  --panel: #111;
  --panel-2: #0d0d0d;
  --white: #f5f0e8;
  --cream: #ede8dc;
  --red: #c94b2a;
  --gold: #c9973a;
  --green: #5a8f5a;
  --text-muted: #6b6460;
  --border: rgba(201,151,58,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--black); }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------------- NAV ---------------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,240,232,0.06);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark { width: 27px; height: 27px; display: block; flex-shrink: 0; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link {
  color: rgba(245,240,232,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 11px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1; text-align: center; white-space: nowrap;
}
.nav-cta:hover { background: #b03d20; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; }

/* ---------------- BUTTONS ---------------- */
.btn-primary {
  background: var(--red); color: var(--white); border: none;
  padding: 17px 38px; font-family: 'DM Sans', sans-serif; font-size: 14px;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
  line-height: 1; text-align: center; white-space: nowrap;
}
.btn-primary:hover { background: #b03d20; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(245,240,232,0.2);
  padding: 17px 38px; font-family: 'DM Sans', sans-serif; font-size: 14px;
  font-weight: 300; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
  line-height: 1; text-align: center; white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------------- SECTIONS / TYPE ---------------- */
.section { padding: 110px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-narrow { max-width: 820px; margin: 0 auto; }
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.eyebrow.center { justify-content: center; }
.eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.section-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 44px; display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 900; line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 28px;
}
h1 em { font-style: italic; color: var(--gold); }
h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 50px);
  font-weight: 700; line-height: 1.15; margin-bottom: 22px;
}
h2 em { font-style: italic; color: var(--gold); }
h3 { font-family: 'Playfair Display', serif; }
p { color: rgba(245,240,232,0.7); }

/* ---------------- PAGE HERO (inner pages) ---------------- */
.page-hero { padding: 170px 48px 70px; position: relative; overflow: hidden; }
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 75% 30%, rgba(201,151,58,0.06), transparent 70%);
  pointer-events: none;
}
.page-hero .inner { max-width: 1100px; margin: 0 auto; position: relative; }
.page-hero p.lead { font-size: 18px; color: rgba(245,240,232,0.7); max-width: 640px; }

/* ---------------- HERO (home) ---------------- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 150px 48px 80px; position: relative; overflow: hidden;
}
.hero-stats-block { position: relative; width: 100%; margin-top: 88px; }
.hero-emblem {
  position: absolute; top: 50%; right: 7%; transform: translateY(-50%);
  width: 320px; max-width: 30vw; pointer-events: none; z-index: 0;
  filter: drop-shadow(0 24px 60px rgba(201,151,58,0.22));
}
.hero-emblem img { width: 100%; height: auto; display: block; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(201,151,58,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(201,75,42,0.04) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,151,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,151,58,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content { position: relative; max-width: 900px; }
.hero-sub { font-size: 18px; color: rgba(245,240,232,0.7); max-width: 560px; margin-bottom: 44px; line-height: 1.8; }
.hero-cta-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-free-link { display: inline-block; margin-top: 22px; font-size: 14px; color: rgba(245,240,232,0.6); border-bottom: 1px solid rgba(201,151,58,0.4); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.hero-free-link:hover { color: var(--gold); border-color: var(--gold); }
.hero-stat-row {
  display: flex; gap: 0; border-top: 1px solid var(--border); padding-top: 30px;
}
.hero-stat { flex: 1; padding-right: 28px; border-right: 1px solid var(--border); margin-right: 28px; }
.hero-stat:last-child { border-right: none; margin-right: 0; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: 12px; color: rgba(245,240,232,0.5); letter-spacing: 0.04em; margin-top: 4px; }
.stat-aud { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: rgba(201,151,58,0.7); display: block; margin-top: 2px; }

/* Per-market stat variants — only the selected country's set is shown. */
.hero-stat-row.country-variant { display: none; }
.hero-stat-row.country-variant.active { display: flex; }
.callout-stack.country-variant { display: none; }
.callout-stack.country-variant.active { display: block; }

.hero-market-toggle {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0 0 22px;
}
.hero-market-toggle .hmt-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}
.hero-market-toggle .market-btn {
  background: transparent; border: 1px solid rgba(245,240,232,0.2);
  color: rgba(245,240,232,0.65); padding: 6px 16px; font-size: 13px;
  letter-spacing: 0.04em; cursor: pointer; transition: border-color .2s, color .2s, background .2s;
}
.hero-market-toggle .market-btn:hover { border-color: rgba(245,240,232,0.5); color: var(--white); }
.hero-market-toggle .market-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ---------------- STORY ---------------- */
.story-section { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-text p { margin-bottom: 18px; font-size: 16px; }
.story-text p strong { color: var(--white); font-weight: 500; }
.callout-box { background: rgba(201,75,42,0.08); border: 1px solid rgba(201,75,42,0.3); padding: 36px; }
.callout-number { font-family: 'Playfair Display', serif; font-size: 60px; font-weight: 900; color: var(--red); line-height: 1; display: block; }
.callout-aud { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: rgba(201,151,58,0.85); display: block; margin-top: 6px; line-height: 1; }
.callout-label { font-size: 14px; color: rgba(245,240,232,0.6); margin-top: 12px; line-height: 1.6; }
.callout-source { font-size: 11px; color: rgba(245,240,232,0.3); margin-top: 14px; letter-spacing: 0.04em; }

/* ---------------- STEPS ---------------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.step { background: var(--panel); padding: 44px 36px; border: 1px solid var(--border); transition: border-color 0.3s; }
.step:hover { border-color: var(--gold); }
.step-num { font-family: 'Playfair Display', serif; font-size: 66px; font-weight: 900; color: rgba(201,151,58,0.1); line-height: 1; display: block; margin-bottom: 20px; }
.step h3 { font-size: 21px; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.step p { font-size: 14px; color: rgba(245,240,232,0.6); line-height: 1.8; }
.step-badge { display: inline-block; background: var(--gold); color: var(--black); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 14px; }

/* ---------------- CHECKS ---------------- */
.checks-section { background: var(--panel-2); }
.checks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.check-card { background: var(--panel); border: 1px solid var(--border); padding: 52px 44px; transition: border-color 0.3s; }
.check-card:hover { border-color: rgba(201,151,58,0.5); }
.check-icon { width: 46px; height: 46px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; font-size: 19px; }
.check-card h3 { font-size: 26px; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.check-sub { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.check-card p { font-size: 15px; color: rgba(245,240,232,0.6); line-height: 1.9; margin-bottom: 28px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.check-list li { font-size: 14px; color: rgba(245,240,232,0.7); display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.check-list li::before { content: '→'; color: var(--gold); font-size: 13px; flex-shrink: 0; margin-top: 2px; }

/* ---------------- SAMPLE REPORT ---------------- */
.demo-section { background: var(--panel-2); border-bottom: 1px solid var(--border); }
.demo-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.demo-copy p { color: rgba(245,240,232,0.6); font-size: 16px; margin-bottom: 16px; }
.report-card { background: #15130f; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.report-head { padding: 18px 26px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.rh-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--white); }
.risk-pill { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; background: rgba(201,75,42,0.15); color: var(--red); border: 1px solid rgba(201,75,42,0.4); }
.report-body { padding: 10px 26px 24px; }
.flag-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(201,151,58,0.1); opacity: 0; transform: translateY(10px); }
.flag-row:last-child { border-bottom: none; }
.flag-row.show { animation: flagIn 0.5s ease forwards; }
@keyframes flagIn { to { opacity: 1; transform: translateY(0); } }
.flag-dot { width: 9px; height: 9px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.dot-red { background: var(--red); box-shadow: 0 0 10px rgba(201,75,42,0.6); }
.dot-amber { background: var(--gold); box-shadow: 0 0 10px rgba(201,151,58,0.5); }
.dot-green { background: var(--green); box-shadow: 0 0 10px rgba(90,143,90,0.5); }
.ft-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.ft-desc { font-size: 12.5px; color: rgba(245,240,232,0.55); line-height: 1.6; }
.report-foot { padding: 14px 26px; background: #0f0d0a; border-top: 1px solid var(--border); font-size: 11px; color: rgba(245,240,232,0.4); line-height: 1.6; }

/* ---------------- TRUST BAR ---------------- */
.trust-bar { background: var(--panel-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 48px; }
.trust-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 200px; }
.trust-icon { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.trust-text { font-size: 13px; color: rgba(245,240,232,0.6); line-height: 1.4; }
.trust-text strong { display: block; color: var(--white); font-weight: 500; font-size: 14px; margin-bottom: 2px; }

/* ---------------- MARKETS ---------------- */
.countries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.country-card { background: var(--panel); border: 1px solid var(--border); padding: 38px; transition: all 0.3s; }
.country-card:hover { border-color: var(--gold); }
.country-flag { font-size: 34px; margin-bottom: 18px; display: block; }
.country-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.country-status { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; display: inline-block; margin-bottom: 16px; }
.status-live { background: rgba(90,143,90,0.15); color: var(--green); border: 1px solid rgba(90,143,90,0.4); }
.status-soon { background: rgba(201,151,58,0.1); color: var(--gold); border: 1px solid rgba(201,151,58,0.25); }
.country-card p { font-size: 14px; color: rgba(245,240,232,0.6); line-height: 1.8; }
.country-eta { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.35); margin-top: 16px; display: block; }

/* ---------------- PRICING ---------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; align-items: stretch; }
.price-card { background: var(--panel); border: 1px solid var(--border); padding: 40px 32px; display: flex; flex-direction: column; }
.price-card.featured { background: #161410; border-color: var(--gold); position: relative; }
.featured-tag { position: absolute; top: -1px; right: -1px; background: var(--gold); color: var(--black); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; }
.price-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.price-card.featured .price-label { color: var(--gold); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 50px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.price-currency { font-size: 19px; font-weight: 400; vertical-align: top; margin-top: 8px; display: inline-block; color: rgba(245,240,232,0.6); }
.price-period { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; margin-top: 8px; min-height: 20px; }
.price-includes { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; flex-grow: 1; }
.price-includes li { font-size: 13.5px; color: rgba(245,240,232,0.7); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.price-includes li::before { content: '✓'; color: var(--gold); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.price-compare { font-size: 12px; color: var(--green); margin-bottom: 18px; }

/* ---------------- FORMS ---------------- */
.form-group { margin-bottom: 18px; width: 100%; text-align: left; }
.form-group label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); margin-bottom: 8px; font-weight: 500; }
.input-text, .input-area {
  width: 100%; background: #1c1a16; border: 1px solid var(--border); padding: 14px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--white);
  outline: none; transition: border-color 0.2s; border-radius: 2px;
}
.input-area { min-height: 120px; resize: vertical; }
.input-text::placeholder, .input-area::placeholder { color: rgba(245,240,232,0.3); }
.input-text:focus, .input-area:focus { border-color: var(--gold); }
.input-file-container {
  position: relative; width: 100%; background: #211e19; border: 1px dashed rgba(201,151,58,0.4);
  padding: 20px 16px; text-align: center; cursor: pointer; transition: all 0.2s; border-radius: 2px;
  font-size: 13px; color: rgba(245,240,232,0.6); display: block;
}
.input-file-container:hover { background: #26231c; }
.input-file-container.file-selected { border: 1px solid var(--green); background: rgba(90,143,90,0.1); color: var(--green); font-weight: 500; }
.field-error { color: var(--red); font-size: 12px; margin-top: 6px; display: none; }
.field-error.show { display: block; }
.btn-price { width: 100%; padding: 15px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; border: none; border-radius: 2px; line-height: 1.2; text-align: center; }
.btn-price-secondary { background: transparent; border: 1px solid rgba(245,240,232,0.25); color: var(--white); }
.btn-price-secondary:hover { border-color: var(--white); }
.btn-price-primary { background: var(--red); color: var(--white); }
.btn-price-primary:hover { background: #b03d20; }
.price-microcopy { font-size: 11px; color: rgba(245,240,232,0.4); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ---------------- LEAD CAPTURE ---------------- */
.leadcap-section { background: var(--panel-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.leadcap-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.leadcap-form { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.leadcap-form .input-text { flex: 1; min-width: 240px; max-width: 360px; }
.leadcap-note { font-size: 12px; color: rgba(245,240,232,0.4); margin-top: 16px; }
.leadcap-note a { color: var(--gold); }
.leadcap-success { display: none; margin-top: 26px; padding: 20px; border: 1px solid var(--green); background: rgba(90,143,90,0.08); color: var(--cream); font-size: 15px; border-radius: 2px; }
.leadcap-success.show { display: block; }

/* ---------------- FAQ ---------------- */
.faq-section { background: var(--panel); border-top: 1px solid var(--border); }
.faq-list { margin-top: 56px; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); padding: 30px 0; }
.faq-q { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; margin-bottom: 14px; color: var(--white); }
.faq-a { font-size: 15px; color: rgba(245,240,232,0.6); line-height: 1.8; max-width: 780px; }

/* ---------------- CTA FINAL ---------------- */
.cta-final { padding: 140px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-final-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,151,58,0.05) 0%, transparent 70%); }
.cta-final .inner { position: relative; }
.cta-final h2 { max-width: 700px; margin: 0 auto 22px; }
.cta-final p { font-size: 16px; color: rgba(245,240,232,0.6); max-width: 480px; margin: 0 auto 44px; }
.cta-disclaimer { font-size: 12px; color: rgba(245,240,232,0.3); max-width: 560px; margin: 30px auto 0; line-height: 1.7; }

/* ---------------- DOC PAGES (privacy/terms/about/contact) ---------------- */
.doc { max-width: 800px; margin: 0 auto; padding: 160px 24px 90px; }
.doc h1 { font-size: clamp(34px, 5vw, 46px); color: var(--gold); margin-bottom: 8px; }
.doc .date { font-size: 13px; color: var(--gold); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 40px; }
.doc h2 { font-size: 23px; margin-top: 38px; margin-bottom: 14px; border-bottom: 1px solid var(--border); padding-bottom: 8px; color: var(--white); }
.doc h3 { font-size: 18px; margin-top: 24px; margin-bottom: 10px; color: var(--white); }
.doc p { margin-bottom: 18px; color: rgba(245,240,232,0.72); font-size: 15px; }
.doc ul { margin-bottom: 18px; padding-left: 22px; color: rgba(245,240,232,0.72); font-size: 15px; }
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--white); font-weight: 500; }
.doc .placeholder { color: var(--gold); font-style: italic; }
.note-box { background: rgba(201,151,58,0.07); border: 1px solid var(--border); border-left: 3px solid var(--gold); padding: 18px 22px; margin: 24px 0; font-size: 14px; color: rgba(245,240,232,0.7); }

/* ---------------- ROADMAP ---------------- */
.roadmap-wrap { max-width: 1000px; margin: 0 auto; padding: 160px 24px 90px; }
.roadmap-wrap h1 { font-size: clamp(36px, 5vw, 52px); color: var(--gold); margin-bottom: 12px; line-height: 1.1; }
.roadmap-sub { font-size: 18px; color: rgba(245,240,232,0.6); margin-bottom: 56px; max-width: 640px; }
.phase-tag { display:inline-block; font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); border:1px solid var(--border); padding:4px 12px; margin-bottom:36px; }
.timeline { position: relative; border-left: 1px solid var(--border); margin-left: 150px; padding-left: 44px; }
.timeline-item { position: relative; margin-bottom: 56px; }
.timeline-item::before { content: ''; position: absolute; left: -49px; top: 7px; width: 9px; height: 9px; background: var(--gold); border-radius: 50%; }
.timeline-time { position: absolute; left: -194px; top: 3px; width: 130px; text-align: right; font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--gold); }
.timeline-content h3 { font-size: 23px; margin-bottom: 12px; color: var(--white); }
.timeline-content > p { color: rgba(245,240,232,0.65); font-size: 15px; margin-bottom: 14px; }
.target-list { margin-top: 10px; padding-left: 20px; color: rgba(245,240,232,0.7); font-size: 14px; }
.target-list li { margin-bottom: 7px; }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin-top: 20px; background: var(--panel); padding: 20px; border: 1px solid var(--border); }
.metric-item { display: flex; flex-direction: column; }
.metric-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.metric-value { font-size: 16px; font-weight: 700; color: var(--white); margin-top: 4px; font-family: 'DM Sans', sans-serif; }
.roadmap-note { font-size: 12px; color: rgba(245,240,232,0.35); margin-top: 40px; line-height: 1.7; max-width: 700px; }

/* ---------------- FOOTER ---------------- */
footer { background: #050505; border-top: 1px solid var(--border); padding: 60px 48px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 48px; }
.footer-brand { flex: 1.4; min-width: 280px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
.footer-disclaimer { font-size: 12px; color: rgba(245,240,232,0.3); line-height: 1.6; max-width: 420px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; min-width: 150px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-link { color: rgba(245,240,232,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-link:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(245,240,232,0.06); font-size: 12px; color: rgba(245,240,232,0.3); }

/* ---------------- COOKIE BANNER ---------------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: #15130f; border-top: 1px solid var(--border); padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-banner.hidden { display: none; }
.cookie-text { font-size: 13px; color: rgba(245,240,232,0.6); line-height: 1.5; max-width: 720px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn { padding: 9px 20px; font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; border-radius: 2px; border: 1px solid var(--border); background: transparent; color: var(--white); font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.cookie-btn.accept { background: var(--gold); color: var(--black); border-color: var(--gold); }
.cookie-btn:hover { opacity: 0.85; }

/* ---------------- ALERT BANNER ---------------- */
.alert-banner { padding: 14px 24px; border: 1px solid; margin: 0 0 20px; font-size: 14px; border-radius: 2px; }
.alert-success { background: rgba(90,143,90,0.1); border-color: var(--green); color: var(--green); }
.alert-error { background: rgba(201,75,42,0.1); border-color: var(--red); color: var(--red); }
.alert-info { background: rgba(201,151,58,0.07); border-color: var(--gold); color: var(--gold); }

/* ---------------- CONTACT SUCCESS ---------------- */
.contact-success { display: none; margin-top: 26px; padding: 22px 26px; border: 1px solid var(--green); background: rgba(90,143,90,0.08); color: var(--cream); font-size: 15px; border-radius: 2px; }
.contact-success.show { display: block; }

/* ---------------- ANIMATIONS ---------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-stats-block { animation: fadeUp 0.8s ease forwards; animation-delay: 0.7s; opacity: 0; }
@keyframes fadeInEmblem { from { opacity: 0; } to { opacity: 1; } }
.hero-emblem { opacity: 0; animation: fadeInEmblem 1.2s ease 0.45s forwards; }
@media (max-width: 1100px) { .hero-emblem { display: none; } }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 18px; position: absolute; top: 64px; right: 20px;
    background: #15130f; border: 1px solid var(--border); padding: 24px 28px; align-items: flex-start; min-width: 200px;
  }
  .nav-toggle { display: block; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 16px 22px; }
  .section { padding: 64px 22px; }
  .hero { padding: 120px 22px 60px; min-height: auto; }
  .hero-stats-block { margin-top: 56px; }
  .hero-stat-row { flex-wrap: wrap; gap: 26px; padding-top: 26px; }
  .hero-stat { border-right: none; margin-right: 0; min-width: 42%; flex: none; padding-right: 0; }
  .story-grid, .checks-grid, .countries-grid, .steps-grid, .demo-wrap, .guide-grid { grid-template-columns: 1fr; gap: 22px; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .cta-final { padding: 90px 22px; }
  .page-hero { padding: 130px 22px 50px; }
  footer { flex-direction: column; padding: 44px 22px 30px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .timeline { margin-left: 0; padding-left: 22px; }
  .timeline-time { position: relative; left: 0; text-align: left; width: auto; margin-bottom: 8px; display: block; }
  .timeline-item::before { left: -27px; }
}
