@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --teal-900: #064e4f;
  --teal-700: #0b6e6e;
  --teal-500: #14919b;
  --mint-200: #c8efe6;
  --mint-100: #e8f7f3;
  --coral-500: #ff6b4a;
  --coral-600: #e85a3c;
  --ink-900: #122326;
  --ink-700: #2f4346;
  --ink-500: #5a6f72;
  --sand-50: #f4faf8;
  --white: #ffffff;
  --line: rgba(11, 110, 110, 0.14);
  --shadow-soft: 0 18px 48px rgba(6, 78, 79, 0.1);
  --radius-lg: 28px;
  --radius-md: 16px;
  --max: 1160px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background:
    radial-gradient(circle at 12% -10%, rgba(200, 239, 230, 0.9), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(255, 107, 74, 0.12), transparent 36%),
    linear-gradient(180deg, #f7fcfb 0%, var(--sand-50) 48%, #eef7f5 100%);
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.topbar {
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 0;
  text-align: center;
}

.topbar__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--mint-200);
  white-space: nowrap;
}

.topbar__label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.topbar__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 3;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--teal-500), var(--teal-900));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(11, 110, 110, 0.28);
  flex-shrink: 0;
}

.brand__mark svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--teal-900);
}

.brand__tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal-900);
  border-radius: 2px;
  position: relative;
  transition: background 0.2s ease;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--teal-900);
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav__toggle span::before {
  top: -6px;
}

.nav__toggle span::after {
  top: 6px;
}

.nav__toggle.is-open span {
  background: transparent;
}

.nav__toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-700);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--teal-700);
  background: var(--mint-100);
}

.nav__cta {
  margin-left: 0.35rem;
  background: var(--coral-500) !important;
  color: #fff !important;
}

.nav__cta:hover {
  background: var(--coral-600) !important;
  color: #fff !important;
}

.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 78, 79, 0.88) 0%, rgba(6, 78, 79, 0.62) 42%, rgba(6, 78, 79, 0.28) 72%, rgba(6, 78, 79, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 78, 79, 0.55) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  max-width: 640px;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero__brand span {
  color: var(--mint-200);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.hero__lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 38ch;
  margin-bottom: 1.6rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--coral-500);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 107, 74, 0.35);
}

.btn--primary:hover {
  background: var(--coral-600);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn--solid {
  background: var(--teal-700);
  color: #fff;
}

.btn--solid:hover {
  background: var(--teal-900);
}

.btn--outline {
  background: transparent;
  color: var(--teal-700);
  border: 1.5px solid rgba(11, 110, 110, 0.35);
}

.btn--outline:hover {
  background: var(--mint-100);
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 0.7rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--teal-900);
  margin-bottom: 0.9rem;
  max-width: 18ch;
}

.section__lead {
  color: var(--ink-700);
  font-size: 1.05rem;
  max-width: 58ch;
  margin-bottom: 2rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.intro-copy p + p {
  margin-top: 1rem;
}

.intro-panel {
  background: linear-gradient(160deg, var(--teal-700), var(--teal-900));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-soft);
}

.intro-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.intro-panel li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.98rem;
}

.intro-panel li:first-child {
  border-top: 0;
  padding-top: 0;
}

.intro-panel .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral-500);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.habits {
  background:
    linear-gradient(180deg, rgba(232, 247, 243, 0.7), rgba(244, 250, 248, 0.2));
  border-block: 1px solid var(--line);
}

.habit-list {
  display: grid;
  gap: 1.25rem;
}

.habit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.habit-item:last-child {
  border-bottom: 0;
}

.habit-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--coral-500);
  line-height: 1;
  min-width: 2.2rem;
}

.habit-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--teal-900);
  margin-bottom: 0.35rem;
}

.habit-item p {
  color: var(--ink-700);
  max-width: 70ch;
}

.approach {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.approach__item {
  padding-top: 1rem;
  border-top: 3px solid var(--teal-500);
}

.approach__item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--teal-900);
  margin: 0.85rem 0 0.55rem;
  letter-spacing: -0.02em;
}

.approach__item p {
  color: var(--ink-700);
  font-size: 0.98rem;
}

.pathway {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.pathway-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal-900);
  margin-bottom: 0.4rem;
}

.pathway-item p {
  color: var(--ink-700);
  font-size: 0.98rem;
}

