@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

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

:root {
  --bg-primary:    #07111f;
  --bg-secondary:  #0d1b2e;
  --bg-card:       #111e30;
  --bg-card-hover: #162540;
  --border:        #1c2f47;
  --border-light:  #243a58;
  --gold:          #c9a227;
  --gold-light:    #e2bc46;
  --gold-dim:      #8a6d18;
  --text-primary:  #f0f4f8;
  --text-secondary:#94a3b8;
  --text-muted:    #5a7090;
  --white:         #ffffff;
  --accent-blue:   #1a4a7a;
  --success:       #2a7a4b;
  --nav-height:    72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ───────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-secondary); }
a  { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
strong { color: var(--text-primary); font-weight: 600; }

/* ── LAYOUT ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-divider {
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0 32px;
}

/* ── NAVIGATION ───────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(7,17,31,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--white) !important;
  letter-spacing: .03em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: .875rem; font-weight: 500;
  padding: 8px 13px; border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: rgba(201,162,39,.08);
}
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 230px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: all .25s;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.dropdown-menu a {
  display: block; padding: 10px 14px;
  border-radius: 6px; color: var(--text-secondary);
  font-size: .85rem;
}
.dropdown-menu a:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: 7px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--bg-secondary); border-bottom: 1px solid var(--border);
  z-index: 999; padding: 20px 24px; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-secondary); padding: 12px 16px;
  border-radius: 8px; font-size: .9rem;
}
.mobile-menu a:hover { background: var(--bg-card); color: var(--text-primary); }

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-height);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,17,31,.95) 0%, rgba(13,27,46,.9) 100%);
  z-index: 0;
}
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -1; opacity: .35;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.hero-content h1 { margin-bottom: 22px; }
.hero-content p {
  font-size: 1.1rem; color: var(--text-secondary); max-width: 600px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; bottom: 48px; right: 0; z-index: 1;
  display: flex; gap: 40px;
}
.hero-stat { text-align: right; }
.hero-stat .value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
  display: block;
}
.hero-stat .label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: all .25s; border: none; text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--gold); color: var(--bg-primary);
}
.btn-primary:hover { background: var(--gold-light); color: var(--bg-primary); transform: translateY(-1px); box-shadow: 0 8px 25px rgba(201,162,39,.3); }
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,39,.05); }
.btn-ghost { background: transparent; color: var(--gold); padding: 10px 0; }
.btn-ghost:hover { color: var(--gold-light); }
.btn-sm { padding: 9px 20px; font-size: .82rem; }

/* ── CARDS ────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all .3s;
}
.card:hover { border-color: var(--border-light); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.3); }
.card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
  background: rgba(201,162,39,.06);
}
.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── SECTION HEADER ───────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-divider { margin-left: auto; margin-right: auto; }
.section-tag {
  font-size: .75rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
  display: block;
}

/* ── DATA TABLE ───────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; padding: 14px 18px;
  background: rgba(201,162,39,.07);
  border-bottom: 1px solid var(--border);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
}
.data-table td {
  padding: 16px 18px; border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--text-secondary);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(201,162,39,.03); color: var(--text-primary); }

/* ── STAT BLOCK ───────────────────────────── */
.stat-block { text-align: center; padding: 36px 24px; }
.stat-block .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--gold);
  display: block; line-height: 1;
}
.stat-block .desc { font-size: .82rem; color: var(--text-muted); margin-top: 8px; text-transform: uppercase; letter-spacing: .08em; }

/* ── TESTIMONIAL / QUOTE ──────────────────── */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  background: rgba(201,162,39,.04);
  border-radius: 0 10px 10px 0;
  margin: 32px 0;
}
.quote-block p { font-size: 1.05rem; color: var(--text-primary); font-style: italic; }
.quote-block cite { font-size: .8rem; color: var(--text-muted); margin-top: 10px; display: block; }

/* ── TEAM CARD ────────────────────────────── */
.team-card { text-align: center; }
.team-card img {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold-dim);
  margin: 0 auto 20px;
}
.team-card h4 { margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.team-card p { font-size: .87rem; margin-top: 12px; }

/* ── ARTICLE CARD ─────────────────────────── */
.article-card { overflow: hidden; }
.article-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }
.article-card .category { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.article-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.article-card .meta { font-size: .78rem; color: var(--text-muted); margin-top: 14px; }

/* ── BREADCRUMB ───────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--text-muted);
  padding: calc(var(--nav-height) + 28px) 0 0;
  margin-bottom: 40px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border-light); }

/* ── PAGE HERO (inner pages) ──────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 70px) 0 70px;
  background: linear-gradient(180deg, rgba(13,27,46,.6) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; max-width: 640px; }

/* ── FORM ─────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; letter-spacing: .04em; }
.form-control {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text-primary);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s;
  outline: none;
}
.form-control:focus { border-color: var(--gold-dim); box-shadow: 0 0 0 3px rgba(201,162,39,.08); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a7090' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-success {
  display: none; padding: 18px 22px;
  background: rgba(42,122,75,.15);
  border: 1px solid rgba(42,122,75,.4);
  border-radius: 10px; color: #5ecb8c;
  font-size: .9rem; margin-top: 20px;
  align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.form-error-msg { color: #e86f6f; font-size: .8rem; margin-top: 5px; display: none; }

/* ── PROCESS / STEPS ──────────────────────── */
.step-list { list-style: none; }
.step-item {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold);
}
.step-body h4 { margin-bottom: 8px; }

