:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-alt: #edf3fa;
  --text: #1b2430;
  --muted: #5b6675;
  --primary: #0f3c68;
  --primary-strong: #0a2f53;
  --accent: #ff8a00;
  --border: #d8e2ef;
  --success: #147a3f;
  --danger: #b42318;
  --shadow-sm: 0 8px 20px rgba(15, 60, 104, 0.08);
  --shadow-md: 0 14px 34px rgba(15, 60, 104, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1120px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-strong); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 5000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(92%, var(--container)); margin: 0 auto; }
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--surface-alt); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  color: var(--primary);
}
.brand-icon { font-size: 1.35rem; }
.brand-text { letter-spacing: 0.02em; }

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary);
}

.nav { display: none; }
.nav a {
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
}
.nav a:hover,
.nav a.active { background: #e8f0fa; }

.desktop-cta { display: none; }

.hero {
  background: radial-gradient(circle at 10% 10%, #e9f2fc 0%, transparent 42%), var(--bg);
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
h1 {
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}
h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
p { margin-bottom: 0.8rem; }
.hero-subtitle, .hero-text { color: var(--muted); }

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

.trust-points {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.section-head { max-width: 760px; margin-bottom: 1.6rem; }

.cards-grid {
  display: grid;
  gap: 1rem;
}
.cols-3, .cols-2 { grid-template-columns: 1fr; }

.card,
.service-card,
.trust-card,
.info-panel,
.address-highlight,
.cta-box,
.legal-content,
.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card,
.service-card,
.trust-card { padding: 1.2rem; }
.card-icon { font-size: 1.3rem; margin-bottom: 0.65rem; }

.split-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}
.info-panel { padding: 1.2rem; }
.info-panel ul { padding-left: 1.2rem; color: var(--muted); }

.text-link { display: inline-block; margin-top: 0.7rem; font-weight: 700; }

.steps-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.steps-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.steps-list li span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
}

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

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.address-highlight {
  min-height: 220px;
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0f3c68, #145893);
  color: #fff;
  padding: 1.2rem;
}
.address-highlight p { opacity: 0.9; margin-bottom: 0.2rem; }
.address-highlight strong { font-size: 1.35rem; margin-bottom: 0.2rem; }

.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 700;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 1rem 1rem;
  color: var(--muted);
}
.faq-item.open .faq-answer { max-height: 260px; }

.final-cta { padding-top: 1rem; }
.cta-box { text-align: center; padding: 1.5rem; }

.page-hero { padding: 7rem 0 2rem; }
.legal-content,
.contact-box { padding: clamp(1rem, 2vw, 2rem); }
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted);
}
.legal-content h2, .legal-content h3 { margin-top: 1.2rem; }
.legal-content p, .legal-content li { color: #3c4756; }
.legal-content ul { padding-left: 1.2rem; margin-bottom: 0.8rem; }

.form-grid {
  display: grid;
  gap: 0.9rem;
}
label {
  font-weight: 600;
  margin-bottom: 0.35rem;
  display: inline-block;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem;
  font: inherit;
  background: #fff;
}
.error-msg {
  color: var(--danger);
  min-height: 1.1em;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.form-feedback {
  margin-top: 0.8rem;
  font-weight: 600;
}
.form-feedback.info { color: var(--primary); }
.form-feedback.error { color: var(--danger); }

.site-footer {
  background: #0d2238;
  color: #d6e1ef;
  padding-top: 2.4rem;
}
.site-footer a { color: #edf4ff; }
.footer-grid {
  display: grid;
  gap: 1.2rem;
}
.footer-grid ul { list-style: none; display: grid; gap: 0.35rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 1.2rem;
  padding: 1rem 0 1.4rem;
  display: grid;
  gap: 0.35rem;
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}
.back-top.show { opacity: 1; visibility: visible; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(255, 138, 0, 0.35);
  outline-offset: 2px;
}

@media (min-width: 860px) {
  .menu-toggle { display: none; }
  .nav { display: flex; gap: 0.4rem; }
  .desktop-cta { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cols-2 { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1.15fr 0.85fr; gap: 1.3rem; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 859px) {
  .nav.open {
    display: grid;
    position: absolute;
    top: 84px;
    left: 4%;
    right: 4%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.8rem;
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
  }
}

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