:root {
  --bg: #f4f8f7;
  --surface: #ffffff;
  --ink: #0f2a2a;
  --muted: #4b6161;
  --brand: #0c8a78;
  --brand-dark: #0b6b5d;
  --accent: #f2b134;
  --line: #d7e3e3;
  --radius: 16px;
  --shadow: 0 16px 32px rgba(7, 44, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 0% 0%, rgba(12, 138, 120, 0.12), transparent 38%),
    radial-gradient(circle at 100% 15%, rgba(242, 177, 52, 0.12), transparent 30%),
    linear-gradient(180deg, #f4f8f7 0%, #eaf1f1 100%);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(244, 248, 247, 0.86);
  border-bottom: 1px solid rgba(15, 42, 42, 0.1);
}

.nav-wrap {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  text-decoration: none;
  color: var(--ink);
  font-family: "Avenir Next Condensed", "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
}

.logo span {
  color: var(--brand-dark);
}

.logo-k {
  color: var(--accent);
}

.logo-mark {
  width: 140px;
  height: auto;
  display: block;
  margin-bottom: -3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateY(19px);
  position: relative;
  flex-wrap: nowrap;
}

.nav a,
.nav-dropdown-toggle {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
}

.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
  margin-top: 2px;
  z-index: 40;
}

.nav-submenu a {
  display: block;
  padding: 8px 9px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-submenu a:hover {
  background: #edf7f5;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--ink);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  display: grid;
  gap: 4px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(100deg, var(--brand), var(--brand-dark));
  box-shadow: 0 10px 20px rgba(12, 138, 120, 0.25);
}

.btn-ghost {
  color: var(--brand-dark);
  background: transparent;
  border: 1px solid #a5c8c4;
}

.btn-nav {
  background: var(--ink);
  color: #fff;
}

.nav a.btn-nav {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 10px 12px;
  font-weight: 700;
}

.hero {
  padding: 72px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brand-dark);
}

h1,
h2,
h3 {
  font-family: "Avenir Next Condensed", "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.15rem;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
}

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

.hero-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 7px;
}

.hero-points li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--brand);
  font-weight: 800;
}

.hero-media {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(12, 107, 93, 0.14);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-strip {
  padding-bottom: 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  gap: 4px;
}

.trust-grid strong {
  font-family: "Avenir Next Condensed", "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  font-size: 1.6rem;
}

.trust-grid span {
  color: var(--muted);
}

.section {
  padding: 62px 0;
}

.section-accent {
  background: linear-gradient(180deg, rgba(12, 138, 120, 0.08), rgba(12, 138, 120, 0.02));
  border-top: 1px solid rgba(12, 107, 93, 0.12);
  border-bottom: 1px solid rgba(12, 107, 93, 0.12);
}

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

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 25px rgba(14, 40, 40, 0.08);
}

.card img {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
}

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

.card p a {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.card p a:hover,
.card p a:focus-visible {
  color: var(--brand);
  border-bottom-color: currentColor;
}

.seo-copy {
  margin: 18px 0 0;
  color: var(--muted);
}

.city-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.city-links a {
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--brand-dark);
  font-weight: 700;
  padding: 10px 12px;
  text-align: center;
}

.city-links a:hover {
  background: #edf7f5;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline article {
  background: #ffffffcc;
  border: 1px solid rgba(12, 107, 93, 0.18);
  border-radius: var(--radius);
  padding: 18px;
}

.timeline span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Avenir Next Condensed", "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  background: var(--ink);
  color: #fff;
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.checklist {
  padding-left: 18px;
  color: var(--muted);
}

.split-image {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 14px 16px;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
}

.faq-list p {
  color: var(--muted);
  margin-bottom: 4px;
}

.section-contact {
  background: linear-gradient(180deg, rgba(15, 42, 42, 0.06), rgba(15, 42, 42, 0.02));
}

