﻿:root {
  --ink: #1a1a18;
  --ink-soft: #3a3b35;
  --paper: #f7f3ea;
  --paper-2: #efe7d6;
  --accent: #0d6b5c;
  --accent-2: #d37c2f;
  --shadow: rgba(19, 21, 17, 0.18);
  --radius: 18px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #fff 0%, var(--paper) 38%, var(--paper-2) 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.skip-link { position: absolute; top: -40px; left: 16px; background: #fff; color: var(--ink); padding: 8px 12px; border-radius: 8px; border: 2px solid var(--ink); z-index: 10; }
.skip-link:focus { top: 16px; }
.topbar { background: #12231e; color: #fefcf7; font-size: 0.95rem; letter-spacing: 0.02em; position: sticky; top: 0; z-index: 20; }
.topbar .wrap { display: flex; gap: 16px; justify-content: space-between; align-items: center; padding: 10px 24px; flex-wrap: wrap; }
.navbar { border-bottom: 1px solid rgba(0,0,0,0.08); background: rgba(247,243,234,0.85); backdrop-filter: blur(6px); }
.navbar .wrap { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; gap: 20px; flex-wrap: wrap; }
.logo { font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.9rem; }
.site-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.site-nav a { padding-bottom: 3px; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a:focus { border-color: var(--accent); }
.cta { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #fff; border-radius: 999px; padding: 12px 22px; font-weight: 700; font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif; letter-spacing: 0.04em; box-shadow: 0 10px 25px rgba(13, 107, 92, 0.25); border: none; cursor: pointer; }
.cta.ghost { background: transparent; color: var(--accent); border: 2px solid var(--accent); box-shadow: none; }
.hero { position: relative; padding: 80px 24px 110px; overflow: hidden; }
.hero .wrap { max-width: 1100px; margin: 0 auto; display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 3vw + 1.5rem, 4rem); line-height: 1.05; margin: 0; }
.panel { padding: 24px; background: #fff; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 18px 40px var(--shadow); }
.section { padding: 64px 24px; }
.section .wrap { max-width: 1100px; margin: 0 auto; }
.cards { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: #fff; border-radius: var(--radius); padding: 22px; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 16px 30px var(--shadow); }
.checklist { list-style: none; padding: 0; }
.checklist li { padding-left: 26px; position: relative; margin-bottom: 10px; }
.checklist li::before { content: "âœ“"; position: absolute; left: 0; color: var(--accent); }
.steps { padding-left: 18px; }
.notice { background: rgba(13, 107, 92, 0.08); border-left: 4px solid var(--accent); padding: 12px 16px; border-radius: 12px; }
.form-row { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"] { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.2); font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif; }
.radio-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.radio-card { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.15); background: #fdfbf5; }
.footer { background: #12231e; color: #fefcf7; padding: 48px 24px; }
.footer .wrap { max-width: 1100px; margin: 0 auto; display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.muted { color: var(--ink-soft); }
.mobile-cta { display: none; position: sticky; bottom: 0; background: #fefcf7; border-top: 1px solid rgba(0,0,0,0.1); padding: 10px 16px; gap: 10px; justify-content: center; }
.mobile-cta .cta { padding: 10px 14px; }
.faq details { margin-bottom: 12px; }
@media (max-width: 700px) {
  .navbar .wrap { flex-direction: column; align-items: flex-start; }
  .hero { padding: 60px 20px 90px; }
  .mobile-cta { display: flex; }
}
