:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --surface-soft: #edf4f8;
  --text: #14212b;
  --muted: #5d6a75;
  --line: #d8e1e8;
  --primary: #176b87;
  --primary-dark: #0f4f64;
  --accent: #d97941;
  --warning: #fff2df;
  --shadow: 0 22px 60px rgba(20, 33, 43, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 10;
}
.skip-link:focus { left: 12px; }

.site-header {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 5;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 30px rgba(23, 107, 135, 0.28);
}

.brand h1 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.eyebrow,
.badge {
  margin: 0 0 8px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 800;
}

.header-phone {
  color: var(--text);
  font-weight: 700;
}

.section { padding: 86px 0; }
.muted { background: var(--surface-soft); }

.hero {
  background:
    radial-gradient(circle at 80% 15%, rgba(217, 121, 65, .16), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
  align-items: center;
}

.hero-copy h2,
.section-heading h2,
.two-column h2,
.contact-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.two-column h2,
.contact-card h2,
.section-heading h2 { font-size: clamp(1.9rem, 3vw, 3rem); }

.lead {
  font-size: 1.22rem;
  color: #314350;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 107, 135, .24);
}
.button.primary:hover { background: var(--primary-dark); text-decoration: none; }
.button.secondary { color: var(--primary-dark); border-color: var(--line); background: #fff; }
.button.secondary:hover { text-decoration: none; border-color: var(--primary); }
.button.full { width: 100%; }

.notice-card,
.card,
.info-panel,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.notice-card { padding: 28px; }
.notice-card h3,
.card h3,
.info-panel h3 { margin-top: 0; font-size: 1.25rem; }

.notice-card dl { margin: 0; }
.notice-card div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.notice-card div:last-child { border-bottom: 0; }
.notice-card dt { color: var(--muted); font-size: .9rem; }
.notice-card dd { margin: 3px 0 0; font-weight: 800; }
.small-note,
.disclaimer { color: var(--muted); font-size: .95rem; }

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card { padding: 26px; box-shadow: none; }
.icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.info-panel { padding: 30px; }
.info-panel.warning {
  background: var(--warning);
  border-color: #f3c99e;
  box-shadow: none;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 32px;
  padding: 38px;
}
.contact-details {
  display: grid;
  gap: 12px;
  align-content: center;
  font-weight: 700;
}
.contact-details span { color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 840px) {
  .header-inner,
  .footer-inner,
  .hero-grid,
  .two-column,
  .contact-card,
  .cards.three {
    grid-template-columns: 1fr;
  }
  .header-inner,
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .section { padding: 62px 0; }
  .reverse-mobile .info-panel { order: 2; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero-actions .button { width: 100%; }
  .contact-card { padding: 26px; }
}
