:root {
  --color-bg: #0B0F1D;
  --color-bg-deep: #05070E;
  --color-surface: #121316;
  --color-surface-2: #1B1C20;
  --color-primary: #FFFFFF;
  --color-text: #E7E9F5;
  --color-text-muted: #9CA3C4;
  --color-accent: #7C8CFF;
  --color-accent-dark: #5B6EEF;
  --color-gold: #F0C869;
  --color-border: rgba(255, 255, 255, 0.10);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--color-accent); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }

p { margin: 0 0 1em; }

.accent-text {
  background: linear-gradient(90deg, var(--color-accent), #C77CFF 60%, var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.placeholder {
  background: rgba(240, 200, 105, 0.12);
  border: 1.5px dashed var(--color-gold);
  color: var(--color-gold);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-style: italic;
  font-size: 0.95em;
  display: inline-block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 29, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 50;
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.1;
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-primary);
}

.logo-text span { color: var(--color-accent); }

.site-logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: color 0.15s ease, background 0.15s ease;
}

nav.main-nav a:hover { color: var(--color-primary); background: var(--color-surface); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-primary);
}

@media (max-width: 800px) {
  nav.main-nav {
    display: none;
    width: 100%;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    gap: 2px;
    padding-bottom: 16px;
  }
  nav.main-nav a { display: block; padding: 10px 14px; }
  .site-header .container { flex-wrap: wrap; }
  .nav-toggle { display: block; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn-primary {
  background: #FFFFFF;
  color: var(--color-bg);
}

.btn-primary::after {
  content: "\2192";
}

.btn-primary:hover { background: #D9DCEC; }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-primary);
}

.btn-secondary:hover { border-color: var(--color-accent); }

/* Hero */
.hero {
  padding: 88px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -25%;
  width: 70%;
  height: 160%;
  background: linear-gradient(135deg, var(--color-gold) 0%, #FF8A5B 22%, #FF5B9E 42%, #C77CFF 65%, var(--color-accent) 100%);
  filter: blur(90px);
  opacity: 0.35;
  mix-blend-mode: screen;
  transform: rotate(8deg);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .hero .container { grid-template-columns: 1fr; }
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 46ch;
}

.hero-image-box {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 800px) {
  .hero-image-box { min-height: 300px; }
}

.hero-illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Sections */
section { padding: 64px 0; }

.section-intro { max-width: 62ch; margin-bottom: 40px; }
.section-intro .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* Grid cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  padding: 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.card:hover { background: var(--color-surface-2); transform: translateY(-2px); }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--color-text-muted); margin-bottom: 0; }

/* Trust / stats band */
.stats-band {
  background: var(--color-bg-deep);
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-band .badge-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.stats-band .badge {
  padding: 0;
  background: none;
  border: none;
  color: #fff;
  text-align: center;
}

.stats-band .badge-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  background: linear-gradient(90deg, #fff, #B9C4FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-band .badge-label {
  display: block;
  font-size: 0.85rem;
  color: #9AA5C0;
}

/* Locations */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.location-card {
  padding: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.location-card .location-photo {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  background: var(--color-bg-deep);
}

.location-card .location-body { padding: 8px 10px 10px; }
.location-card .location-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: 6px;
}

/* Team / testimonials */
.person-card { text-align: center; }

.person-photo {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  background: var(--color-bg-deep);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

blockquote.testimonial {
  margin: 0;
  font-style: normal;
  color: var(--color-text-muted);
}

blockquote.testimonial footer {
  margin-top: 12px;
  font-style: normal;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* FAQ */
.faq-item {
  padding: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 20px 4px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-primary);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-left: 12px;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item .faq-answer {
  padding: 0 4px 20px;
  color: var(--color-text-muted);
}

/* CTA band */
.cta-band-wrap { padding: 24px 0 64px; }

.cta-band {
  text-align: center;
  padding: 64px 40px;
  color: #fff;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -10%;
  width: 60%;
  height: 220%;
  background: linear-gradient(135deg, var(--color-accent), #C77CFF, #FF5B9E);
  filter: blur(90px);
  opacity: 0.45;
  mix-blend-mode: screen;
  transform: rotate(-10deg);
}

.cta-band h2, .cta-band p, .cta-band .btn { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #B9C2D6; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* Contact form */
.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-surface);
  color: var(--color-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(124, 140, 255, 0.25);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

/* Footer */
footer.site-footer {
  padding: 40px 0 28px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

footer.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 48px;
  margin-bottom: 24px;
}

footer.site-footer .footer-grid > div:first-child {
  flex: 1 0 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

footer.site-footer .footer-grid nav {
  flex: 0 0 auto;
}

footer.site-footer a { color: var(--color-text-muted); }
footer.site-footer .footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 12px;
}
footer.site-footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer.site-footer .footer-nav-placeholder {
  color: var(--color-text-muted);
  opacity: 0.55;
  font-style: italic;
}

/* Legal pages */
.legal-page main { padding: 56px 0; }
.legal-warning {
  background: rgba(240, 100, 100, 0.12);
  border: 1px solid rgba(240, 100, 100, 0.4);
  color: #FF9E9E;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  font-weight: 600;
}

.legal-page section {
  padding: 24px 28px;
  margin-bottom: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
