:root {
  --color-bg: #0b1220;
  --color-bg-2: #111a2e;
  --color-surface: #ffffff;
  --color-surface-soft: #f7f9fc;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-primary: #f97316;
  --color-primary-hover: #ea580c;
  --color-secondary: #1d4ed8;
  --color-border: #e2e8f0;
  --color-focus: rgba(29, 78, 216, 0.35);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shadow-sm: 0 6px 18px rgba(2, 6, 23, 0.08);
  --shadow-md: 0 16px 36px rgba(2, 6, 23, 0.12);
  --max-width: 1140px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 18px;
  --space-lg: 28px;
  --space-xl: 44px;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

.container {
  width: min(var(--max-width), 92%);
  margin-inline: auto;
}

.section { padding: clamp(56px, 7vw, 92px) 0; }
.section-light { background: var(--color-surface-soft); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  z-index: 9999;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 12px; top: 12px; outline: 3px solid var(--color-secondary); }

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 18, 32, 0.95);
  backdrop-filter: blur(8px);
  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: var(--space-md);
}

.logo {
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 800;
}

.logo-icon { font-size: 1.4rem; }

.menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.menu a {
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.96rem;
}

.menu a:hover,
.menu a:focus-visible { color: #fff; }

.menu a.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: #fff;
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-sm);
  padding: 6px 11px;
  border-radius: 999px;
  background: #e8efff;
  color: #1e3a8a;
  font-size: 0.84rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.18;
  margin-bottom: var(--space-sm);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.24;
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: clamp(1.1rem, 2.1vw, 1.33rem);
  line-height: 1.35;
  margin-bottom: 8px;
}

p, li, address { color: var(--color-text-muted); }

.hero {
  background: linear-gradient(180deg, #edf4ff 0%, #ffffff 78%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: var(--space-lg);
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.lead { font-size: 1.08rem; color: #1f2937; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  padding: 12px 18px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--color-secondary);
  border-color: #cbd5e1;
}

.btn-secondary:hover,
.btn-secondary:focus-visible { background: #eff6ff; }

.trust-points {
  margin-top: var(--space-md);
  list-style: none;
  display: grid;
  gap: 6px;
}

.section-title { margin-bottom: var(--space-lg); }

.card-grid {
  display: grid;
  gap: var(--space-md);
}

.cols-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.cols-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.cols-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card,
.service-card,
.feature-panel,
.trust-box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.split-grid {
  display: grid;
  gap: var(--space-lg);
}

.feature-panel ul {
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.text-link {
  color: var(--color-secondary);
  font-weight: 700;
  text-underline-offset: 3px;
}

.steps {
  list-style: none;
  display: grid;
  gap: 12px;
}

.steps li {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 14px;
  border-radius: var(--radius-sm);
}

.faq-list { display: grid; gap: 12px; }

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

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-question:hover,
.faq-question:focus-visible { background: #f8fafc; }

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

.faq-answer p { padding: 0 16px 16px; }

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

.final-cta {
  background: linear-gradient(125deg, var(--color-bg), var(--color-bg-2));
}

.final-cta h2,
.final-cta p { color: #fff; }

.footer {
  background: #0a1222;
  color: #dbe4f1;
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer h3 { color: #fff; margin-bottom: 8px; }
.footer ul { list-style: none; display: grid; gap: 6px; }
.footer a { color: #dbeafe; text-decoration: none; }
.footer a:hover,
.footer a:focus-visible { text-decoration: underline; }

.footer-bottom {
  margin-top: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  cursor: pointer;
  display: none;
}

.back-top.show {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 14px; }

label { display: block; margin-bottom: 6px; font-weight: 600; color: #1f2937; }

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 12px;
  font: inherit;
  color: #0f172a;
  background: #fff;
}

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

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 1px;
}

.error {
  color: #b91c1c;
  font-size: 0.9rem;
  min-height: 18px;
  margin-top: 4px;
}

.form-message {
  margin-top: 10px;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-weight: 600;
}

.form-message.info {
  background: #eff6ff;
  color: #1e3a8a;
}

.legal-page .section { padding-top: 42px; }
.legal-content { max-width: 900px; }
.legal-content h2 { margin-top: 24px; }
.legal-content ul { margin: 8px 0 8px 18px; }
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  color: #334155;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .split-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #0b1220;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .menu.open { display: flex; }
  .menu a { padding: 8px 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}