:root {
  --bg: #0b1220;
  --surface: #111a2e;
  --surface-2: #17233d;
  --text: #e8eefc;
  --muted: #aab7d6;
  --primary: #49a6ff;
  --primary-2: #2b84d6;
  --accent: #7ae0c4;
  --white: #ffffff;
  --dark: #0a0f1a;
  --border: rgba(255, 255, 255, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  --maxw: 1160px;
  --space: 1rem;
  --font: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: linear-gradient(180deg, #090f1b 0%, #0e1729 100%);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; display: block; border-radius: var(--radius); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(100% - 2rem, var(--maxw)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; color: #000; padding: .5rem .75rem; z-index: 9999; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(10, 15, 26, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .75rem; color: var(--white); font-weight: 700; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: #08101f; font-weight: 800;
}
.menu { display: flex; gap: 1rem; align-items: center; }
.menu a { color: var(--text); padding: .5rem .7rem; border-radius: 8px; }
.menu a:hover, .menu a.active { background: rgba(255,255,255,.08); text-decoration: none; }
.menu-toggle { display: none; background: transparent; border: 0; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.1rem; border-radius: 10px; border: 1px solid transparent;
  font-weight: 600; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: var(--white); }
.btn-outline { border-color: var(--border); color: var(--text); }
.hero { padding: 4.5rem 0 3rem; }
.hero-grid { display: grid; gap: 2rem; align-items: center; }
.eyebrow { color: var(--accent); font-weight: 600; margin-bottom: .6rem; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.lead { color: var(--muted); max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.4rem 0; }
.hero-points { list-style: none; display: grid; gap: .4rem; color: var(--muted); }
.hero-points li::before { content: "✓ "; color: var(--accent); }
.hero-media img { min-height: 300px; object-fit: cover; box-shadow: var(--shadow); }
section { padding: 3.5rem 0; }
.section-head { margin-bottom: 1.4rem; }
.section-head h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.section-head p { color: var(--muted); }
.cards-grid { display: grid; gap: 1rem; }
.cards-grid.three { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cards-grid.two { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.step-line { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step-item span {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; margin-bottom: .6rem;
}
.faq-list { display: grid; gap: .7rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--surface); }
.faq-question {
  width: 100%; text-align: left; background: transparent; color: var(--text); border: 0;
  padding: 1rem; font-size: 1rem; font-weight: 600; cursor: pointer;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 1rem 1rem; color: var(--muted); }
.cta-box { text-align: center; background: linear-gradient(135deg, #163259, #0f4f70); border-radius: var(--radius); padding: 2rem; }
.site-footer { border-top: 1px solid var(--border); margin-top: 2rem; background: #0a101d; }
.footer-grid { display: grid; gap: 1.2rem; padding: 2rem 0; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.site-footer h3 { margin-bottom: .6rem; }
.site-footer p, .site-footer li { color: var(--muted); margin-bottom: .4rem; }
.site-footer ul { list-style: none; }
.footer-bottom { border-top: 1px solid var(--border); text-align: center; padding: 1rem; color: var(--muted); }
.back-to-top {
  position: fixed; right: 1rem; bottom: 1rem; width: 42px; height: 42px;
  border: 0; border-radius: 50%; cursor: pointer; background: var(--primary); color: #fff;
  opacity: 0; pointer-events: none; transition: .25s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.form-wrap { max-width: 760px; }
form { display: grid; gap: .9rem; }
label { font-weight: 600; }
input, textarea {
  width: 100%; padding: .8rem .9rem; border-radius: 10px; border: 1px solid var(--border);
  background: #0d1627; color: var(--text);
}
input:focus, textarea:focus, button:focus, a:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.error { color: #ff9ea8; font-size: .9rem; }
.success { color: #9cffc7; font-size: .95rem; }
.legal-layout { display: grid; gap: 1.5rem; }
.legal-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; }
.legal-card h2 { margin-bottom: .7rem; }
.legal-card h3 { margin: 1rem 0 .5rem; }
.legal-card ul { padding-left: 1.2rem; }
.section-reveal { opacity: 0; transform: translateY(15px); transition: .6s ease; }
.section-reveal.visible { opacity: 1; transform: none; }
@media (max-width: 920px) {
  .desktop-cta { display: none; }
  .menu-toggle { display: block; }
  .menu {
    position: absolute; right: 1rem; top: 76px; min-width: 230px;
    display: grid; background: #0f1728; border: 1px solid var(--border);
    border-radius: 12px; padding: .5rem; transform: scale(.98); opacity: 0; pointer-events: none;
  }
  .menu.open { opacity: 1; pointer-events: auto; transform: scale(1); }
}
@media (min-width: 921px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}