:root {
  --ink: #2f211b;
  --ink-soft: #66564e;
  --brand: #6f3a24;
  --brand-2: #b7653c;
  --brand-3: #dfa069;
  --cream: #f8f2eb;
  --cream-2: #efe2d5;
  --paper: #fffdfa;
  --white: #ffffff;
  --green: #2f6659;
  --green-soft: #e6f0ec;
  --amber-soft: #fff1de;
  --danger: #944632;
  --line: rgba(73, 45, 31, 0.14);
  --shadow-sm: 0 10px 30px rgba(67, 40, 25, 0.08);
  --shadow-md: 0 24px 60px rgba(67, 40, 25, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 78px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.55rem, 5.8vw, 5.5rem);
  margin-bottom: 1.35rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.85rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

::selection {
  color: var(--white);
  background: var(--brand-2);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--brand);
  text-decoration: none;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button,
.text-button {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--brand-2);
  border-radius: 999px;
  color: var(--white);
  background: var(--brand-2);
  box-shadow: 0 12px 28px rgba(183, 101, 60, 0.22);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  background: #9e5332;
  box-shadow: 0 16px 34px rgba(183, 101, 60, 0.28);
}

.button:focus-visible,
.text-button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(223, 160, 105, 0.75);
  outline-offset: 3px;
}

.button-outline {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.button-outline:hover {
  color: var(--white);
  background: var(--brand);
}

.button-light {
  color: var(--brand);
  border-color: var(--white);
  background: var(--white);
  box-shadow: none;
}

.button-light:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button-sm {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0;
  color: var(--brand);
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.disclosure-bar {
  position: relative;
  z-index: 1002;
  color: #ffe9d7;
  background: #402419;
  font-size: 0.78rem;
}

.disclosure-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 250, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 253, 250, 0.96);
  box-shadow: 0 10px 32px rgba(53, 32, 22, 0.06);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 15px;
  color: var(--cream);
  background: var(--brand);
  box-shadow: 0 8px 18px rgba(111, 58, 36, 0.18);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: var(--brand-3);
  stroke: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav > a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--brand-2);
  content: "";
  transition: width var(--transition);
}

.primary-nav > a:hover {
  color: var(--brand);
}

.primary-nav > a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 740px;
  overflow: clip;
  background: linear-gradient(135deg, #fffaf5 0%, #f5e8da 55%, #eee1d5 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  filter: blur(8px);
  pointer-events: none;
}

.hero::before {
  right: -220px;
  top: 90px;
  width: 520px;
  height: 520px;
  background: rgba(223, 160, 105, 0.17);
}

.hero::after {
  left: -140px;
  bottom: -250px;
  width: 460px;
  height: 460px;
  background: rgba(47, 102, 89, 0.08);
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(90deg, rgba(255, 250, 245, 0.94) 0%, rgba(255, 250, 245, 0.84) 48%, rgba(255, 250, 245, 0.44) 100%), url("../images/hero-texture.webp");
  background-position: center;
  background-size: cover;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 740px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 72px;
  padding-block: 78px 92px;
}

