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

:root {
  --dark: #07070f;
  --dark-2: #0d0d1a;
  --dark-3: #13132a;
  --card: #0f0f1e;
  --gold: #c9a84c;
  --gold-light: #e2bf74;
  --muted: #8888a8;
  --text: #f0f0f5;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::selection { background: rgba(201,168,76,0.18); color: var(--gold-light); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: #1e1e35; border-radius: 3px; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bobY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(9px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-x-left  { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-x-right { opacity: 0; transform: translateX(24px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-x-left.visible, .reveal-x-right.visible { opacity: 1; transform: translateX(0); }

/* stagger delays */
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.17s; }
.d3 { transition-delay: 0.26s; }
.d4 { transition-delay: 0.35s; }
.d5 { transition-delay: 0.44s; }
.d6 { transition-delay: 0.53s; }

/* Hero entrance */
.hero-badge  { animation: fadeUp 0.5s ease 0.1s both; }
.hero-h1     { animation: fadeUp 0.65s ease 0.2s both; }
.hero-sub    { animation: fadeUp 0.6s ease 0.36s both; }
.hero-ctas   { animation: fadeUp 0.5s ease 0.5s both; }
.hero-trust  { animation: fadeIn 0.7s ease 0.85s both; }
.hero-scroll { animation: fadeIn 0.5s ease 1.3s both; }

/* ── Layout helpers ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }

section { position: relative; overflow: hidden; }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(7,7,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .nav-inner { padding: 0 32px; } }

.nav-logo {
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; color: #fff;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  background: none; border: none; cursor: pointer;
  font-size: 0.875rem; color: #8888b0;
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }

.nav-cta {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px 20px; border-radius: 9999px;
  background: var(--gold); color: var(--dark);
  font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
  transition: background 0.2s, box-shadow 0.2s;
}
@media (min-width: 768px) { .nav-cta { display: inline-flex; align-items: center; } }
.nav-cta:hover { background: var(--gold-light); box-shadow: 0 0 28px rgba(201,168,76,0.35); }

.nav-toggle {
  display: flex; background: none; border: none; cursor: pointer;
  color: #fff; padding: 4px;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

/* Mobile menu */
#mobile-menu {
  display: none;
  background: rgba(13,13,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
#mobile-menu.open { display: block; }
.mobile-menu-inner {
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav-link {
  background: none; border: none; cursor: pointer; text-align: left;
  padding: 12px; border-radius: 8px;
  font-size: 0.875rem; color: #8888b0;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav-link:hover { color: #fff; background: rgba(255,255,255,0.04); }
.mobile-cta {
  margin-top: 12px; padding: 12px 20px; border-radius: 9999px;
  background: var(--gold); color: var(--dark);
  font-size: 0.875rem; font-weight: 600; text-align: center;
  border: none; cursor: pointer;
  transition: background 0.2s;
}
.mobile-cta:hover { background: var(--gold-light); }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 64px;
  background: var(--dark);
}
.hero-bg-glow {
  position: absolute; top: 38%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 600px; border-radius: 9999px;
  background: rgba(201,168,76,0.035); filter: blur(130px);
  pointer-events: none;
}
.hero-bg-glow2 {
  position: absolute; top: 25%; right: -5%;
  width: 350px; height: 350px; border-radius: 9999px;
  background: rgba(30,58,138,0.07); filter: blur(100px);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.018) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to top, var(--dark), transparent);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 10; max-width: 900px; margin: 0 auto; padding: 0 20px; text-align: center; }
@media (min-width: 640px) { .hero-content { padding: 0 32px; } }