/* ── ACCORDION / FAQ ──────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px; margin-bottom: 12px;
  overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--gold-dim); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; cursor: pointer;
  background: none; border: none; width: 100%;
  text-align: left; color: var(--text-primary);
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600;
  transition: background .2s;
}
.faq-q:hover { background: rgba(201,162,39,.04); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid var(--border-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--gold); transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 24px 22px;
  font-size: .9rem; color: var(--text-secondary); line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── TIMELINE ─────────────────────────────── */
.timeline { position: relative; padding-left: 44px; }
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 4px; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--gold), transparent);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute; left: -37px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--bg-primary);
}
.timeline-item h4 { margin-bottom: 8px; }

/* ── TAGS ─────────────────────────────────── */
.tag {
  display: inline-block; padding: 4px 12px;
  border: 1px solid var(--border); border-radius: 20px;
  font-size: .75rem; color: var(--text-muted); margin: 3px;
  transition: all .2s;
}
.tag:hover { border-color: var(--gold-dim); color: var(--gold); }

/* ── SIDE NAV (inner pages) ───────────────── */
.page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.side-nav {
  position: sticky; top: calc(var(--nav-height) + 24px);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; list-style: none;
}
.side-nav li + li { border-top: 1px solid var(--border); }
.side-nav a {
  display: block; padding: 12px 14px;
  font-size: .85rem; color: var(--text-secondary);
  border-radius: 7px; transition: all .2s;
}
.side-nav a:hover, .side-nav a.active { color: var(--gold); background: rgba(201,162,39,.07); }

/* ── FOOTER ───────────────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white);
  margin-bottom: 16px; display: block;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: .87rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .85rem; color: var(--text-secondary); }
.footer-contact-item strong { color: var(--text-primary); white-space: nowrap; }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a { color: var(--text-secondary); font-size: .87rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); margin-left: 20px; }
.footer-bottom a:hover { color: var(--gold); }

/* ── POLICY PAGES ─────────────────────────── */
.policy-content { max-width: 820px; }
.policy-content h2 { font-size: 1.5rem; margin: 48px 0 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.policy-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.policy-content h3 { font-size: 1.1rem; margin: 28px 0 12px; color: var(--text-primary); }
.policy-content p { margin-bottom: 16px; }
.policy-content ul, .policy-content ol { margin: 16px 0 16px 24px; color: var(--text-secondary); }
.policy-content li { margin-bottom: 10px; line-height: 1.7; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.policy-content table th { background: rgba(201,162,39,.07); padding: 12px 16px; text-align: left; font-size: .82rem; color: var(--gold); border: 1px solid var(--border); }
.policy-content table td { padding: 12px 16px; border: 1px solid var(--border); font-size: .87rem; color: var(--text-secondary); }
.policy-meta { font-size: .82rem; color: var(--text-muted); margin-bottom: 36px; }

/* ── HIGHLIGHT BOX ────────────────────────── */
.highlight-box {
  background: rgba(201,162,39,.05);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 12px; padding: 28px 32px; margin: 32px 0;
}
.highlight-box h4 { color: var(--gold); margin-bottom: 10px; }

/* ── TWO-COL ──────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col img { width: 100%; border-radius: 12px; border: 1px solid var(--border); }

/* ── PROGRESS BAR ─────────────────────────── */
.progress-item { margin-bottom: 20px; }
.progress-item .label { display: flex; justify-content: space-between; font-size: .82rem; color: var(--text-secondary); margin-bottom: 8px; }
.progress-track { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); border-radius: 3px; }

/* ── COOKIE BANNER ────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  box-shadow: 0 -8px 32px rgba(0,0,0,.4);
  transform: translateY(0); transition: transform .4s;
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-banner p { font-size: .85rem; color: var(--text-secondary); max-width: 700px; }
.cookie-banner p a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-layout { grid-template-columns: 1fr; }
  .side-nav { position: static; display: flex; flex-wrap: wrap; gap: 4px; padding: 16px; }
  .side-nav li { border-top: none !important; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 60px 0; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
