:root {
  --bg: #fbf4f0;
  --paper: #fffdfb;
  --rose-50: #fcf0ef;
  --rose-100: #f2dad7;
  --rose-300: #cf9795;
  --rose-500: #a85f62;
  --peach-100: #fde6d8;
  --peach-300: #eba476;
  --peach-500: #ce7453;
  --sage: #596b52;
  --sage-soft: #eef1e8;
  --lavender: #857da7;
  --champagne: #caa66a;
  --charcoal: #2b2525;
  --taupe: #7a6863;
  --ink: #282120;
  --muted: #766662;
  --line: rgba(84, 63, 56, .12);
  --shadow: 0 26px 70px rgba(64, 44, 39, .13);
  --radius: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(168, 95, 98, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .2)),
    radial-gradient(circle at top left, rgba(240, 190, 172, .45), transparent 30rem),
    linear-gradient(180deg, #fff8f5 0%, #f5e8ef 100%);
  background-size: 72px 72px, auto, auto, auto;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

ul {
  margin: 0;
  padding-left: 1.1rem;
}

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.inline-icon,
.text-icon {
  display: inline-grid;
  place-items: center;
  vertical-align: -.16em;
  color: var(--rose-500);
}

.inline-icon {
  width: 1.35em;
  height: 1.35em;
  margin-right: .42em;
  padding: .2em;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 0 0 1px var(--line);
}

.text-icon {
  width: 1em;
  height: 1em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100vw - 28px));
  margin: 14px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(168, 95, 98, .18);
  border-radius: 999px;
  background: rgba(255, 253, 251, .9);
  box-shadow: 0 16px 42px rgba(64, 44, 39, .1);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 900;
  color: var(--rose-500);
  letter-spacing: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a,
.mobile-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  background: var(--rose-50);
  color: var(--rose-500);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--rose-50);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--rose-500);
}

.mobile-nav {
  position: fixed;
  top: 76px;
  left: 14px;
  right: 14px;
  z-index: 19;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 253, 251, .96);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.section {
  position: relative;
  min-height: 100svh;
  padding: 86px 0;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 26px auto auto 50%;
  width: min(460px, 65vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(202, 166, 106, .42), transparent);
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 28px;
  width: var(--container);
  margin: -64px auto 0;
  padding-top: 126px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(202, 166, 106, .22);
  background: rgba(255, 247, 241, .86);
  color: var(--rose-500);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
.section h2,
.section h3,
.section-title,
.hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--rose-500);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(1.9rem, 4.65vw, 3.65rem);
}

.lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: #4d4240;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.35;
}

.script-note {
  margin: 30px 0 18px;
  color: var(--rose-500);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.55vw, 2.15rem);
  font-style: italic;
}

.script-note::after {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--champagne), transparent);
}

.starter-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 470px;
}

.soft-card {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 253, 251, .94), rgba(252, 240, 239, .74));
  box-shadow: 0 18px 48px rgba(64, 44, 39, .09);
  text-align: left;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 50%;
  background: #fff;
  color: var(--rose-500);
  box-shadow: inset 0 0 0 1px rgba(202, 166, 106, .24);
}

.soft-card h2 {
  margin: 8px 0 5px;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.soft-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.hero__scene {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 650px;
}

.hero__scene::before {
  display: none;
}

.hero__scene img {
  width: min(100%, 720px);
  height: auto;
  margin-left: auto;
  border-radius: 28px;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgba(64, 44, 39, .12));
}

.book,
.perfume,
.lipstick,
.cream,
.coffee {
  position: absolute;
  box-shadow: 0 24px 50px rgba(83, 54, 46, .18);
}

.book {
  top: 6%;
  left: 12%;
  display: grid;
  place-items: center;
  width: min(43vw, 360px);
  aspect-ratio: 4 / 5.4;
  border-radius: 18px 28px 28px 18px;
  background: linear-gradient(110deg, #e9bba7 0 11%, #f4cdbf 12% 100%);
  color: #b16f5d;
  font-size: 1.55rem;
  font-weight: 600;
  text-align: center;
  transform: rotate(-8deg);
  letter-spacing: .2em;
}

.perfume {
  top: 10%;
  right: 18%;
  width: 92px;
  height: 180px;
  border: 10px solid rgba(185, 142, 86, .58);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .65), rgba(232, 194, 124, .4));
  transform: rotate(16deg);
}