.hero-badge-el {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 9999px;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.06);
  color: var(--gold);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-h1-el {
  font-size: clamp(2rem, 6vw, 4.375rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.08;
  margin-bottom: 24px;
}
.gold { color: var(--gold); position: relative; display: inline-block; }
.gold-line {
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.5), transparent);
}
.dim { color: #888898; }

.hero-sub-el {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #6868a0; max-width: 640px; margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas-el { display: flex; flex-direction: column; gap: 16px; align-items: center; }
@media (min-width: 640px) { .hero-ctas-el { flex-direction: row; justify-content: center; } }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: 9999px;
  background: var(--gold); color: var(--dark);
  font-size: 1rem; font-weight: 600; border: none; cursor: pointer; width: 100%;
  box-shadow: 0 0 32px rgba(201,168,76,0.28);
  transition: background 0.2s, box-shadow 0.2s;
}
@media (min-width: 640px) { .btn-primary { width: auto; } }
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 0 44px rgba(201,168,76,0.42); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1); color: #8888b0;
  font-size: 1rem; background: transparent; cursor: pointer; width: 100%;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
@media (min-width: 640px) { .btn-secondary { width: auto; } }
.btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); }

.hero-trust-el {
  margin-top: 64px;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 28px;
  font-size: 0.75rem; color: #50506a;
}
.trust-dot { display: flex; align-items: center; gap: 8px; }
.trust-dot::before {
  content: ''; width: 4px; height: 4px; border-radius: 9999px;
  background: rgba(201,168,76,0.45); flex-shrink: 0;
}

.hero-scroll-el {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.35), transparent);
  animation: bobY 1.9s ease-in-out infinite;
}

/* ── Section shared ── */
.section-label {
  color: var(--gold); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px;
}
.section-h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.02em; margin-bottom: 20px;
}
.section-sub { color: #6060a0; font-size: 1rem; max-width: 640px; }
.section-head { text-align: center; margin-bottom: 64px; }

/* ── How It Works ── */
#how-it-works { padding: 96px 0; background: linear-gradient(to bottom, var(--dark), #0a0a18, var(--dark)); }

.steps-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px)  { .steps-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(5,1fr); } }