.hero-copy h1 span {
  display: block;
  color: var(--brand-2);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 1.9rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

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

.microcopy {
  display: flex;
  max-width: 670px;
  align-items: flex-start;
  gap: 8px;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.microcopy svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row {
  display: grid;
  max-width: 710px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2rem;
}

.trust-row span {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(111, 58, 36, 0.1);
  border-radius: 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  text-align: center;
}

.trust-row b {
  display: block;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.hero-photo-main {
  inset: 20px 0 70px 70px;
}

.hero-photo-small {
  left: 0;
  bottom: 0;
  width: 180px;
  height: 250px;
  border-width: 7px;
  border-radius: 28px;
}

.referral-card {
  position: absolute;
  right: -12px;
  bottom: 18px;
  display: grid;
  min-width: 210px;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 22px;
  color: var(--white);
  background: rgba(64, 36, 25, 0.93);
  box-shadow: 0 20px 40px rgba(50, 29, 19, 0.22);
  backdrop-filter: blur(10px);
}

.referral-card span {
  color: #f1d7c4;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.referral-card strong {
  margin: 0.2rem 0 0.45rem;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.copy-code,
.code-box button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: #f6c9a6;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.decision-strip {
  padding: 76px 0;
  background: #402419;
}

.decision-strip .section-heading h2,
.decision-strip .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 3rem;
}

.section-heading.compact {
  max-width: 920px;
  margin-bottom: 2rem;
}

.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.decision-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.decision-card .number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: #402419;
  background: var(--brand-3);
  font-size: 0.82rem;
  font-weight: 900;
}

.decision-card h3 {
  color: var(--white);
}

.decision-card p {
  margin-bottom: 0;
  color: #ead8ca;
  font-size: 0.92rem;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.step-card {
  position: relative;
  min-height: 290px;
  padding: 1.45rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-card::after {
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(223, 160, 105, 0.12);
  content: "";
}

.step-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: var(--brand-2);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(183, 101, 60, 0.18);
}

.step-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
}

.fit-intro {
  position: sticky;
  top: 130px;
}

.fit-intro > p:not(.eyebrow) {
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.fit-cards {
  display: grid;
  gap: 20px;
}

.fit-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.fit-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.fit-title span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  font-weight: 900;
}

.fit-title h3 {
  margin: 0;
}

.fit-yes .fit-title span {
  color: var(--green);
  background: var(--green-soft);
}

.fit-no .fit-title span {
  color: var(--danger);
  background: var(--amber-soft);
}

.fit-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
}

.fit-card li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  font-weight: 900;
  content: "•";
}

.fit-yes li::before {
  color: var(--green);
}

.fit-no li::before {
  color: var(--danger);
}

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

.level-card {
  position: relative;
  min-height: 355px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.level-card.featured {
  border-color: rgba(183, 101, 60, 0.35);
  background: linear-gradient(180deg, #fff9f4 0%, #fffdfa 100%);
  box-shadow: 0 24px 55px rgba(111, 58, 36, 0.14);
  transform: translateY(-12px);
}

.popular-label {
  position: absolute;
  top: -15px;
  left: 28px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.level-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 2rem;
}

.level-top span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  color: var(--white);
  background: var(--brand);
  font-size: 1.25rem;
  font-weight: 900;
}

.level-top strong {
  color: var(--brand-2);
  font-size: 2.7rem;
  line-height: 1;
}

.level-card p {
  color: var(--ink-soft);
}

.level-note {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.transparency-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  margin-top: 35px;
  padding: 1.55rem 1.7rem;
  border: 1px solid rgba(47, 102, 89, 0.16);
  border-radius: var(--radius-md);
  background: var(--green-soft);
}

.transparency-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-family: Georgia, serif;
  font-weight: 900;
}

.transparency-box h3 {
  margin-bottom: 0.35rem;
}

.transparency-box p {
  margin-bottom: 0;
  color: #47665e;
}

.section-image {
  color: var(--white);
  background: #402419;
}

.image-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 80px;
}

.image-panel {
  position: relative;
  max-width: 460px;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5.3;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  box-shadow: 0 26px 60px rgba(22, 10, 5, 0.3);
}

.image-caption {
  position: absolute;
  right: -26px;
  bottom: 28px;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  color: var(--ink);
  background: var(--brand-3);
  font-size: 0.84rem;
  font-weight: 900;
}

.benefit-copy h2 {
  color: var(--white);
}

.benefit-list {
  display: grid;
  gap: 4px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-list article > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 14px;
  color: #402419;
  background: var(--brand-3);
  font-size: 1.1rem;
  font-weight: 900;
}

.benefit-list h3 {
  color: var(--white);
}

.benefit-list p {
  margin-bottom: 0;
  color: #dcc8ba;
}

.referral-section {
  background: linear-gradient(135deg, #f4e6d8 0%, #efe1d4 45%, #e7d2bf 100%);
}

.referral-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 40px;
  align-items: stretch;
}

.referral-copy,
.referral-action {
  border-radius: 32px;
}

.referral-copy {
  padding: 2rem 0;
}

.referral-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--ink-soft);
}

