:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef3ff;
  --text: #1d2433;
  --muted: #5d6b82;
  --primary: #1f5eff;
  --primary-2: #0f46d8;
  --accent: #11a36a;
  --border: #dbe3f2;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 30px rgba(16, 38, 84, .12);
  --max: 1160px;
  --space: clamp(16px, 2vw, 24px);
  --font: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; border-radius: var(--radius); }
.container { width: min(var(--max), 92%); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: #000; color: #fff; padding: 10px;
}
.skip-link:focus { left: 10px; z-index: 2000; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  color: #fff; background: linear-gradient(135deg,var(--primary),var(--accent));
}
.main-nav { margin-left: auto; display: flex; gap: 18px; }
.main-nav a { color: var(--text); font-weight: 600; }
.main-nav a.active { color: var(--primary); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: 999px;
  padding: 12px 18px; font-weight: 700; transition: .25s ease;
}
.btn-primary { background: linear-gradient(135deg,var(--primary),var(--primary-2)); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); text-decoration: none; }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: #f8faff; text-decoration: none; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); display: block; margin: 5px 0; }
.hero { padding: clamp(44px, 8vw, 88px) 0; }
.hero-grid { display: grid; gap: 30px; align-items: center; grid-template-columns: 1.15fr .85fr; }
.eyebrow { display: inline-block; background: var(--surface-2); color: var(--primary-2); padding: 6px 12px; border-radius: 999px; font-weight: 700; }
.hero h1 { font-size: clamp(1.9rem, 3.5vw, 3rem); line-height: 1.2; margin: 12px 0; }
.hero-sub { font-size: 1.1rem; color: var(--muted); }
.hero-text { color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.trust-inline { display: flex; flex-wrap: wrap; gap: 14px; list-style: none; padding: 0; margin: 18px 0 0; color: var(--muted); }
.section { padding: clamp(46px, 8vw, 82px) 0; }
.section-alt { background: var(--surface); }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 8px; }
.section-head p { color: var(--muted); margin: 0 0 20px; }
.cards-grid { display: grid; gap: 18px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card, .service-card, .trust-item, .list-box, .map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.icon { font-size: 1.5rem; }
.split { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; align-items: start; }
.list-box ul { margin: 0; padding-left: 18px; }
.text-link { font-weight: 700; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.steps li { display: flex; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; }
.steps span { width: 34px; height: 34px; border-radius: 999px; background: var(--surface-2); color: var(--primary-2); display: grid; place-items: center; font-weight: 800; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; border: 0; background: #fff; padding: 16px; font-weight: 700; cursor: pointer;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 16px; }
.faq-item.open .faq-answer { max-height: 220px; padding-bottom: 16px; }
.cta-final { background: linear-gradient(160deg,#ebf2ff,#f4fffa); }
.site-footer { background: #111829; color: #e8edff; padding-top: 36px; }
.footer-grid { display: grid; gap: 20px; grid-template-columns: 1.2fr 1fr 1fr; }
.site-footer a { color: #dce7ff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.footer-bottom { margin-top: 20px; border-top: 1px solid rgba(255,255,255,.15); text-align: center; padding: 14px; }
.float-whats {
  position: fixed; right: 16px; bottom: 16px; width: 54px; height: 54px;
  border-radius: 999px; background: #25d366; color: #fff; display: grid; place-items: center;
  font-size: 1.5rem; box-shadow: var(--shadow); z-index: 900;
}
.back-to-top {
  position: fixed; right: 18px; bottom: 82px; width: 44px; height: 44px;
  border: 0; border-radius: 999px; background: #1c2740; color: #fff; cursor: pointer;
  opacity: 0; visibility: hidden; transition: .2s;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.form-grid { display: grid; gap: 14px; }
label { font-weight: 600; }
input, select, textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--border); border-radius: 10px; font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus, .btn:focus, .faq-question:focus, .menu-toggle:focus {
  outline: 3px solid rgba(31,94,255,.25); outline-offset: 2px;
}
.error { color: #b32020; font-size: .92rem; }
.form-note, .form-status { color: var(--muted); }
.legal-content { max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(18px, 3vw, 32px); box-shadow: var(--shadow); }
.legal-content h2, .legal-content h3 { margin-top: 24px; }
.legal-meta { background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; }
.reveal { opacity: 0; transform: translateY(10px); transition: .45s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 980px) {
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: absolute; top: 62px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border); padding: 12px 4%; display: none; flex-direction: column;
  }
  .main-nav.open { display: flex; }
  .cards-3, .cards-4 { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}