.legal {
  background: #f7fbfa;
  border-top: 1px solid var(--line);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.legal-card p {
  color: var(--muted);
}

.legal-card a {
  color: var(--brand-dark);
}

.legal-privacy .legal-card {
  max-width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.contact-list {
  padding-left: 0;
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 25px rgba(14, 40, 40, 0.08);
}

.contact-panel p {
  color: var(--muted);
}

.contact-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  align-items: baseline;
}

.contact-list a {
  color: var(--brand-dark);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-person {
  margin: 16px 0 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(14, 40, 40, 0.08);
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 12px;
  align-items: center;
}

.contact-person img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  object-position: 50% 26%;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(12, 107, 93, 0.18);
}

.contact-person figcaption {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.contact-person figcaption strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.contact-person figcaption span {
  display: block;
}

.contact-person .contact-person-role {
  color: var(--brand-dark);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-person .contact-person-name {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-form label.checkbox-inline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 10px;
  font-weight: 500;
  line-height: 1.45;
}

.contact-form label.checkbox-inline input[type="checkbox"] {
  margin-top: 3px;
}

.contact-form label.contact-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 10px;
}

.contact-form label.contact-check input[type="checkbox"] {
  margin-top: 3px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid #bdd0cf;
  border-radius: 10px;
  padding: 11px;
  font: inherit;
}

.contact-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 3px 0 0;
  accent-color: var(--brand);
  flex: 0 0 auto;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(12, 138, 120, 0.25);
  border-color: var(--brand);
}

.calc-result {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.calc-metric {
  margin: 0 0 10px;
}

.calc-metric strong {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.calc-metric span {
  display: block;
  font-family: "Avenir Next Condensed", "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.calc-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.calc-result .btn {
  margin-top: 8px;
}

.form-note {
  min-height: 1.2em;
  font-weight: 600;
  color: var(--brand-dark);
}

.form-note.error {
  color: #9f2c2c;
}

.form-hint {
  margin: 10px 0 0;
}

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

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 80px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(12, 107, 93, 0.35);
  background: rgba(15, 42, 42, 0.94);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--brand-dark);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-mark {
  width: 52px;
  height: 52px;
}

.small {
  color: var(--muted);
}

.small a {
  color: var(--brand-dark);
  text-decoration: none;
}

.small a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .cards-2,
  .cards-3,
  .cards-4,
  .city-links,
  .timeline,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-person {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .contact-person img {
    width: 136px;
    height: 136px;
  }
}

@media (max-width: 740px) {
  .logo > span {
    display: none;
  }

  .nav-wrap {
    min-height: 82px;
    gap: 8px;
  }

  .logo {
    gap: 6px;
    align-items: center;
    max-width: calc(100% - 118px);
  }

  .logo span {
    font-size: 0.66rem;
    line-height: 1.15;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .logo-mark {
    width: 84px;
    margin-bottom: 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(1120px, 92vw);
    background: var(--surface);
    border-radius: 14px;
    border: 1px solid var(--line);
    padding: 12px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    transform: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 4px 0;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    border-radius: 10px;
    box-shadow: none;
    margin-top: 6px;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    display: none;
  }

  .nav-dropdown.open .nav-submenu {
    display: grid;
    gap: 4px;
  }

  .cards-2,
  .cards-3,
  .cards-4,
  .city-links,
  .timeline,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .scroll-top {
    right: 12px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 520px) {
  .logo span {
    display: none;
  }

  .logo {
    max-width: none;
  }

  .logo-mark {
    width: 74px;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .nav {
    top: 74px;
  }
}


.hero-media.hero-media-photo {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 84%, rgba(194, 206, 168, 0.72) 0 12%, transparent 13%),
    radial-gradient(circle at 84% 14%, rgba(140, 198, 192, 0.55) 0 10%, transparent 11%),
    #b9dbd8;
  border: 1px solid rgba(137, 190, 185, 0.78);
  box-shadow: 0 16px 30px rgba(14, 40, 40, 0.11);
}

.hero-media.hero-media-photo::before {
  content: none;
}

.hero-media.hero-media-photo .hero-photo-frame {
  position: relative;
  z-index: 1;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  border: 2px solid rgba(83, 154, 145, 0.95);
  box-shadow: 0 8px 18px rgba(20, 52, 52, 0.12);
}

.hero-media.hero-media-photo .hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 47%;
  border-radius: 13px;
  border: 0;
  box-shadow: none;
}

@media (max-width: 740px) {
  .hero-media.hero-media-photo {
    padding: 20px;
  }
}

.hero-media-index {
  box-shadow: 0 24px 46px rgba(14, 40, 40, 0.22);
  border-color: rgba(12, 107, 93, 0.2);
}

.hero-media-index img {
  box-shadow: 0 10px 22px rgba(14, 40, 40, 0.14);
}