.perfume::before {
  content: "";
  position: absolute;
  top: -54px;
  left: 22px;
  width: 34px;
  height: 48px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(90deg, #d6aa5f, #f6e0a8, #b37b2f);
}

.lipstick {
  right: 12%;
  top: 38%;
  width: 52px;
  height: 166px;
  border-radius: 28px;
  background: linear-gradient(180deg, #c87573 0 24%, #e5bd75 25% 66%, #a9702b 67% 100%);
  transform: rotate(12deg);
}

.cream {
  left: 24%;
  bottom: 10%;
  display: grid;
  place-items: center;
  width: 190px;
  height: 130px;
  border-radius: 24px 24px 38px 38px;
  background: linear-gradient(180deg, #d8b368 0 28%, #f8dfd5 29% 100%);
  color: #a87868;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  transform: rotate(-4deg);
}

.coffee {
  right: 2%;
  bottom: 4%;
  width: 176px;
  aspect-ratio: 1;
  border: 18px solid #fff;
  border-radius: 50%;
  background: radial-gradient(circle, #bf9465 0 52%, #eee0d4 54% 100%);
}

.coffee::after {
  content: "";
  position: absolute;
  right: -52px;
  top: 38px;
  width: 70px;
  height: 74px;
  border: 14px solid #fff;
  border-left: 0;
  border-radius: 0 50% 50% 0;
}

.mentor {
  background:
    linear-gradient(120deg, rgba(255,255,255,.78), rgba(246, 232, 239, .82)),
    #f0e5ef;
}

.mentor__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: center;
  gap: 44px;
}

.mentor__text {
  font-size: clamp(.98rem, 1.18vw, 1.18rem);
  line-height: 1.5;
  padding: clamp(22px, 3.4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 251, .62);
  box-shadow: var(--shadow);
}

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

.video-callout {
  margin: 34px 0;
  padding: 26px;
  border: 1px solid rgba(202, 166, 106, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(252, 240, 239, .72));
  box-shadow: 0 16px 40px rgba(64, 44, 39, .08);
}

.video-callout ul,
.choice-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.video-callout li,
.choice-copy li {
  position: relative;
  padding-left: 34px;
}

.video-callout li::before,
.choice-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .32em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--rose-500) 0 3px, transparent 3.5px),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(253,230,216,.9));
  box-shadow:
    inset 0 0 0 1px rgba(202, 166, 106, .34),
    0 8px 18px rgba(168, 95, 98, .12);
}

.youtube-link {
  display: inline-grid;
  place-items: center;
  margin-top: 18px;
  color: var(--charcoal);
}

.play-icon {
  position: relative;
  display: block;
  width: 96px;
  height: 66px;
  border-radius: 18px;
  background: #f5313b;
  box-shadow: 0 16px 34px rgba(239, 48, 56, .22);
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 18px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #fff;
}

.mentor__portrait {
  min-height: 620px;
  border-radius: 49% 51% 47% 53% / 38% 38% 62% 62%;
  background:
    linear-gradient(rgba(255,255,255,.03), rgba(255,255,255,.03)),
    url("canva-pages/page-2.png") right center / auto 100% no-repeat;
  border: 10px solid rgba(255, 253, 251, .78);
  box-shadow: var(--shadow);
}