.pathway-item a {
  color: var(--teal-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 107, 74, 0.22), transparent 40%),
    linear-gradient(135deg, var(--teal-700), var(--teal-900));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.site-footer {
  margin-top: 2rem;
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.footer-brand .brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.footer-brand .brand__mark svg {
  width: 20px;
  height: 20px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
}

.site-footer p {
  max-width: 36ch;
  font-size: 0.95rem;
}

.site-footer h4 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.site-footer .footer-links {
  display: grid;
  gap: 0.45rem;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-footer .footer-links a:hover {
  color: var(--mint-200);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.nav-overlay {
  display: none;
}

.page-hero {
  padding: clamp(2.8rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 107, 74, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(200, 239, 230, 0.55), transparent 70%);
  border-bottom: 1px solid var(--line);
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 0.7rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--teal-900);
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.page-hero p {
  color: var(--ink-700);
  font-size: 1.08rem;
  max-width: 58ch;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing: -0.02em;
  color: var(--teal-900);
  margin: 2rem 0 0.75rem;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal-900);
  margin: 1.5rem 0 0.55rem;
}

.prose p,
.prose li {
  color: var(--ink-700);
  margin-bottom: 0.9rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose a {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose .meta {
  font-size: 0.92rem;
  color: var(--ink-500);
  margin-bottom: 1.5rem;
}

.content-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: start;
}

.side-card {
  background: linear-gradient(160deg, var(--teal-700), var(--teal-900));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 1.25rem;
}

.side-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.side-card p,
.side-card li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}

.side-card ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.side-card li {
  padding-left: 0.9rem;
  border-left: 3px solid var(--coral-500);
}

.guide-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.guide-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
}

.guide-step span {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral-500);
  margin-bottom: 0.35rem;
}

.guide-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal-900);
  margin-bottom: 0.4rem;
}

.guide-step p {
  color: var(--ink-700);
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1.05rem 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--teal-900);
}

.faq-item button::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--teal-500);
  flex-shrink: 0;
}

.faq-item.is-open button::after {
  content: "–";
}

.faq-item__body {
  display: none;
  padding: 0 1.2rem 1.15rem;
  color: var(--ink-700);
}

.faq-item.is-open .faq-item__body {
  display: block;
}

.assess-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
  max-width: 820px;
}

.assess-field {
  margin-bottom: 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.assess-field:last-of-type {
  border-bottom: 0;
  margin-bottom: 1rem;
  padding-bottom: 0;
}

.assess-field legend,
.assess-field > p {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.assess-options {
  display: grid;
  gap: 0.55rem;
}

.assess-options label {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.assess-options label:hover {
  border-color: rgba(11, 110, 110, 0.35);
  background: var(--mint-100);
}

.assess-options input {
  margin-top: 0.2rem;
  accent-color: var(--teal-700);
}

.assess-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.assess-result {
  display: none;
  margin-top: 1.5rem;
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--mint-100), #fff);
  border: 1px solid var(--line);
}

.assess-result.is-visible {
  display: block;
}

.assess-result h3 {
  font-family: var(--font-display);
  color: var(--teal-900);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.assess-result p {
  color: var(--ink-700);
  margin-bottom: 0.75rem;
}

.assess-score {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral-500);
  margin-bottom: 0.35rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.team-card {
  border-top: 3px solid var(--teal-500);
  padding-top: 1rem;
}

.team-card h3 {
  font-family: var(--font-display);
  color: var(--teal-900);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.team-card p {
  color: var(--ink-700);
  font-size: 0.96rem;
}

@media (max-width: 980px) {
  .intro-grid,
  .approach,
  .pathway-grid,
  .footer-grid,
  .cta-band,
  .content-split,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

  .page-hero h1 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(6, 78, 79, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 20;
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links a {
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .nav__cta {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(6, 78, 79, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 15;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-header {
    position: relative;
    z-index: 30;
  }
}

.landing-check {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem) 1rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 239, 230, 0.95), transparent 40%),
    radial-gradient(circle at 88% 18%, rgba(255, 107, 74, 0.14), transparent 34%),
    linear-gradient(180deg, #f7fcfb 0%, var(--sand-50) 55%, #eef7f5 100%);
}

.landing-check__inner {
  width: min(100%, 720px);
  text-align: center;
}

.landing-check__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 5.2vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  color: var(--teal-900);
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.landing-check__media {
  margin: 0 auto 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.landing-check__media img {
  width: 100%;
  height: auto;
  display: block;
}

.landing-check__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  background: var(--coral-500);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 12px 28px rgba(255, 107, 74, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.landing-check__btn:hover {
  background: var(--coral-600);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .topbar__inner {
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.65rem 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(6, 78, 79, 0.55) 0%, rgba(6, 78, 79, 0.78) 55%, rgba(6, 78, 79, 0.9) 100%);
  }

  .hero__content {
    max-width: none;
  }

  .hero__title {
    max-width: none;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section__title {
    max-width: none;
  }

  .cta-band__actions {
    width: 100%;
  }

  .cta-band__actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
