:root {
  --navy: #0B1E36;
  --navy-light: #122640;
  --gold: #C5973A;
  --gold-light: #D4A843;
  --cream: #FAF9F6;
  --cream-dark: #F0EDE6;
  --text: #1A2332;
  --text-muted: #5A6680;
  --white: #FFFFFF;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(11,30,54,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: 4rem 2rem 3rem;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero-meta-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-meta-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── HERO VISUAL ── */
.hero-right { display: flex; justify-content: flex-end; }
.hero-visual {
  position: relative;
  width: 340px;
  height: 320px;
}
.hero-visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}
.hero-visual-orb-1 {
  width: 200px; height: 200px;
  background: var(--gold);
  top: 0; right: 0;
}
.hero-visual-orb-2 {
  width: 150px; height: 150px;
  background: var(--navy);
  bottom: 20px; left: 20px;
}
.hero-visual-orb-3 {
  width: 80px; height: 80px;
  background: var(--gold-light);
  top: 50%; left: 50%;
}
.hero-visual-grid {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  z-index: 2;
}
.grid-cell {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(11,30,54,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.grid-cell small { font-size: 0.6rem; color: var(--gold); font-weight: 500; }
.grid-cell-active {
  background: var(--navy);
  color: var(--white);
}
.grid-cell-active small { color: var(--gold-light); }
.hero-visual-badge {
  position: absolute;
  bottom: -12px;
  left: 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

/* ── REG BAR ── */
.regulatory-bar {
  background: var(--navy);
  padding: 1rem 2rem;
}
.regulatory-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.regulatory-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.regulatory-tags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.reg-tag {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}
.reg-tag-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(197,151,58,0.4);
  display: inline-block;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--cream-dark);
  padding: 5rem 2rem;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-mark {
  font-size: 2rem;
  color: var(--gold);
  font-family: var(--font-head);
  margin-bottom: 2rem;
}
.manifesto-text {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.manifesto-attribution {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── SECTION TITLE ── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 2.5rem;
  font-weight: 700;
}

/* ── SERVICES ── */
.services {
  padding: 5rem 2rem;
  background: var(--cream);
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-2px); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--cream-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── DIFFERENCE ── */
.difference {
  padding: 5rem 2rem;
  background: var(--cream-dark);
}
.difference-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.difference-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 1rem;
}
.diff-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.diff-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  width: 28px;
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.diff-title {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.diff-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── REGIONS ── */
.regions {
  padding: 5rem 2rem;
  background: var(--cream);
}
.regions-inner { max-width: 1200px; margin: 0 auto; }
.regions-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  margin-top: -1.5rem;
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.region-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(11,30,54,0.08);
  transition: transform 0.2s ease;
}
.region-card:hover { transform: translateY(-2px); }
.region-card-primary {
  background: var(--navy);
  color: var(--white);
  border: none;
}
.region-card-primary .region-desc,
.region-card-primary .region-detail { color: rgba(255,255,255,0.7); }
.region-flag {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.region-name {
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.region-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 300;
}
.region-detail {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 500;
}

/* ── CLOSING ── */
.closing {
  background: var(--navy);
  padding: 5rem 2rem;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2rem;
  font-weight: 700;
}
.closing-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 1rem;
}
.closing-stats {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.closing-stat { text-align: center; }
.closing-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.closing-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.4;
}

/* ── FOOTER ── */
.footer {
  background: #071428;
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.6;
}
.footer-contact-item { margin-bottom: 0.4rem; }
.footer-contact-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.footer-wa-link {
  color: #C5973A;
  text-decoration: none;
}
.footer-wa-link:hover { text-decoration: underline; }
.footer-bottom {
  max-width: 1200px;
  margin: 1rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy, .footer-built {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .difference-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .regions-grid { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 1.5rem; }
  .hero-meta { gap: 1.5rem; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .regulatory-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .hero { padding: 2.5rem 1.25rem 2rem; }
  .services, .difference, .regions, .closing { padding: 3.5rem 1.25rem; }
  .manifesto { padding: 3.5rem 1.25rem; }
  .nav { padding: 1rem 1.25rem; }
}