.growth {
  background: linear-gradient(180deg, #fffaf3 0%, #fff5ef 100%);
}

.section-title {
  margin-bottom: 82px;
  color: #405a36;
  font-size: clamp(2rem, 4.7vw, 4.3rem);
  text-align: center;
}

.key-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.key-card {
  position: relative;
  min-height: 285px;
  padding: 34px 36px 26px 160px;
  border: 1px solid rgba(83, 105, 69, .14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f6f7f1, var(--sage-soft));
  box-shadow: 0 18px 48px rgba(64, 44, 39, .08);
}

.key-card:nth-child(2),
.key-card:nth-child(3) {
  background: linear-gradient(145deg, #fffdf9, #fff3e9);
}

.key-icon {
  position: absolute;
  top: 50px;
  left: 38px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  padding: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #526947, #768865);
  color: #fff;
  box-shadow: 0 14px 30px rgba(63, 87, 52, .18);
}

.key-number {
  position: absolute;
  top: 36px;
  left: 100px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5f7651, #93a979);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

.key-card h3 {
  margin: 0 0 12px;
  color: #405a36;
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  line-height: 1.1;
}

.key-card .key-number + h3 {
  padding-left: 0;
}

.key-card p,
.key-card li {
  font-size: 1.03rem;
  font-weight: 600;
}

.action {
  margin-top: 18px;
  color: #587448;
  font-weight: 900;
}

.ribbon,
.choice-title {
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 16px 34px;
  border: 1px solid rgba(202, 166, 106, .24);
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, #ffe7d9);
  color: #51413d;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  text-align: center;
}

.ribbon {
  font-weight: 600;
}

.privileges,
.choice,
.tools {
  background: linear-gradient(180deg, #f2e8ee, #f8eef1);
}

.privilege-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
}

.benefit-panel {
  position: relative;
  padding: 52px 42px 34px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.benefit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, .1));
}

.benefit-panel--blue {
  background: linear-gradient(135deg, rgba(218, 238, 238, .92), rgba(251, 254, 252, .94));
}

.benefit-panel--pink {
  background: linear-gradient(135deg, rgba(245, 226, 237, .92), rgba(255, 249, 250, .96));
}

.benefit-panel > * {
  position: relative;
  z-index: 1;
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  min-width: 142px;
  max-width: 160px;
  min-height: 74px;
  padding: 14px 18px;
  border-radius: 0 24px 0 24px;
  background: linear-gradient(135deg, var(--lavender), #a99fcf);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.16;
  text-align: center;
}

.benefit-panel h2 {
  max-width: 75%;
  margin: 0 0 36px;
  color: var(--lavender);
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.05;
}

.benefit-list {
  display: grid;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 13px;
}

.benefit-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  color: var(--rose-500);
  font-weight: 900;
  text-align: center;
}

.benefit-list span svg {
  width: 24px;
  height: 24px;
}

.benefit-list p {
  margin: 0;
  font-size: 1rem;
}

.fineprint {
  margin: 34px 0 0;
  font-style: italic;
  font-weight: 600;
}

.choice-title {
  margin-top: 118px;
  display: block;
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  color: #080808;
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.comparison {
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(202, 166, 106, .22);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf9, #fff5ee);
  box-shadow: var(--shadow);
}

.comparison h2 {
  margin: 0;
  color: #3a1f16;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  line-height: 1.05;
}

.subhead {
  color: var(--peach-500);
  font-weight: 900;
}

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

.comparison-col {
  overflow: hidden;
  border: 1px solid #f1ddd4;
  border-radius: 18px;
  background: #fff;
}

.comparison-col h3 {
  margin: 0;
  padding: 16px;
  color: #754735;
  background: #fff0e6;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.comparison-col--partner h3 {
  color: #fff;
  background: var(--peach-500);
}

.comparison-col dl {
  margin: 0;
}

.comparison-col dl > div {
  display: grid;
  grid-template-columns: minmax(78px, .38fr) 1fr;
  min-height: 72px;
  border-top: 1px solid #f1ddd4;
}

.comparison-col dt,
.comparison-col dd {
  display: grid;
  align-items: center;
  margin: 0;
  padding: 10px 8px;
  font-size: .8rem;
  font-weight: 700;
  text-align: center;
}

.comparison-col dt {
  color: #7f4f3c;
  background: #fff7ef;
  font-size: .76rem;
  text-transform: uppercase;
}

.comparison-footer {
  margin: 18px 0 0;
  padding: 14px;
  border-radius: 18px;
  background: #fff1df;
  color: #7f4f3c;
  text-align: center;
}

.choice-copy {
  width: 100%;
  max-width: none;
  margin-top: 10px;
  font-size: clamp(1.08rem, 2vw, 1.68rem);
  line-height: 1.48;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 251, .68);
  box-shadow: var(--shadow);
  text-align: left;
}

.choice-copy h3 {
  margin: 34px 0 8px;
  font-size: 1em;
}

.plans {
  background: linear-gradient(180deg, #fff7f0, #fbefe8);
  padding: 26px 0;
}

.plans-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100vw - 20px));
  margin: 0 auto;
}

.plan-card,
.brand-plan {
  border: 1px solid rgba(202, 166, 106, .18);
  border-radius: 24px;
  background: rgba(255, 253, 251, .9);
  box-shadow: 0 18px 48px rgba(64, 44, 39, .1);
}

.plan-card {
  padding: 22px;
}

.plan-card h2,
.brand-hero h2 {
  margin: 0 0 18px;
  color: #3b241d;
  font-size: clamp(2rem, 3vw, 3.8rem);
  line-height: .98;
}

