:root {
  --bg: #f6faf8;
  --ink: #102018;
  --muted: #64736b;
  --panel: #ffffff;
  --line: #dfe9e4;
  --green: #19e66a;
  --teal: #0aa889;
  --sage: #dfeae2;
  --gold: #d8b76a;
  --dark: #050706;
  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;
  background:
    radial-gradient(circle at 76% 10%, rgba(25, 230, 106, 0.14), transparent 34rem),
    var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  margin: 12px auto 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(16, 32, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(16, 32, 24, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand small {
  color: var(--teal);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 32px;
  flex: none;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.btn,
.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 950;
  white-space: nowrap;
}

.btn.primary,
.nav-cta {
  background: var(--green);
  color: #041107;
  box-shadow: 0 18px 50px rgba(25, 230, 106, 0.18);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

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

.kicker {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.045em;
}

h2 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.home-hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 64px;
  padding: 82px 0 60px;
}

.care-visual {
  min-height: 430px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 45%, rgba(25, 230, 106, 0.22), transparent 16rem),
    linear-gradient(145deg, #fff, #edf6f1);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(16, 32, 24, 0.12);
}

.photo-visual {
  background: #eaf3ee;
}

.hero-photo,
.profile-photo,
.panel-photo {
  display: block;
  width: 100%;
  object-fit: cover;
}

.hero-photo {
  position: absolute;
  inset: 0;
  height: 100%;
}

.photo-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(246, 250, 248, 0.2)),
    radial-gradient(circle at 28% 24%, rgba(25, 230, 106, 0.16), transparent 18rem);
  pointer-events: none;
}

.pulse-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  left: calc(50% - 110px);
  top: 86px;
  border: 28px solid var(--green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 34px rgba(255, 255, 255, 0.8);
}

.pulse-ring::before,
.pulse-ring::after {
  content: "";
  position: absolute;
  background: var(--green);
  border-radius: 999px;
}

.pulse-ring::before {
  width: 36px;
  height: 118px;
  left: 64px;
  top: 22px;
}

.pulse-ring::after {
  width: 118px;
  height: 36px;
  left: 22px;
  top: 64px;
}

.care-card {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 24px;
  border: 1px solid rgba(10, 168, 137, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
}

.care-card span,
.clinic-panel span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.care-card strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.08;
}

.section {
  padding: 88px 0;
  border-top: 1px solid rgba(16, 32, 24, 0.08);
}

.niche-grid,
.demo-grid,
.plans,
.team-grid,
.pillars,
.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.niche-grid span,
.feature-band span,
.plans article,
.demo-card,
.team-grid article,
.pillars article,
.faq details,
.responsible-note {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.niche-grid span,
.feature-band span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  font-weight: 900;
}

.demo-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.demo-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -40% 15%;
  height: 190px;
  background: radial-gradient(circle, rgba(25, 230, 106, 0.24), transparent 65%);
}

.demo-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.demo-card h3 {
  margin: 16px 0 8px;
  font-size: 30px;
}

.demo-card p,
.plans p,
.faq p,
.responsible-note,
.pillars p {
  color: var(--muted);
  line-height: 1.55;
}

.demo-card strong {
  margin-top: 16px;
}

.plans article {
  padding: 28px;
}

.plans h3 {
  font-size: 28px;
}

.plans strong {
  display: block;
  margin: 18px 0;
  color: var(--teal);
  font-size: 25px;
}

.note {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
}

.basic {
  background: linear-gradient(180deg, #f7fbf8, #edf5f0);
}

.basic-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 50px;
  align-items: center;
  padding: 72px 0 54px;
}

.profile-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 32px 100px rgba(16, 32, 24, 0.1);
}

.profile-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--sage);
}

.profile-photo {
  height: 100%;
}

.avatar {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 32px;
  background: var(--sage);
  color: var(--teal);
  font-weight: 950;
  font-size: 30px;
}

.profile-card h2 {
  margin: 24px 0 8px;
  font-size: 34px;
}

.profile-card p,
.profile-card span {
  color: var(--muted);
}

.basic-services {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 34px;
  padding: 46px 0 54px;
  border-top: 1px solid rgba(16, 32, 24, 0.08);
}

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

.service-list span {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  font-weight: 900;
}

.feature-band {
  padding-bottom: 54px;
}