.code-box {
  display: grid;
  width: min(100%, 460px);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 20px;
  margin-top: 2rem;
  padding: 1.4rem 1.55rem;
  border: 1px solid rgba(111, 58, 36, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-sm);
}

.code-box span {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.code-box strong {
  color: var(--brand);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.code-box button {
  color: var(--brand-2);
}

.referral-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.3rem;
  color: var(--white);
  background: var(--brand);
  box-shadow: var(--shadow-md);
}

.referral-action h3 {
  color: var(--white);
  font-size: 1.65rem;
}

.referral-action p {
  color: #ecd7c9;
}

.referral-action small {
  display: block;
  margin-top: 1rem;
  color: #ddc2b2;
  font-size: 0.78rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 130px;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 1rem 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand);
  content: "+";
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.faq-item[open] summary::after {
  color: var(--white);
  background: var(--brand);
  content: "−";
  transform: rotate(180deg);
}

.faq-item > div {
  max-width: 760px;
  padding: 0 50px 1.5rem 0;
  color: var(--ink-soft);
}

.faq-item > div p {
  margin-bottom: 0;
}

.final-cta {
  padding: 45px 0 90px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: 50px;
  padding: 3.4rem;
  border-radius: 38px;
  color: var(--white);
  background: linear-gradient(135deg, #6f3a24 0%, #9d5534 100%);
  box-shadow: var(--shadow-md);
}

.final-cta-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.45rem);
}

.final-cta-inner p:not(.eyebrow) {
  margin-bottom: 0;
  color: #f2dfd1;
}

.final-actions {
  display: grid;
  gap: 8px;
}

.final-actions .text-button {
  color: var(--white);
}

.site-footer {
  padding: 70px 0 26px;
  color: #dec9bb;
  background: #2b1912;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 70px;
  padding-bottom: 50px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand small {
  color: #c8a995;
}

.footer-grid > div:first-child > p {
  max-width: 500px;
  margin: 1.25rem 0 0;
  color: #c8b1a2;
}

.footer-grid h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a:not(.brand) {
  color: #c8b1a2;
  text-decoration: none;
}

.footer-grid a:not(.brand):hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  padding: 0.85rem 1.1rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 36px rgba(47, 102, 89, 0.28);
  font-weight: 900;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(47, 102, 89, 0.35);
}

.floating-cta svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 13, 8, 0.74);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
  max-height: min(90vh, 820px);
  overflow-y: auto;
  padding: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(20, 10, 5, 0.35);
  transform: translateY(18px) scale(0.98);
  transition: transform var(--transition);
}

.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-panel > p:not(.eyebrow):not(.form-note) {
  color: var(--ink-soft);
}

.modal-close {
  position: absolute;
  right: 17px;
  top: 17px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.lead-form {
  display: grid;
  gap: 15px;
  margin-top: 1.5rem;
}

.lead-form label:not(.consent-row) {
  display: grid;
  gap: 7px;
}

.lead-form label > span:first-child {
  font-size: 0.84rem;
  font-weight: 800;
}

.lead-form input[type="text"],
.lead-form select {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: var(--white);
}

.lead-form input[type="text"]::placeholder {
  color: #9d8d84;
}

.consent-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 0.8rem;
  border-radius: 13px;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-2);
}

.form-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 3000;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  color: var(--white);
  background: #263e37;
  box-shadow: 0 16px 36px rgba(24, 49, 41, 0.28);
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 14px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

.reveal-delay-4 {
  transition-delay: 360ms;
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.96);
}

.legal-main {
  padding: 70px 0 100px;
}