.plan-card h2 span,
.brand-hero h2 span,
.client-plan h2 span {
  display: block;
  color: var(--peach-500);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

.task-box {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(206, 116, 83, .2);
  border-radius: 18px;
  background: #fff9f5;
}

.task-box h3 {
  width: fit-content;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--peach-500), var(--peach-300));
  color: #fff;
}

.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: .55em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--peach-500);
  border-bottom: 2px solid var(--peach-500);
  transform: rotate(-45deg);
}

.goal,
.plan-footer,
.mini-ribbon {
  padding: 14px 18px;
  border-radius: 16px;
  background: #ffe8d9;
  color: #7b4939;
  font-weight: 900;
}

.client-tasks {
  display: grid;
  gap: 12px;
}

.client-tasks div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(206, 116, 83, .12);
  background: #fff;
}

.client-tasks span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 15px;
  background: linear-gradient(135deg, var(--peach-500), #f2b287);
  color: #fff;
  font-weight: 900;
}

.client-tasks p {
  margin: 0;
  font-size: .95rem;
}

.brand-plan {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1.45fr);
  gap: 14px;
  padding: 14px;
}

.brand-hero,
.brand-steps article {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(202, 166, 106, .14);
  background: #fff;
}

.brand-hero ul {
  padding-left: 1.15rem;
  color: #6a574f;
  font-weight: 800;
}

.brand-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
}

.brand-steps article {
  align-self: start;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px 12px;
  min-height: 0;
  padding: 18px;
}

.brand-steps span {
  position: static;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--peach-500), var(--champagne));
  color: #fff;
  font-weight: 900;
}

.brand-steps h3 {
  align-self: center;
  margin: 0;
  color: #9e563d;
  font-size: .95rem;
  line-height: 1.18;
}

.brand-steps p,
.brand-steps ul,
.brand-steps strong {
  grid-column: 1 / -1;
}

.brand-steps p,
.brand-steps li,
.brand-steps strong {
  font-size: .86rem;
}

.brand-steps p {
  margin: 0 0 5px;
}

.tools,
.final-note {
  display: grid;
  place-items: center;
}

.tools-card {
  width: var(--container);
  padding: clamp(28px, 8vw, 90px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(252, 240, 239, .76));
  box-shadow: var(--shadow);
  text-align: left;
  position: relative;
}

.tools-card::after {
  content: "";
  position: absolute;
  right: clamp(20px, 7vw, 90px);
  top: clamp(20px, 5vw, 60px);
  width: clamp(90px, 18vw, 220px);
  aspect-ratio: 1;
  border: 1px solid rgba(202, 166, 106, .28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 166, 106, .15), transparent 62%);
}

.tools-card h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.4rem, 5.4vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
}

.tools-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

.tools-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  color: var(--charcoal);
  font-size: clamp(.95rem, 1.4vw, 1.3rem);
  font-weight: 600;
  line-height: 1.2;
}

.tools-card li::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--champagne);
}

.final-note {
  background: linear-gradient(180deg, #fbf4f0, #fffaf7);
}

.final-card {
  width: min(1180px, calc(100vw - 32px));
  padding: clamp(28px, 7vw, 78px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(252, 240, 239, .82));
  box-shadow: var(--shadow);
}

.quote {
  margin: 0 0 46px;
  color: #5d5b5b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 3rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.final-card ul {
  display: grid;
  gap: 18px;
  padding: 0 0 0 clamp(20px, 5vw, 72px);
  color: #666;
  font-size: clamp(1.05rem, 2.1vw, 1.85rem);
  list-style: none;
}

.final-card li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 16px;
}

.final-card li svg {
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 50%;
  background: #fff;
  color: var(--rose-500);
  box-shadow: inset 0 0 0 1px rgba(202, 166, 106, .24);
}

.belief {
  margin: 64px 0 0;
  padding: 24px;
  border-radius: 28px;
  background: #efd9d9;
  color: var(--rose-500);
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  font-weight: 900;
  text-align: center;
}

