:root {
  --ink: #14212b;
  --muted: #526270;
  --line: #d8e2e8;
  --paper: #f7fafb;
  --white: #ffffff;
  --ice: #e7f7fb;
  --teal: #047988;
  --teal-dark: #075663;
  --green: #4c8d36;
  --red: #c0392b;
  --gold: #c18418;
  --shadow: 0 18px 48px rgba(20, 33, 43, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--green));
  border-radius: 8px;
  font-weight: 900;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--teal-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 22px rgba(192, 57, 43, 0.22);
}

.btn-dark {
  color: var(--white);
  background: var(--teal-dark);
}

.btn-quiet {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 720px;
  color: var(--white);
  overflow: hidden;
  background: #0f252d;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.92) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 31, 0.92) 0%, rgba(8, 24, 31, 0.72) 45%, rgba(8, 24, 31, 0.25) 100%),
    linear-gradient(180deg, rgba(8, 24, 31, 0.28), rgba(8, 24, 31, 0.72));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: #f6fbfd;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(2.35rem, 5vw, 5.25rem);
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3.05rem);
}

h3 {
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 760px;
  margin: 20px 0 0;
  color: #e5f4f7;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 740px;
}

.proof-item {
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 1.08rem;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: #d7e9ee;
  font-size: 0.9rem;
}

.quick-form {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-form-head {
  padding: 18px 18px 14px;
  background: linear-gradient(135deg, var(--red), #8f2b22);
  color: var(--white);
}

.quick-form-head p {
  margin: 6px 0 0;
  color: #ffe8e4;
  font-size: 0.94rem;
}

.form-body {
  padding: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row.full {
  grid-column: 1 / -1;
}

label {
  color: #334552;
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid #cfdbe2;
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(4, 121, 136, 0.18);
  border-color: var(--teal);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.alert {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 800;
}

.alert-ok {
  color: #1d552a;
  background: #eaf6e9;
  border: 1px solid #b8dfb4;
}

.alert-bad {
  color: #8f2b22;
  background: #fff0ee;
  border: 1px solid #f0beb7;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--paper);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-body {
  padding: 18px;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #edf3f5;
}

.card p {
  color: var(--muted);
  margin: 9px 0 0;
}

.card a {
  text-decoration: none;
}

.link-arrow {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: 32px;
  align-items: start;
}

.media-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #314350;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.53em;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 2px;
}

.band {
  padding: 46px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), #1f4d3d);
}

.band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.band p {
  max-width: 720px;
  margin: 10px 0 0;
  color: #d9eef0;
}

.page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: end;
  color: var(--white);
  background: #0f252d;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 24, 31, 0.9), rgba(8, 24, 31, 0.48));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 54px;
}

.page-hero-content p {
  max-width: 740px;
  color: #e4f4f7;
  font-size: 1.12rem;
}

.content-area {
  padding: 64px 0 82px;
}

.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-main h2 {
  margin-top: 28px;
  font-size: 1.75rem;
}

.article-main p {
  color: var(--muted);
}

.side-panel {
  position: sticky;
  top: 92px;
}

.map-panel {
  margin-bottom: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.faq-list section {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list p {
  margin-bottom: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.pill-list a,
.pill-list span {
  display: inline-flex;
  padding: 8px 10px;
  color: #284453;
  background: #edf7f9;
  border: 1px solid #cae5ea;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.9rem;
}

.keyword-section {
  margin-top: 24px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.keyword-section p {
  margin: 10px 0 0;
}

.term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.term-list span {
  display: inline-flex;
  padding: 7px 9px;
  color: #2f4a57;
  background: #f1f7f8;
  border: 1px solid #d6e7eb;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
}

.table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #29424f;
  background: #eef6f8;
  font-size: 0.88rem;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  padding: 44px 0;
  color: #d9e7eb;
  background: #101f26;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.site-footer a {
  color: #d9e7eb;
  text-decoration: none;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.copyright {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #a9bdc5;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .split,
  .article {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .wrap,
  .hero-inner,
  .page-hero-content {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    white-space: normal;
  }

  .nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-actions .btn,
  .hero-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: min(340px, calc(100vw - 32px));
    font-size: clamp(1.95rem, 8.5vw, 2.25rem);
  }

  .hero-inner > *,
  .page-hero-content > * {
    min-width: 0;
    max-width: min(340px, calc(100vw - 32px));
  }

  .hero-copy,
  .page-hero-content p {
    max-width: min(340px, calc(100vw - 32px));
  }

  .hero-actions,
  .hero-proof {
    max-width: min(340px, calc(100vw - 32px));
  }

  .hero-inner {
    padding-top: 44px;
  }

  .hero-proof,
  .grid-3,
  .grid-4,
  .check-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 58px 0;
  }

  .page-hero {
    min-height: 390px;
  }

  .article {
    gap: 22px;
  }
}
