:root {
  --color-bg: #0b1020;
  --color-surface: #11172b;
  --color-surface-2: #171f38;
  --color-card: #1b2441;
  --color-text: #edf2ff;
  --color-muted: #b5c0df;
  --color-primary: #6ea8fe;
  --color-primary-strong: #3b82f6;
  --color-accent: #f59e0b;
  --color-border: #2d3960;
  --color-success-bg: #12273d;
  --color-success-text: #cfe8ff;
  --shadow-soft: 0 10px 24px rgba(4, 8, 20, 0.35);
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1200px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background:
    radial-gradient(circle at 20% -10%, #1d2a4e 0%, transparent 40%),
    radial-gradient(circle at 90% 0%, #1a2d52 0%, transparent 35%),
    var(--color-bg);
  line-height: 1.6;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 16, 32, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(110, 168, 254, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-text);
  font-weight: 700;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #081223;
  background: linear-gradient(145deg, #8ec5ff, #5f9df7);
  box-shadow: var(--shadow-soft);
}

.brand-text {
  font-size: 0.9rem;
  line-height: 1.3;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 20px;
  background: var(--color-text);
}

.main-nav {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(13, 19, 37, 0.98);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem;
}

.main-nav.open {
  display: flex;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 600;
  padding: 0.55rem 0.45rem;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(110, 168, 254, 0.14);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  padding: 0.8rem 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  color: #061226;
  background: linear-gradient(145deg, #93c5fd, #60a5fa);
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
  color: var(--color-text);
  border-color: #4e628f;
  background: rgba(110, 168, 254, 0.08);
}

.btn-light {
  background: #f8fbff;
  color: #11203f;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}

.btn-nav {
  margin-top: 0.35rem;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-weight: 700;
  color: #a7c8ff;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0 0 1rem;
  line-height: 1.2;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.hero-subtitle {
  margin-top: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-trust {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-trust li {
  border: 1px solid rgba(148, 188, 255, 0.35);
  background: rgba(110, 168, 254, 0.08);
  color: #dbe7ff;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-media img {
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(110, 168, 254, 0.22);
}

.section {
  padding: var(--space-7) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(17, 23, 43, 0.92), rgba(17, 23, 43, 0.82));
  border-top: 1px solid rgba(110, 168, 254, 0.1);
  border-bottom: 1px solid rgba(110, 168, 254, 0.1);
}

.section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards-4,
.cards-3 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.card.soft {
  background: linear-gradient(180deg, #1c2748, #18203a);
}

.card h3 {
  margin-top: 0;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  border-radius: 10px;
  background: rgba(147, 197, 253, 0.14);
  border: 1px solid rgba(147, 197, 253, 0.3);
  margin-bottom: 0.75rem;
}

.split {
  display: grid;
  gap: 1rem;
}

.list-check {
  margin: 0;
  padding-left: 1.15rem;
}

.list-check li + li {
  margin-top: 0.45rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-weight: 700;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}

.link-arrow:hover::after {
  transform: translateX(2px);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.step {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.step span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0e1a31;
  background: linear-gradient(145deg, #a6cdff, #73adff);
  margin-bottom: 0.65rem;
}

.location-box {
  background: linear-gradient(180deg, #1b2544, #161f39);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
}

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #141d36;
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-weight: 700;
  padding: 1rem;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--color-muted);
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.cta-final {
  background: linear-gradient(135deg, #1f3f80, #2f68cc);
}

.cta-final h2 {
  margin-top: 0;
}

.site-footer {
  background: #090f1f;
  border-top: 1px solid rgba(110, 168, 254, 0.2);
  padding-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li + li {
  margin-top: 0.4rem;
}

.footer-bottom {
  margin-top: 1.2rem;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(110, 168, 254, 0.15);
  color: var(--color-muted);
  font-size: 0.95rem;
}

.page-hero {
  padding: 5rem 0 2rem;
}

.page-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

label {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #394b76;
  background: #0f1730;
  color: var(--color-text);
  font: inherit;
  padding: 0.75rem 0.85rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8fa3d1;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(147, 197, 253, 0.55);
  outline-offset: 2px;
}

.checkbox-line {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.field-error {
  margin: 0.35rem 0 0;
  color: #ffd4d4;
  font-size: 0.88rem;
}

.form-message {
  display: none;
  margin-top: 0.9rem;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  border: 1px solid transparent;
}

.form-message.info {
  display: block;
  background: var(--color-success-bg);
  border-color: #29517a;
  color: var(--color-success-text);
}

.legal-wrap {
  max-width: 900px;
}

.legal-wrap h1 {
  margin-top: 0;
}

.legal-wrap h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-wrap p,
.legal-wrap li {
  color: #d7e2ff;
}

.legal-summary {
  margin-top: 0.8rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(147, 197, 253, 0.3);
  background: rgba(147, 197, 253, 0.08);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(147, 197, 253, 0.45);
  background: rgba(18, 27, 52, 0.95);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(8px);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 820px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    flex-direction: row;
    background: transparent;
    border: 0;
    padding: 0;
  }

  .btn-nav {
    margin-top: 0;
    margin-left: 0.35rem;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}