@media (max-width: 1180px) {
  .plans-layout,
  .brand-plan {
    grid-template-columns: 1fr;
  }

  .brand-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    min-height: auto;
    padding: 76px 0;
  }

  .hero,
  .mentor__grid,
  .privilege-grid,
  .choice__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    margin-top: -62px;
  }

  .hero__scene {
    min-height: 520px;
    order: -1;
  }

  .book {
    width: 320px;
  }

  .mentor__portrait {
    min-height: 520px;
    order: -1;
  }

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

  .choice__grid {
    gap: 28px;
  }

  .brand-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100vw - 28px, 1180px);
    --radius: 20px;
  }

  .site-header {
    width: calc(100vw - 20px);
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 10.6vw, 2.75rem);
  }

  .lead,
  .mentor__text,
  .choice-copy {
    font-size: 1.06rem;
  }

  .brand-steps {
    grid-template-columns: 1fr;
  }

  .starter-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero__scene {
    min-height: auto;
  }

  .hero__scene img {
    width: 100%;
    border-radius: 22px;
  }

  .book {
    left: 6%;
    width: min(66vw, 280px);
  }

  .perfume {
    right: 11%;
    width: 64px;
    height: 126px;
  }

  .lipstick {
    right: 7%;
    top: 39%;
    width: 42px;
    height: 124px;
  }

  .cream {
    left: 18%;
    width: 140px;
    height: 96px;
  }

  .coffee {
    width: 118px;
    border-width: 12px;
  }

  .mentor__portrait {
    min-height: 420px;
    background-size: auto 100%;
  }

  .video-callout {
    padding: 18px;
  }

  .youtube-link {
    margin-top: 16px;
  }

  .play-icon {
    width: 72px;
    height: 50px;
  }

  .play-icon::after {
    left: 28px;
    top: 14px;
  }

  .key-card {
    min-height: 0;
    padding: 112px 20px 22px;
  }

  .key-icon {
    top: 22px;
    left: 20px;
    width: 70px;
    height: 70px;
    padding: 17px;
  }

  .key-number {
    top: 112px;
    left: 20px;
    width: 46px;
    height: 46px;
    font-size: 1.35rem;
  }

  .key-card .key-number + h3 {
    min-height: 46px;
    padding-left: 62px;
    display: flex;
    align-items: center;
  }

  .benefit-panel {
    padding: 104px 18px 24px;
  }

  .benefit-panel h2 {
    max-width: none;
  }

  .badge {
    min-width: 118px;
    max-width: 128px;
    min-height: 58px;
    padding: 10px 12px;
    font-size: .67rem;
    font-weight: 700;
  }

  .benefit-list li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .benefit-list span {
    width: 42px;
    height: 42px;
    border-width: 3px;
    font-size: .68rem;
  }

  .benefit-list span svg {
    width: 22px;
    height: 22px;
  }

  .comparison {
    padding: 14px;
    border-width: 5px;
  }

  .comparison-tables {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-col dl > div {
    grid-template-columns: 74px 1fr;
    min-height: 64px;
  }

  .comparison-col dt,
  .comparison-col dd {
    font-size: .74rem;
    padding: 8px 6px;
  }

  .comparison-col dt {
    font-size: .56rem;
    line-height: 1.22;
  }

  .plans-layout {
    width: calc(100vw - 14px);
  }

  .plan-card,
  .brand-plan {
    border-radius: 14px;
  }

  .client-tasks div {
    grid-template-columns: 52px 1fr;
    padding: 12px;
  }

  .client-tasks span {
    width: 52px;
    height: 52px;
    padding: 14px;
  }

  .brand-steps article {
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 18px;
  }

  .brand-steps span {
    width: 24px;
    height: 24px;
    font-size: .82rem;
  }

  .quote {
    font-size: clamp(1.35rem, 8vw, 1.85rem);
  }

  .belief {
    margin-top: 48px;
    padding: 18px;
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .tools-card h2,
  .tools-card li {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .tools-card li {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    font-size: clamp(.95rem, 5vw, 1.3rem);
  }

  .tools-card li::before {
    width: 34px;
  }

  .final-card ul {
    gap: 14px;
    padding-left: 0;
    font-size: clamp(1rem, 4.8vw, 1.45rem);
  }

  .final-card li {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .final-card li svg {
    width: 32px;
    height: 32px;
    padding: 7px;
  }
}

@media (max-width: 430px) {
  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .soft-card {
    min-height: 118px;
    padding: 14px 12px;
  }

  .line-icon {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .soft-card h2 {
    font-size: .86rem;
  }

  .soft-card p {
    font-size: .76rem;
  }

  .client-tasks p,
  .brand-steps p,
  .brand-steps li,
  .brand-steps strong {
    font-size: .78rem;
  }
}