.faq {
  display: grid;
  gap: 12px;
  padding-bottom: 36px;
}

.faq details {
  padding: 20px 24px;
}

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

.faq p {
  margin: 14px 0 0;
}

.premium {
  background:
    radial-gradient(circle at 82% 12%, rgba(10, 168, 137, 0.16), transparent 34rem),
    #07110f;
  color: #f4f8f6;
}

.premium .topbar,
.elite .topbar {
  background: rgba(5, 7, 6, 0.86);
  border-color: rgba(255, 255, 255, 0.1);
}

.premium .topbar nav,
.elite .topbar nav {
  color: #f4f8f6;
}

.premium h1,
.premium h2,
.elite h1,
.elite h2 {
  color: #f4f8f6;
}

.premium-hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 430px;
  gap: 56px;
  align-items: center;
  padding: 76px 0 52px;
}

.clinic-panel {
  padding: 30px;
  border: 1px solid rgba(25, 230, 106, 0.24);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(25, 230, 106, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.04);
}

.panel-photo {
  height: 230px;
  margin-bottom: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.clinic-panel strong {
  display: block;
  margin: 14px 0 24px;
  font-size: 32px;
  line-height: 1.1;
}

.clinic-panel div {
  display: grid;
  gap: 10px;
}

.clinic-panel em {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #d6dfda;
  font-style: normal;
  font-weight: 900;
}

.premium-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 54px;
}

.premium-strip span {
  padding: 18px 20px;
  border: 1px solid rgba(25, 230, 106, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
}

.team-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 40px;
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.team-grid div {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(25, 230, 106, 0.14);
  color: var(--green);
  font-weight: 950;
}

.team-grid h3 {
  margin: 20px 0 6px;
  font-size: 23px;
}

.team-grid p {
  color: #a7b3ad;
}

.premium .faq details {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.elite {
  background: #050403;
  color: #f6f0e5;
}

.elite .kicker,
.elite .brand small {
  color: var(--gold);
}

.elite .btn.primary {
  background: var(--gold);
}

.elite-hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.58), rgba(5, 4, 3, 0.22)),
    radial-gradient(circle at 76% 34%, rgba(216, 183, 106, 0.17), transparent 30rem),
    var(--hero-image),
    #050403;
  background-position: center;
  background-size: cover;
}

.elite-hero h1,
.elite-manifest h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.elite-hero p {
  max-width: 660px;
  color: #bcb3a2;
  font-size: 22px;
  line-height: 1.55;
}

.elite-manifest {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  padding: 90px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.journey {
  display: grid;
  gap: 12px;
}

.journey span {
  padding: 18px;
  border: 1px solid rgba(216, 183, 106, 0.24);
  border-radius: 18px;
  background: rgba(216, 183, 106, 0.055);
  color: #d9d0bf;
  font-weight: 900;
}

.journey strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}

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

.pillars article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(216, 183, 106, 0.16);
}

.pillars h3 {
  color: #f6f0e5;
  font-size: 23px;
}

.responsible-note {
  margin: 0 0 70px;
  padding: 18px 20px;
}

.premium .responsible-note,
.elite .responsible-note {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(16, 32, 24, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer div:first-child {
  display: grid;
  gap: 7px;
}

.footer strong {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.premium .footer strong,
.elite .footer strong {
  color: #f4f8f6;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-actions a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 168, 137, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.premium .footer-actions a,
.elite .footer-actions a {
  border-color: rgba(25, 230, 106, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #f4f8f6;
}

.footer-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(25, 230, 106, 0.58);
  background: rgba(25, 230, 106, 0.12);
}

.footer-actions svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.premium .footer,
.elite .footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 920px) {
  .topbar nav a:not(.nav-cta) {
    display: none;
  }

  .home-hero,
  .basic-hero,
  .basic-services,
  .premium-hero,
  .team-section,
  .elite-manifest {
    grid-template-columns: 1fr;
  }

  .niche-grid,
  .demo-grid,
  .plans,
  .team-grid,
  .pillars,
  .feature-band,
  .premium-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    width: min(100% - 20px, 1180px);
    border-radius: 26px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    height: 28px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 33px;
  }

  .lead {
    font-size: 18px;
  }

  .footer {
    flex-direction: column;
  }
}
