:root {
  --bg-dark: #0b1220;
  --bg-dark-2: #111b33;
  --bg-light: #f6f8fc;
  --white: #ffffff;
  --text: #1f2937;
  --text-soft: #5b6473;
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --accent: #06b6d4;
  --success: #15803d;
  --danger: #dc2626;
  --border: #dbe3ef;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  --shadow-strong: 0 18px 38px rgba(17, 24, 39, 0.14);
  --max-width: 1160px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: var(--radius);
}

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

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  border-radius: 0 0 8px 8px;
  z-index: 1200;
}

.skip-link:focus {
  left: 1rem;
}

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

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-light);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
}

h3 {
  line-height: 1.25;
}

p {
  color: var(--text-soft);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-weight: 700;
}

.logo:hover {
  text-decoration: none;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.logo-text {
  font-size: 0.87rem;
  line-height: 1.2;
  max-width: 260px;
}

.menu-toggle {
  width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  display: grid;
  place-items: center;
  gap: 3px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
}

.menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 76px;
  right: 1rem;
  min-width: 240px;
  padding: 1rem;
  border-radius: 12px;
  background: #0f1a30;
  box-shadow: var(--shadow-strong);
  gap: 0.75rem;
}

.menu.open {
  display: flex;
}

.menu a {
  color: #d8e3ff;
  font-weight: 500;
}

.hero {
  background: radial-gradient(circle at 22% 20%, #1d3260, #0b1220 55%);
  color: var(--white);
  padding: 7rem 0 5rem;
}

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

.hero-subtitle,
.hero-text {
  color: #d5dff7;
}

.hero-subtitle {
  margin-bottom: 0.7rem;
  font-size: 1.06rem;
}

.hero-text {
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.hero-actions.center {
  justify-content: center;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 0.82rem 1.2rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.dark-outline {
  border-color: #b9c8f2;
  color: #17336e;
}

.btn-sm {
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  text-align: center;
}

.trust-inline {
  list-style: none;
  display: grid;
  gap: 0.3rem;
  color: #d3ddf8;
  font-size: 0.95rem;
}

.section-head {
  margin-bottom: 2rem;
}

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

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

.card p {
  margin-top: 0.45rem;
}

.icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.two-cols {
  display: grid;
  gap: 1.2rem;
}

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

.panel ul {
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
}

.link-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
}

.steps {
  padding-left: 1rem;
  display: grid;
  gap: 0.85rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: var(--white);
  text-align: left;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

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

.faq-answer p {
  padding: 0 1rem 1rem;
}

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

.cta-final {
  background: linear-gradient(135deg, #111d39, #1a2d59);
  color: var(--white);
  text-align: center;
}

.cta-final p {
  max-width: 720px;
  margin: 0.8rem auto 1.2rem;
  color: #d5dff8;
}

.footer {
  background: #0a1120;
  color: #cfddff;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.footer a {
  color: #bed0ff;
}

.footer-bottom {
  margin-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 1rem;
  font-size: 0.92rem;
}

.form-section {
  padding: 5rem 0;
}

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

form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 0.9rem;
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c8d3e5;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
}

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

.field.invalid .error {
  display: block;
}

.error {
  display: none;
  color: var(--danger);
  font-size: 0.86rem;
  margin-top: 0.25rem;
}

.notice {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid #bfdbfe;
  background: #e8f1ff;
  color: #173b7a;
}

.legal-wrap {
  padding: 7rem 0 4rem;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.legal-content h1 {
  color: var(--text);
}

.legal-content h2 {
  font-size: 1.2rem;
  margin: 1.2rem 0 0.45rem;
}

.legal-content ul {
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
}

.meta-box {
  border: 1px solid #d6e4ff;
  background: #f2f7ff;
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 1rem;
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: var(--white);
  display: none;
  box-shadow: var(--shadow-strong);
  cursor: pointer;
}

.back-top.show {
  display: inline-grid;
  place-items: center;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

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

  .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    position: static;
    min-width: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

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

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

  .two-cols {
    grid-template-columns: 1fr 1fr;
  }

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

  .form-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

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