:root {
  --white: #ffffff;
  --off: #f7f9fc;
  --light: #eef2f7;
  --border: #dde4ee;
  --muted: #8a96aa;
  --body: #3d4a5c;
  --heading: #111827;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #1d6fd8;
  --blue-700: #1d4ed8;
  --blue-800: #1e3a8a;
  --teal: #0e7490;
  --teal-lt: #cffafe;
  --gold: #b07d2e;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; font-size: 16px; background: var(--off); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--blue-400); border-radius: 3px; }
::-webkit-scrollbar-track { background: var(--light); }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--blue-500); color: #fff; }

img { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.mono { font-family: var(--font-mono); }

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.nav .logo img { height: 52px; width: auto; display: block; }
.nav .links { display: flex; align-items: center; gap: 28px; }
.nav .links a { font-size: 13.5px; color: var(--body); transition: color .25s; }
.nav .links a:hover { color: var(--blue-600); }
.nav .cta {
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  padding: 11px 20px; border-radius: 999px;
  background: var(--blue-600); color: #fff;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s, background .25s;
  white-space: nowrap;
}
.nav .cta:hover { transform: translateY(-1px); background: var(--blue-700); box-shadow: var(--shadow-lg); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  padding: 15px 28px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s, background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-blue { background: var(--blue-600); color: #fff; box-shadow: var(--shadow); }
.btn-blue:hover { background: var(--blue-700); box-shadow: var(--shadow-lg); }
.btn-line { border-color: rgba(29, 111, 216, 0.4); color: var(--blue-700); background: transparent; }
.btn-line:hover { background: var(--blue-50); border-color: var(--blue-600); }
.btn-wa { background: #22c15e; color: #fff; box-shadow: var(--shadow); }
.btn-wa:hover { box-shadow: var(--shadow-lg); }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--blue-100); color: var(--blue-700);
  background: var(--blue-50);
}

.page-hero {
  position: relative;
  background:
    radial-gradient(120% 160% at 85% -10%, rgba(96, 165, 250, .45), transparent 55%),
    linear-gradient(135deg, #16295e, #1e3a8a 55%, #1d4ed8);
  color: #fff;
  padding: 84px 0 64px;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--blue-300);
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--blue-300); }
.page-hero h1 {
  margin: 20px 0 18px;
  max-width: 16em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  color: var(--white);
}
.page-hero h1 em { font-style: italic; color: var(--blue-300); }
.page-hero p { max-width: 42em; font-weight: 300; font-size: clamp(15px, 1.4vw, 17.5px); line-height: 1.75; color: rgba(255,255,255,.8); }

.section-light { padding: 80px 0; }

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile { padding: 34px 30px; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile .ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-600);
}
.tile h3 { margin: 20px 0 10px; font-size: 17px; font-weight: 600; color: var(--heading); }
.tile p { font-size: 14px; line-height: 1.7; color: var(--muted); flex: 1; }
.tile .val { display: block; margin-top: 14px; font-family: var(--font-mono); font-size: 15px; letter-spacing: .03em; color: var(--blue-700); font-weight: 500; }
.tile .val:hover { text-decoration: underline; }
.tile .sub { display: block; margin-top: 6px; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-family: var(--font-mono); }

.form-card { padding: 44px 44px 40px; max-width: 760px; margin: 0 auto; }
.form-card h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3vw, 38px); color: var(--heading); }
.form-card > p { margin-top: 12px; font-size: 15px; line-height: 1.7; color: var(--muted); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--heading); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 14px; color: var(--heading);
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 16px; outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px var(--blue-100);
}
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 28px; }
.form-note { font-size: 13px; color: var(--muted); line-height: 1.55; }
.form-note.ok { color: var(--teal); font-weight: 500; }
.form-note.err { color: #b42318; font-weight: 500; }

.cities { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }

.prose { max-width: 800px; }
.prose.card { padding: 48px 52px; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: 27px; color: var(--heading); margin: 38px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 14.5px; line-height: 1.8; color: var(--body); margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.prose ul li { font-size: 14.5px; line-height: 1.8; color: var(--body); margin-bottom: 6px; }
.prose strong { color: var(--heading); font-weight: 600; }
.prose a { color: var(--blue-700); text-decoration: underline; }
.doc-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }

.footer { background: linear-gradient(135deg, #16295e, #1e3a8a 60%); color: #fff; padding: 70px 0 36px; }
.footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer h4 { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--white); font-weight: 600; margin-bottom: 20px; }
.footer .brand p { margin-top: 16px; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; max-width: 30em; }
.footer .links li { margin-bottom: 12px; }
.footer .links a { color: rgba(255,255,255,.65); font-size: 14px; transition: color .25s; }
.footer .links a:hover { color: var(--white); }
.footer .contact-line { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 13.5px; color: rgba(255,255,255,.75); }
.footer .contact-line svg { flex: 0 0 auto; opacity: .7; }
.footer .contact-line a:hover { color: #fff; text-decoration: underline; }
.footer .bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.14);
  font-size: 12.5px; color: rgba(255,255,255,.55);
}
.footer .bottom .legal { display: flex; gap: 22px; }
.footer .bottom .legal a:hover { color: var(--white); }

.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #22c15e; color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .25s ease;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.05); }
.wa-fab svg { width: 28px; height: 28px; fill: currentColor; }

@media (max-width: 1020px) {
  .tiles { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav .links { display: none; }
  .section-light { padding: 60px 0; }
  .prose.card { padding: 34px 26px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .nav { padding: 12px 20px; }
  .field-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 22px; }
  .footer .grid { grid-template-columns: 1fr; }
  .footer .bottom { flex-direction: column; align-items: flex-start; }
  .wa-fab { right: 16px; bottom: 16px; width: 50px; height: 50px; }
}