.legal-card {
  max-width: 900px;
  padding: clamp(1.5rem, 4vw, 3.8rem);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.legal-card h2 {
  margin-top: 2.2rem;
  font-size: 1.35rem;
}

.legal-card p {
  color: var(--ink-soft);
}

.legal-updated {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.legal-callout {
  margin-top: 2.4rem;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(148, 70, 50, 0.2);
  border-radius: 18px;
  color: #7e3d2d;
  background: var(--amber-soft);
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--cream), #ead4c2);
}

.not-found-card {
  max-width: 650px;
  padding: 3rem;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.not-found-card h1 {
  font-size: clamp(2.3rem, 6vw, 4.7rem);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 40px;
  }

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

  .step-card:nth-child(4),
  .step-card:nth-child(5) {
    min-height: 250px;
  }

  .primary-nav {
    gap: 18px;
  }

  .image-layout,
  .faq-layout {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    inset: calc(34px + var(--header-height)) 16px auto;
    display: grid;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 250, 0.98);
    box-shadow: var(--shadow-md);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a {
    padding: 0.95rem 0.9rem;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav > a::after {
    display: none;
  }

  .primary-nav .button {
    margin-top: 0.7rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

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

  .level-card,
  .level-card.featured {
    min-height: 300px;
    transform: none;
  }

  .fit-layout,
  .image-layout,
  .referral-layout,
  .faq-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .fit-intro,
  .sticky-heading {
    position: static;
  }

  .image-panel {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .referral-copy {
    padding: 0;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 35px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .disclosure-inner {
    min-height: 42px;
    flex-wrap: wrap;
    gap: 0 6px;
    padding-block: 5px;
    line-height: 1.35;
  }

  .disclosure-dot {
    display: none;
  }

  .primary-nav {
    top: calc(42px + var(--header-height));
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    gap: 45px;
    padding-block: 48px 70px;
  }

  .hero-actions {
    display: grid;
  }

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

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-photo-main {
    inset: 0 0 55px 35px;
  }

  .hero-photo-small {
    width: 130px;
    height: 190px;
  }

  .referral-card {
    right: 4px;
    bottom: 0;
    min-width: 170px;
  }

  .referral-card strong {
    font-size: 2.1rem;
  }

  .decision-strip,
  .section {
    padding-block: 78px;
  }

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

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

  .step-card,
  .step-card:nth-child(4),
  .step-card:nth-child(5) {
    min-height: auto;
  }

  .fit-card,
  .level-card,
  .referral-action,
  .modal-panel,
  .final-cta-inner {
    padding: 1.45rem;
  }

  .level-card,
  .level-card.featured {
    min-height: 340px;
  }

  .image-caption {
    right: -6px;
    bottom: 18px;
  }

  .code-box {
    grid-template-columns: 1fr;
  }

  .code-box span {
    grid-column: auto;
  }

  .code-box strong {
    font-size: 2.6rem;
  }

  .faq-item summary {
    min-height: 72px;
    font-size: 0.98rem;
  }

  .faq-item > div {
    padding-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
  }

  .floating-cta span {
    display: none;
  }

  .floating-cta {
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  .legal-main {
    padding: 30px 0 70px;
  }

  .legal-card {
    border-radius: 24px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   REVISI FINAL: hadiah tumbler, klaim, dan komunitas
   ========================================================= */
.hero-badge-card {
  position: absolute;
  right: 8px;
  bottom: 12px;
  min-width: 205px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(111, 58, 36, 0.14);
  border-radius: 22px;
  background: rgba(255, 253, 250, 0.95);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero-badge-card span,
.hero-badge-card strong,
.hero-badge-card a {
  display: block;
}

.hero-badge-card span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge-card strong {
  margin: 0.15rem 0 0.3rem;
  color: var(--brand-2);
  font-size: 2rem;
  line-height: 1;
}

.hero-badge-card a {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-underline-offset: 3px;
}

.gift-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fffaf5 0%, #f4e2d3 100%);
}

.gift-section::before {
  position: absolute;
  top: -160px;
  right: -100px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(223, 160, 105, 0.18);
  content: "";
}

.gift-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 72px;
  align-items: center;
}

.gift-visual {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
}

.gift-visual > img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  filter: drop-shadow(0 22px 34px rgba(79, 42, 25, 0.13));
}

.gift-glow {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(111, 58, 36, 0.07);
}

.gift-stamp {
  position: absolute;
  right: 2%;
  bottom: 8%;
  z-index: 2;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  align-content: center;
  border: 4px solid #fff6ee;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 35px rgba(47, 102, 89, 0.24);
  text-align: center;
  transform: rotate(-8deg);
}

.gift-stamp span,
.gift-stamp strong {
  display: block;
  line-height: 1.05;
}

.gift-stamp span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gift-stamp strong {
  margin-top: 4px;
  font-size: 1.15rem;
}

.gift-lead {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.gift-copy > p:not(.eyebrow):not(.gift-note) {
  color: var(--ink-soft);
}

.gift-terms {
  display: grid;
  gap: 10px;
  margin: 1.7rem 0;
}

.gift-terms > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(111, 58, 36, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
}

.gift-terms span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.gift-terms p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

.gift-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.claim-flow {
  border-block: 1px solid var(--line);
}

.claim-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.claim-steps article {
  position: relative;
  min-height: 220px;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.claim-steps article > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1.3rem;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: var(--brand-2);
  font-weight: 900;
}

.claim-steps article p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.community-section {
  background: #fffdfa;
}

.community-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: center;
}

.community-copy > p:not(.eyebrow):not(.community-note) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.community-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 1.5rem 0;
}

.community-points span {
  padding: 0.62rem 0.85rem;
  border: 1px solid rgba(47, 102, 89, 0.18);
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.community-note {
  padding: 1rem 1.05rem;
  border-left: 4px solid var(--brand-2);
  border-radius: 0 12px 12px 0;
  color: var(--ink-soft);
  background: var(--cream);
  font-size: 0.82rem;
}

.community-proof {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #171717;
  box-shadow: var(--shadow-md);
}

.community-proof figure {
  margin: 0;
}

.community-proof figure img {
  width: 100%;
  border-radius: 18px;
}

.community-proof figcaption {
  padding: 0.8rem 0.2rem 0;
  color: #bdbdbd;
  font-size: 0.75rem;
  text-align: center;
}

.community-logo-wrap {
  position: absolute;
  top: -42px;
  right: 28px;
  z-index: 2;
  width: 104px;
  height: 104px;
  overflow: hidden;
  border: 7px solid var(--paper);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.community-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.registration-list {
  display: grid;
  gap: 11px;
  margin: 1.4rem 0 1.6rem;
}

.registration-list > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 0.9rem;
  border-radius: 14px;
  background: var(--cream);
}

.registration-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--brand-2);
  font-weight: 900;
}

.registration-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.modal-actions {
  display: grid;
  gap: 10px;
}

.claim-modal-panel {
  width: min(100%, 760px);
}

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

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="date"],
.lead-form input[type="file"],
.lead-form select {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: var(--white);
}

.lead-form input[type="file"] {
  padding: 0.62rem;
}

.lead-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 0.55rem 0.8rem;
  border: 0;
  border-radius: 9px;
  color: var(--white);
  background: var(--brand-2);
  font-weight: 800;
  cursor: pointer;
}

.proof-label small {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.proof-preview {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 0.8rem;
  border: 1px solid rgba(47, 102, 89, 0.18);
  border-radius: 14px;
  background: var(--green-soft);
}

.proof-preview[hidden] {
  display: none;
}

.proof-preview img {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
}

.proof-preview strong,
.proof-preview span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-preview strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.proof-preview span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.light-text-button {
  color: var(--white) !important;
}

@media (max-width: 1080px) {
  .gift-layout,
  .community-layout {
    gap: 42px;
  }

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

@media (max-width: 900px) {
  .gift-layout,
  .community-layout {
    grid-template-columns: 1fr;
  }

  .gift-visual {
    min-height: 480px;
  }

  .community-proof {
    width: min(100%, 640px);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .hero-badge-card {
    right: 2px;
    bottom: 0;
    min-width: 165px;
  }

  .hero-badge-card strong {
    font-size: 1.65rem;
  }

  .gift-visual {
    min-height: 390px;
  }

  .gift-stamp {
    width: 92px;
    height: 92px;
    right: 0;
    bottom: 4%;
  }

  .gift-actions,
  .gift-actions .button {
    width: 100%;
  }

  .gift-actions {
    display: grid;
  }

  .claim-steps,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .claim-steps article {
    min-height: auto;
  }

  .community-proof {
    padding: 12px;
    border-radius: 22px;
  }

  .community-logo-wrap {
    top: -30px;
    right: 18px;
    width: 76px;
    height: 76px;
    border-width: 5px;
  }
}
