:root {
  --ink: #173136;
  --muted: #5b6d70;
  --paper: #f6f8f6;
  --white: #ffffff;
  --blue: #0d7fa6;
  --green: #7fbd24;
  --green-dark: #5b9418;
  --coral: #d66c50;
  --cream: #eee5d8;
  --line: rgba(23, 49, 54, 0.14);
  --shadow: 0 24px 70px rgba(23, 49, 54, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.topbar {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding: 12px clamp(16px, 5vw, 68px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 31, 35, 0.74), rgba(13, 31, 35, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.topbar[data-elevated="true"] {
  background: rgba(16, 37, 41, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 156px;
  height: auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 5px 7px;
}

.brand span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.lang button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.lang button.active {
  color: var(--ink);
  background: var(--white);
}

.round-call {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 30px rgba(214, 108, 80, 0.3);
}

.round-call svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 124px clamp(18px, 5vw, 68px) 44px;
  color: var(--white);
  background: var(--ink);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 28, 31, 0.9) 0%, rgba(12, 28, 31, 0.68) 42%, rgba(12, 28, 31, 0.1) 100%),
    linear-gradient(0deg, rgba(12, 28, 31, 0.88) 0%, rgba(12, 28, 31, 0) 44%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-bottom: 160px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #a9ef59;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: 5.4rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 3.7rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

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

.btn.light {
  color: var(--ink);
  background: var(--white);
}

.btn.outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn.dark {
  margin-top: 24px;
  color: var(--white);
  background: var(--ink);
}

.quick-panel {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 68px);
  bottom: 34px;
  left: clamp(18px, 5vw, 68px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1220px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(17, 39, 43, 0.76);
  backdrop-filter: blur(18px);
}

.quick-panel div {
  min-width: 0;
  padding: 19px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-panel div:first-child {
  border-left: 0;
}

.quick-panel span,
.contact-grid span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quick-panel strong {
  display: block;
  font-size: 1rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.metrics div {
  min-width: 0;
  padding: 34px clamp(18px, 5vw, 68px);
  background: var(--white);
}

.metrics strong {
  display: block;
  color: var(--coral);
  font-size: 4rem;
  line-height: 0.95;
}

.metrics p {
  max-width: 330px;
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 760;
}

.section {
  padding: 104px clamp(18px, 5vw, 68px);
}

.split-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.copy p:not(.eyebrow),
.section-head p:not(.eyebrow),
.path-detail p,
.visit-copy p,
.support-item p,
.testimonials p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.team-figure {
  margin: 0;
}

.team-figure img,
.visit > img,
.contact > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.team-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 750;
}

.paths {
  background: #eef5ef;
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.path-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.path-buttons {
  display: grid;
  align-content: start;
  gap: 1px;
  background: var(--line);
}

.path-buttons button {
  min-height: 76px;
  padding: 18px;
  border: 0;
  color: var(--ink);
  background: #f9fbfb;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.path-buttons button.active {
  color: var(--white);
  background: var(--blue);
}

.path-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 5vw, 60px);
  padding: clamp(28px, 5vw, 60px);
}

#path-kicker {
  color: var(--coral);
  font-weight: 950;
}

.path-detail p {
  margin: 14px 0 0;
}

.path-detail ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-detail li {
  position: relative;
  padding: 14px 14px 14px 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  font-weight: 780;
}

.path-detail li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.inline-link {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--blue);
  font-weight: 950;
}

.price-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 5vw, 64px);
  background: var(--cream);
}

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

.price-grid div {
  padding: 22px;
  border: 1px solid rgba(23, 49, 54, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.price-grid span {
  display: block;
  color: var(--muted);
  font-weight: 820;
}

.price-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--coral);
  font-size: 2rem;
}

.visit {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: stretch;
  padding: 104px clamp(18px, 5vw, 68px);
}

.visit-copy {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.visit-copy .eyebrow {
  color: #a9ef59;
}

.visit-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.visit-steps {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.visit-steps div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.visit-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-weight: 950;
}

.visit-steps p {
  margin: 3px 0 0;
}

.support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
}

.support-item,
.testimonial-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(23, 49, 54, 0.08);
}

.support-item a,
.testimonial-grid a {
  color: var(--blue);
  font-weight: 900;
}

.testimonials {
  background: #ecf2f5;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.review-card {
  display: grid;
  align-content: center;
}

.review-card strong {
  color: var(--coral);
  font-size: 3rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 104px clamp(18px, 5vw, 68px);
}

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

.contact-grid a {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(23, 49, 54, 0.08);
}

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

.contact-grid strong {
  display: block;
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 68px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 920px;
  }

  .hero-inner {
    padding-bottom: 380px;
  }

  .quick-panel,
  .metrics,
  .split-proof,
  .path-layout,
  .path-detail,
  .price-strip,
  .visit,
  .support,
  .testimonial-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    right: 18px;
    left: 18px;
  }

  .quick-panel div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .quick-panel div:first-child {
    border-top: 0;
  }

  .price-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    min-height: 72px;
    padding-inline: 12px;
  }

  .brand img {
    width: 132px;
  }

  .brand span {
    display: none;
  }

  .lang button {
    min-width: 36px;
  }

  .round-call {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 1080px;
    padding-inline: 16px;
  }

  .hero-inner {
    padding-bottom: 430px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.32rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .metrics strong {
    font-size: 2.8rem;
  }

  .section,
  .visit,
  .contact {
    padding: 64px 16px;
  }

  .support {
    padding-top: 0;
  }

  footer {
    display: block;
  }
}