.step-card {
  position: relative;
  background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover { border-color: rgba(201,168,76,0.2); box-shadow: 0 4px 30px rgba(201,168,76,0.06); }

.step-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.14);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  transition: background 0.2s;
}
.step-card:hover .icon-box { background: rgba(201,168,76,0.13); }
.step-num { font-size: 1.375rem; font-weight: 700; color: rgba(255,255,255,0.05); }
.step-title { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.step-desc  { font-size: 0.75rem; color: #60609a; line-height: 1.7; }

/* ── What We Look For ── */
#what-we-look-for { padding: 96px 0; background: var(--dark); }
.wlf-glow {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 256px; height: 256px; border-radius: 9999px;
  background: rgba(201,168,76,0.025); filter: blur(90px); pointer-events: none;
}
.cards-grid-3 {
  display: grid; gap: 20px; grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .cards-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .cards-grid-3 { grid-template-columns: repeat(3,1fr); } }

.feature-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: rgba(201,168,76,0.22); box-shadow: 0 4px 40px rgba(201,168,76,0.07); transform: translateY(-2px); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.14); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 20px; transition: background 0.2s; }
.feature-card:hover .feature-icon { background: rgba(201,168,76,0.13); }
.feature-title { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.feature-desc  { font-size: 0.875rem; color: #60609a; line-height: 1.7; }

/* ── Why Contact ── */
#why-contact { padding: 96px 0; background: linear-gradient(to bottom, var(--dark), #0b0b1a, var(--dark)); }
.why-grid { display: grid; gap: 48px 80px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-left .section-sub { margin-bottom: 32px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 9999px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.22); color: var(--gold);
  font-size: 0.875rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(201,168,76,0.14); }

.reasons-list { display: flex; flex-direction: column; gap: 14px; }
.reason-item {
  display: flex; gap: 16px; padding: 16px; border-radius: 12px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.2s;
}
.reason-item:hover { border-color: rgba(255,255,255,0.08); }
.reason-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px; background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.12); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-top: 2px; }
.reason-title { font-size: 0.875rem; font-weight: 500; color: #fff; margin-bottom: 4px; }
.reason-desc  { font-size: 0.75rem; color: #58589a; line-height: 1.7; }

/* ── Visualisations ── */
#visualisations { padding: 96px 0; background: var(--dark); }
.viz-glow { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 384px; height: 384px; border-radius: 9999px; background: rgba(201,168,76,0.025); filter: blur(110px); pointer-events: none; }
.viz-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .viz-grid { grid-template-columns: repeat(3,1fr); } }

.concept-card { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.concept-card:hover { border-color: rgba(255,255,255,0.1); box-shadow: 0 8px 50px rgba(0,0,0,0.3); }

.concept-visual { display: flex; height: 208px; position: relative; overflow: hidden; }
.concept-before, .concept-after { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px; text-align: center; }
.concept-before { border-right: 1px solid rgba(255,255,255,0.04); }
.concept-panel-label { font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 12px; }
.concept-shape { width: 96px; aspect-ratio: 4/3; position: relative; margin: 0 auto; }
.shape-outline { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; background: rgba(255,255,255,0.015); }
.shape-house   { position: absolute; top: 8px; left: 8px; right: 8px; bottom: 28px; background: rgba(255,255,255,0.03); border-radius: 2px; }
.shape-unused  { position: absolute; bottom: 0; left: 8px; right: 8px; height: 24px; border: 1px dashed rgba(255,255,255,0.07); border-radius: 2px; display: flex; align-items: center; justify-content: center; }
.shape-unused-txt { font-size: 0.4375rem; color: rgba(255,255,255,0.2); }
.concept-before-text { font-size: 0.5625rem; color: rgba(255,255,255,0.2); margin-top: 12px; line-height: 1.4; }
.concept-arrow-badge { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 32px; height: 32px; border-radius: 9999px; background: var(--card); border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; z-index: 10; }
.shape-after-house { position: absolute; top: 8px; left: 8px; right: 42%; bottom: 28px; background: rgba(255,255,255,0.03); border-radius: 2px; }

.concept-footer { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.04); display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.concept-title { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.concept-sub   { font-size: 0.75rem; color: #48489a; }
.concept-eye   { display: flex; align-items: center; gap: 4px; font-size: 0.625rem; color: #48489a; white-space: nowrap; }

.viz-disclaimer { text-align: center; font-size: 0.75rem; color: #3a3a60; margin-top: 32px; }

/* ── Trust ── */
#trust { padding: 96px 0; background: linear-gradient(to bottom, var(--dark), #0c0c1e, var(--dark)); }
.trust-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 700px; height: 300px; border-radius: 9999px; background: rgba(201,168,76,0.02); filter: blur(110px); pointer-events: none; }
.trust-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .trust-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(3,1fr); } }

.trust-item { display: flex; gap: 16px; padding: 20px; border-radius: 16px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); transition: border-color 0.2s; }
.trust-item:hover { border-color: rgba(255,255,255,0.08); }
.trust-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.13); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.trust-title { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.trust-desc  { font-size: 0.75rem; color: #56568a; line-height: 1.7; }

/* ── Contact Form ── */
#contact { padding: 96px 0; background: var(--dark); }
.contact-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 750px; height: 400px; border-radius: 9999px; background: rgba(201,168,76,0.04); filter: blur(130px); pointer-events: none; }
.contact-wrap { max-width: 900px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .contact-wrap { padding: 0 32px; } }

.contact-card { background: var(--card); border: 1px solid rgba(255,255,255,0.07); border-radius: 24px; overflow: hidden; box-shadow: 0 0 80px rgba(0,0,0,0.4); }
.contact-form-inner { padding: 28px; }
@media (min-width: 640px) { .contact-form-inner { padding: 40px; } }

.form-grid { display: grid; gap: 20px; grid-template-columns: 1fr; margin-bottom: 20px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.form-group label { display: block; font-size: 0.75rem; font-weight: 500; color: #7878a0; margin-bottom: 8px; letter-spacing: 0.03em; }
.gold-star { color: var(--gold); }

.form-input {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  color: #fff; font-size: 0.875rem; font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-input::placeholder { color: #35355a; }
.form-input:focus { border-color: rgba(201,168,76,0.4); background: rgba(255,255,255,0.05); }
.form-input.uppercase { text-transform: uppercase; }

textarea.form-input { resize: none; }

/* Custom checkbox */
.checkbox-label { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.checkbox-box {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-label:hover .checkbox-box { border-color: rgba(255,255,255,0.3); }
.checkbox-input { display: none; }
.checkbox-input:checked ~ .checkbox-box-wrapper .checkbox-box,
.checkbox-box.checked {
  background: var(--gold); border-color: var(--gold);
}
.checkbox-check { display: none; }
.checkbox-box.checked .checkbox-check { display: block; }
.checkbox-text { font-size: 0.875rem; color: #7878a0; transition: color 0.2s; }
.checkbox-label:hover .checkbox-text { color: rgba(255,255,255,0.7); }

.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px; border-radius: 12px;
  background: var(--gold); color: var(--dark);
  font-size: 1rem; font-weight: 600; border: none; cursor: pointer;
  box-shadow: 0 0 32px rgba(201,168,76,0.22);
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-submit:hover { background: var(--gold-light); box-shadow: 0 0 44px rgba(201,168,76,0.34); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit .spinner { animation: spin 0.7s linear infinite; }

.form-fine { text-align: center; font-size: 0.75rem; color: #404060; margin-top: 16px; line-height: 1.6; }

/* Success state */
.contact-success { padding: 48px; text-align: center; display: none; }
.success-icon { width: 64px; height: 64px; border-radius: 9999px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--gold); }
.success-h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.success-p  { font-size: 1rem; color: #6060a0; max-width: 440px; margin: 0 auto; line-height: 1.7; }

/* ── FAQ ── */
#faq { padding: 96px 0; background: linear-gradient(to bottom, var(--dark), #0a0a18, var(--dark)); }
.faq-wrap { max-width: 768px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .faq-wrap { padding: 0 32px; } }
.faq-section-head { text-align: center; margin-bottom: 48px; }

.faq-list { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 0 24px; }
@media (min-width: 640px) { .faq-list { padding: 0 32px; } }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; text-align: left;
  background: none; border: none; cursor: pointer;
}
.faq-q-text { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8); transition: color 0.2s; }
@media (min-width: 640px) { .faq-q-text { font-size: 1rem; } }
.faq-q:hover .faq-q-text { color: #fff; }

.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.08); color: #6060a0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.faq-q:hover .faq-icon { border-color: rgba(201,168,76,0.25); color: var(--gold); }
.faq-item.open .faq-icon { border-color: rgba(201,168,76,0.4); color: var(--gold); background: rgba(201,168,76,0.06); }

.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height 0.28s ease, padding 0.28s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.faq-a-text { font-size: 0.875rem; color: #5e5e98; line-height: 1.75; }

.faq-bottom { margin-top: 32px; text-align: center; }
.faq-still { font-size: 0.875rem; color: #50509a; margin-bottom: 12px; }
.faq-link { background: none; border: none; cursor: pointer; font-size: 0.875rem; color: var(--gold); text-decoration: underline; text-underline-offset: 4px; transition: color 0.2s; }
.faq-link:hover { color: var(--gold-light); }

/* ── Footer ── */
footer { background: #050509; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 56px 20px 32px; }
@media (min-width: 640px) { .footer-inner { padding: 56px 32px 32px; } }

.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; margin-bottom: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }

.footer-brand { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 0.875rem; color: #505078; line-height: 1.7; max-width: 280px; }

.footer-col-title { font-size: 0.7rem; font-weight: 600; color: #70709a; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: #52527a; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-contact-list a { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: #52527a; text-decoration: none; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }

.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 0.75rem; color: #3e3e60; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #7070a0; }

.footer-bar { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .footer-bar { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-copy { font-size: 0.75rem; color: #32324e; }
.footer-disclaimer { font-size: 0.75rem; color: #28283e; }
@media (min-width: 640px) { .footer-disclaimer { text-align: right; } }

/* ── Utilities ── */
svg { display: block; }
