:root {
  --night: #0c111b;
  --night-soft: #121925;
  --panel: #18202d;
  --panel-light: #202a38;
  --ink: #f7f4ed;
  --muted: #aeb7c2;
  --dark-text: #17201e;
  --lime: #b9e873;
  --lime-strong: #a8d960;
  --card-lime: #c8ff55;
  --violet: #aaa4c9;
  --cyan: #94c9c5;
  --coral: #d9967d;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(18, 23, 37, 0.12);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  --radius-lg: 32px;
  --radius-md: 22px;
  --page: min(1200px, calc(100% - 40px));
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Space Grotesk", "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--night);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7.2vw, 7.2rem);
}

h1 em {
  display: block;
  color: var(--lime);
  font-style: normal;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  width: 100%;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(20px, calc((100% - 1200px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(9, 13, 24, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--dark-text);
  background: var(--lime);
  box-shadow: 0 0 34px rgba(200, 255, 85, 0.22);
  font-size: 0.86rem;
  letter-spacing: -0.04em;
}

.brand-name {
  display: grid;
  gap: 4px;
}

.brand small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #dbe0ea;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--lime);
}

.site-nav .nav-cta {
  padding: 12px 19px;
  border-radius: 999px;
  color: var(--dark-text);
  background: var(--lime);
}

.site-nav .nav-cta:hover {
  color: var(--dark-text);
  background: var(--lime-strong);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  width: var(--page);
  min-height: calc(100svh - 80px);
  grid-template-columns: minmax(0, 1.36fr) minmax(350px, 0.64fr);
  gap: clamp(45px, 7vw, 90px);
  align-items: center;
  margin-inline: auto;
  padding: clamp(60px, 8vw, 110px) 0 74px;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 0;
  right: -22vw;
  bottom: 0;
  left: -22vw;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, black 40%, transparent);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-one {
  top: 4%;
  left: -18%;
  width: 440px;
  height: 440px;
  background: rgba(130, 151, 170, 0.13);
}

.hero-glow-two {
  right: -15%;
  bottom: 6%;
  width: 360px;
  height: 360px;
  background: rgba(131, 180, 169, 0.11);
}

.eyebrow,
.kicker,
.card-kicker {
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(200, 255, 85, 0.11);
}

.hero-intro {
  max-width: 720px;
  margin-bottom: 32px;
  color: #c7ceda;
  font-size: clamp(1.06rem, 1.7vw, 1.27rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-lime {
  color: var(--dark-text);
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(200, 255, 85, 0.16);
}

.button-lime:hover {
  background: var(--lime-strong);
  box-shadow: 0 18px 40px rgba(200, 255, 85, 0.24);
}

.button-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}

.button-dark {
  color: var(--ink);
  background: var(--dark-text);
}

.button-dark:hover {
  background: #252c3e;
}

.hero-trust {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.hero-trust div {
  display: grid;
  gap: 3px;
  padding: 20px 22px 0 0;
}

.hero-trust strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.hero-trust span {
  color: var(--muted);
  font-size: 0.74rem;
}

.hero-price-card {
  position: relative;
  padding: clamp(28px, 4vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(200, 255, 85, 0.4);
  border-radius: var(--radius-lg);
  color: var(--dark-text);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.3), transparent 36%),
    var(--card-lime);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.38),
    0 0 80px rgba(200, 255, 85, 0.08);
  transform: rotate(1deg);
}

.hero-price-card::after {
  position: absolute;
  right: -48px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(18, 23, 37, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(18, 23, 37, 0.04),
    0 0 0 48px rgba(18, 23, 37, 0.03);
  content: "";
  pointer-events: none;
}

.price-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.price-pill {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--dark-text);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 800;
}

.availability-dot::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16784f;
  box-shadow: 0 0 0 5px rgba(22, 120, 79, 0.12);
  content: "";
}

.package-name {
  margin-bottom: 7px;
  color: var(--dark-text);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-price span,
.hero-price small {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-price strong {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.price-summary {
  max-width: 420px;
  margin-bottom: 26px;
  color: rgba(18, 23, 37, 0.75);
  font-size: 0.9rem;
}

.hero-checks,
.compact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-checks {
  margin-bottom: 30px;
}

.hero-checks li,
.compact-list li {
  position: relative;
  padding-left: 27px;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-checks li::before,
.compact-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  font-size: 0.66rem;
  font-weight: 900;
}

.hero-checks li::before {
  color: var(--lime);
  background: var(--dark-text);
}

.hero-price-card .button {
  position: relative;
  z-index: 1;
  width: 100%;
}

.price-footnote {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: rgba(18, 23, 37, 0.65);
  font-size: 0.69rem;
  font-weight: 700;
  text-align: center;
}

.attention-strip {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--night-soft);
}

.attention-strip div {
  padding: 20px;
  border-right: 1px solid var(--line);
  color: #dce1eb;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.attention-strip div:last-child {
  border-right: 0;
}

.attention-strip span {
  margin-right: 8px;
  color: var(--lime);
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(82px, 11vw, 140px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  font-size: 1.04rem;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: end;
}

.split-heading > p {
  padding-bottom: 10px;
}

.decision-section {
  width: 100%;
  padding-right: max(20px, calc((100% - 1200px) / 2));
  padding-left: max(20px, calc((100% - 1200px) / 2));
  color: var(--dark-text);
  background: #f3f0e9;
}

.decision-section p {
  color: #596171;
}

.decision-section .kicker,
.decision-section .card-kicker {
  color: #4f756c;
}

.decision-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.decision-card {
  min-height: 340px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(18, 23, 37, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.decision-card h3 {
  max-width: 390px;
}

.decision-card > p:not(.card-kicker) {
  max-width: 440px;
}

.decision-featured {
  grid-row: span 2;
  min-height: 690px;
  background:
    linear-gradient(150deg, rgba(121, 163, 151, 0.17), transparent 45%),
    var(--white);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 70px;
  border-radius: 50%;
  color: var(--white);
  background: #4f756c;
  font-size: 0.72rem;
  font-weight: 900;
}

.mini-interface {
  display: grid;
  gap: 12px;
  margin-top: 70px;
  padding: 22px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--night);
  transform: rotate(-2deg);
}

.mini-interface > span {
  width: 54px;
  height: 8px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--lime);
}

.mini-interface strong {
  width: fit-content;
  color: #cbd2de;
  font-size: 0.86rem;
}

.mini-interface b {
  width: fit-content;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--dark-text);
  background: var(--lime);
  font-size: 0.76rem;
}

.decision-accent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: var(--night);
}

.decision-accent .compact-list li {
  color: #e0e5ed;
}

.decision-accent .compact-list li::before {
  color: var(--dark-text);
  background: var(--lime);
}

.psychology-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.attention-path {
  border-top: 1px solid var(--line);
}

.attention-path article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.attention-path article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--lime);
  font-weight: 900;
}

