
:root {
  --navy: #061D49;
  --teal: #079A9A;
  --purple: #6F3D9A;
  --green: #62A83B;
  --light: #F8FCFC;
  --pale-teal: #E9F7F7;
  --pale-green: #EEF8EC;
  --pale-purple: #F3EDF8;
  --pale-yellow: #FFF7E6;
  --grey: #D8E5E5;
  --dark: #303A4A;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(6, 29, 73, .11);
  --radius: 22px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
}
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.skip-link { position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { position:static; width:auto; height:auto; padding:10px; background:#fff; display:block; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey);
}
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 800; }
.brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 12px; }
.nav-links { display:flex; align-items:center; gap: 18px; font-weight: 700; font-size: 14px; }
.nav-links a { color: var(--navy); }
.nav-toggle { display:none; border:0; background:var(--navy); color:#fff; border-radius:12px; padding:10px 12px; font-weight:800; }
.hero {
  background:
    radial-gradient(circle at top left, rgba(7,154,154,.18), transparent 35%),
    linear-gradient(135deg, var(--navy), #102d6b 58%, var(--purple));
  color: #fff;
  padding: 82px 0 52px;
}
.hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap: 36px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5vw, 64px); line-height:1.04; margin:0 0 18px; letter-spacing:-.04em; }
.hero p { font-size: 19px; max-width: 650px; margin: 0 0 24px; color: rgba(255,255,255,.92); }
.hero-card {
  background:#fff; color: var(--dark); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.hero-card h2 { color: var(--navy); margin-top:0; }
.hero-card ul { padding-left: 20px; }
.badge {
  display:inline-flex; align-items:center; gap:8px; border-radius:999px;
  padding:8px 13px; font-weight:800; font-size:13px; background: rgba(255,255,255,.16); color:#fff; margin-bottom:18px;
}
.section { padding: 62px 0; }
.section.alt { background: #fff; }
.section h2 { font-size: clamp(28px, 4vw, 42px); line-height:1.1; margin:0 0 12px; color:var(--navy); letter-spacing:-.025em; }
.section-intro { font-size:18px; max-width:790px; margin:0 0 28px; }
.grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--grey); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.alt .card { background: var(--light); }
.card h3 { color: var(--navy); margin:0 0 8px; font-size:22px; line-height:1.2; }
.card .price { color:var(--purple); font-size:30px; font-weight:900; margin: 10px 0; }
.card ul { padding-left: 20px; margin-bottom: 0; }
.kicker { color: var(--teal); font-weight:900; text-transform:uppercase; letter-spacing:.08em; font-size:13px; }
.btn-row { display:flex; gap:14px; flex-wrap:wrap; margin-top:24px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background: var(--teal); color:#fff; border-radius: 14px; padding: 13px 18px; font-weight:900;
  border: 2px solid var(--teal); box-shadow: 0 8px 22px rgba(7,154,154,.22);
}
.btn:hover { background:#057a7a; color:#fff; text-decoration:none; }
.btn.secondary { background:transparent; color:#fff; border-color:rgba(255,255,255,.65); box-shadow:none; }
.section .btn.secondary { color:var(--navy); border-color:var(--navy); }
.notice {
  background: var(--pale-yellow); border: 1px solid #efd490; border-radius: var(--radius); padding: 18px 20px;
}
.disclaimer {
  background: var(--navy); color:#fff; padding: 20px; border-radius: var(--radius); font-weight:700;
}
.steps { counter-reset: step; display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
.step { background:#fff; padding:22px; border-radius:var(--radius); border:1px solid var(--grey); box-shadow: var(--shadow); }
.step:before { counter-increment: step; content: counter(step); display:inline-grid; place-items:center; width:36px; height:36px; border-radius:50%; background:var(--teal); color:white; font-weight:900; margin-bottom:10px; }
.example-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.example { background:#fff; border: 1px solid var(--grey); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.example img { width:100%; display:block; aspect-ratio: 1/1; object-fit:cover; }
.example p { padding: 14px 16px 18px; margin:0; font-weight:800; color:var(--navy); }
.table-wrap { overflow:auto; border-radius:var(--radius); border:1px solid var(--grey); background:#fff; }
table { border-collapse: collapse; width:100%; min-width: 760px; background:#fff; }
th, td { padding:14px 16px; text-align:left; border-bottom:1px solid var(--grey); vertical-align:top; }
th { background:var(--navy); color:#fff; }
tr:nth-child(even) td { background: var(--pale-teal); }
form { display:grid; gap:14px; }
label { font-weight:800; color:var(--navy); }
input, select, textarea {
  width:100%; padding:13px 14px; border-radius:12px; border:1px solid #b8caca; font:inherit; background:#fff;
}
textarea { min-height:140px; }
button.btn { cursor:pointer; font:inherit; }
.site-footer { background:var(--navy); color:#fff; padding: 42px 0; }
.footer-grid { display:grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 26px; }
.site-footer a { color:#fff; }
.footer-small { color:rgba(255,255,255,.75); font-size:13px; }
.hero-mini { background: linear-gradient(135deg, var(--navy), var(--purple)); color:#fff; padding: 56px 0; }
.hero-mini h1 { margin:0; font-size: clamp(34px, 5vw, 54px); letter-spacing:-.035em; }
.hero-mini p { max-width:760px; font-size:18px; color:rgba(255,255,255,.9); }
.checklist li { margin-bottom: 8px; }
@media (max-width: 900px) {
  .hero-grid, .grid, .grid.two, .steps, .example-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display:block; }
  .nav-links { display:none; position:absolute; left:0; right:0; top:76px; background:#fff; padding:18px 22px; flex-direction:column; align-items:flex-start; border-bottom:1px solid var(--grey); }
  .nav-links.open { display:flex; }
  .hero { padding-top:48px; }
}