.attention-path strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.attention-path p {
  margin-bottom: 0;
}

.process-section {
  width: 100%;
  padding-right: max(20px, calc((100% - 1200px) / 2));
  padding-left: max(20px, calc((100% - 1200px) / 2));
  background: #edf0e9;
}

.process-shell {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(55px, 9vw, 130px);
  color: var(--dark-text);
}

.process-shell .kicker {
  color: #4f756c;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(18, 23, 37, 0.22);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(18, 23, 37, 0.22);
}

.process-list li > span {
  font-size: 0.72rem;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.process-list p {
  max-width: 550px;
  margin-bottom: 0;
  color: rgba(18, 23, 37, 0.7);
  font-size: 0.9rem;
}

.process-list li > b {
  padding: 8px 10px;
  border: 1px solid rgba(18, 23, 37, 0.2);
  border-radius: 999px;
  font-size: 0.64rem;
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.pricing-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.main-package {
  display: grid;
  grid-row: span 2;
  min-height: 700px;
  grid-template-rows: auto auto 1fr auto;
  background:
    radial-gradient(circle at 95% 8%, rgba(155, 140, 255, 0.2), transparent 34%),
    var(--panel);
}

.main-package > div:first-child p:last-child {
  max-width: 580px;
}

.price-lockup {
  display: grid;
  margin: 28px 0 38px;
}

.price-lockup span,
.price-lockup small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-lockup strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.main-package .compact-list {
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 15px 24px;
  margin-bottom: 40px;
}

.main-package .compact-list li {
  color: #e1e5ed;
}

.main-package .compact-list li::before {
  color: var(--dark-text);
  background: var(--lime);
}

.main-package .button {
  width: 100%;
}

.care-package {
  min-height: 390px;
  background:
    radial-gradient(circle at 100% 100%, rgba(148, 201, 197, 0.16), transparent 40%),
    var(--panel-light);
}

.care-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.care-top > span {
  height: fit-content;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
}

.care-price {
  margin: 28px 0 18px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.care-price span {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.text-link {
  color: var(--lime);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.honesty-card {
  min-height: 290px;
  color: var(--dark-text);
  background: #dce7e2;
}

.honesty-card .card-kicker {
  color: #4f756c;
}

.honesty-card p:last-child {
  color: rgba(18, 23, 37, 0.74);
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.about-title {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.about-monogram {
  display: grid;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 22px;
  color: var(--dark-text);
  background: #dce7e2;
  font-family: var(--font-display);
  font-weight: 700;
  transform: rotate(-5deg);
}

.about-copy {
  max-width: 590px;
}

.about-copy > strong {
  display: inline-block;
  margin-top: 8px;
  color: var(--lime);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(45px, 9vw, 120px);
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #e8ebf1;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--lime);
  font-size: 1.35rem;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 640px;
  padding: 0 40px 25px 0;
}

.contact-section {
  display: grid;
  width: var(--page);
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 100px);
  margin-inline: auto;
  margin-bottom: 34px;
  padding: clamp(44px, 7vw, 80px);
  overflow: hidden;
  border-radius: 38px;
  color: var(--dark-text);
  background:
    radial-gradient(circle at 5% 95%, rgba(148, 201, 197, 0.34), transparent 34%),
    #e7ebe4;
}

.contact-copy .kicker {
  color: #4f756c;
}

.contact-copy h2 {
  font-size: clamp(2.8rem, 5.3vw, 5.3rem);
}

.contact-copy > p {
  color: rgba(18, 23, 37, 0.72);
}

.contact-details {
  display: grid;
  gap: 5px;
  margin-top: 34px;
}

.contact-details a {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-details span {
  color: rgba(18, 23, 37, 0.65);
  font-size: 0.8rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(25px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--night);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #dfe4ed;
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-form label small {
  color: var(--muted);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: var(--panel);
}

.contact-form input {
  height: 51px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 255, 85, 0.12);
}

.form-button {
  width: 100%;
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.7rem;
  text-align: center;
}

footer {
  display: grid;
  width: var(--page);
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: center;
  margin-inline: auto;
  padding: 45px 0 26px;
  border-top: 1px solid var(--line);
}

footer > p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #cbd1dc;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mobile-cta {
  display: none;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 74px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .hero,
  .split-heading,
  .psychology-section,
  .process-shell,
  .about-section,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 50px;
    padding-top: 68px;
  }

  .hero-price-card {
    max-width: 650px;
    transform: none;
  }

  .decision-grid {
    grid-template-columns: 1fr 1fr;
  }

  .decision-featured {
    grid-row: auto;
    min-height: 480px;
  }

  .psychology-section .section-heading,
  .faq-section .section-heading {
    margin-bottom: 0;
  }

  .process-list li {
    grid-template-columns: 54px 1fr;
  }

  .process-list li > b {
    grid-column: 2;
    width: fit-content;
  }

  .contact-section {
    padding: clamp(32px, 6vw, 60px);
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --page: min(100% - 28px, 1200px);
  }

  body {
    padding-bottom: 76px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 54px 0 64px;
  }

  .hero-actions,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .hero-trust div {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-price-card {
    padding: 25px;
    border-radius: 24px;
  }

  .price-card-top {
    align-items: flex-start;
  }

  .availability-dot {
    margin-top: 5px;
  }

  .attention-strip {
    grid-template-columns: 1fr 1fr;
  }

  .attention-strip div:nth-child(2) {
    border-right: 0;
  }

  .attention-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 78px 0;
  }

  .decision-section,
  .process-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .decision-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .decision-card,
  .decision-featured,
  .main-package,
  .care-package,
  .honesty-card {
    min-height: 0;
  }

  .decision-featured {
    grid-row: auto;
  }

  .card-icon,
  .mini-interface {
    margin-bottom: 30px;
  }

  .main-package {
    grid-row: auto;
  }

  .main-package .compact-list {
    grid-template-columns: 1fr;
  }

  .about-title {
    display: grid;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 0.98rem;
  }

  .contact-section {
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-cta {
    position: fixed;
    z-index: 60;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 10px 9px 17px;
    border: 1px solid rgba(200, 255, 85, 0.4);
    border-radius: 18px;
    background: rgba(15, 21, 35, 0.96);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
  }

  .mobile-cta > div {
    display: grid;
    line-height: 1.1;
  }

  .mobile-cta span {
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 700;
  }

  .mobile-cta strong {
    color: var(--lime);
    font-family: var(--font-display);
    font-size: 1.25rem;
  }

  .mobile-cta > a {
    padding: 11px 15px;
    border-radius: 12px;
    color: var(--dark-text);
    background: var(--lime);
    font-size: 0.77rem;
    font-weight: 900;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: reveal-up 600ms ease both;
  }

  .hero-price-card {
    animation: reveal-card 720ms 100ms ease both;
  }

  .availability-dot::before {
    animation: status-pulse 2.2s ease-out infinite;
  }

  @keyframes reveal-up {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes reveal-card {
    from {
      opacity: 0;
      transform: translateY(28px) rotate(1deg);
    }
    to {
      opacity: 1;
      transform: translateY(0) rotate(1deg);
    }
  }

  @keyframes status-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(22, 120, 79, 0.35);
    }
    70% {
      box-shadow: 0 0 0 9px rgba(22, 120, 79, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(22, 120, 79, 0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
