:root {
  --gold: #bd852f;
  --gold-dark: #9f6d23;
  --gold-light: #e8c27b;
  --ink: #141414;
  --muted: #6a5f54;
  --line: #eadcc9;
  --cream: #fbf7f0;
  --white: #fff;
  --shadow: 0 18px 45px rgba(81, 54, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

h1,
h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 86px;
  display: grid;
  grid-template-columns: 180px 1fr 190px;
  align-items: center;
  padding: 0 62px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 18px rgba(80, 64, 45, 0.08);
  backdrop-filter: blur(14px);
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.logo img,
.footer-logo img {
  display: block;
  width: 82px;
  height: auto;
}

.logo img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(64%) saturate(531%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

.footer-logo img {
  width: 92px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 43px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.gold-button,
.plan-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 28px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gold-button {
  color: var(--white);
  background: linear-gradient(135deg, #d9aa54, #ae731c);
  box-shadow: 0 14px 28px rgba(167, 111, 31, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 40%, #f6efe3 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 43%, rgba(255, 255, 255, 0.22) 72%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 70px 0 90px 78px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.04;
}

.hero h1 span {
  color: var(--gold);
}

.subtitle {
  margin-top: 18px;
  font-size: 25px;
  font-weight: 500;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 58px 0 28px;
}

.hero-points article,
.why-grid article {
  position: relative;
}

.hero-points article:not(:last-child)::after,
.why-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 5px;
  width: 1px;
  height: 54px;
  background: var(--line);
}

i[data-icon] {
  width: 34px;
  height: 34px;
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
}

i[data-icon]::before {
  content: attr(data-icon);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.hero-points span {
  display: block;
  max-width: 92px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-text {
  max-width: 480px;
  margin-bottom: 34px;
  color: #3f3a34;
  font-size: 14px;
  line-height: 1.8;
}

.hero-art {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.promo-badge {
  position: absolute;
  top: 155px;
  right: 164px;
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #8b5d1c;
  background: radial-gradient(circle at 30% 25%, #fff 0, #fff 38%, #fff5df 100%);
  box-shadow: var(--shadow);
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  z-index: 3;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-cue span {
  display: block;
  width: 18px;
  height: 18px;
  margin: 4px auto 0;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
}

section {
  padding: 42px 70px;
}

.section-title {
  margin: 0 auto 38px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(31px, 3vw, 39px);
  line-height: 1.1;
}

.section-title p {
  margin-top: 8px;
  color: #3e3934;
  font-size: 15px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.why-grid i {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #f1dfc5;
}

.why-grid i::before {
  width: 86px;
  height: 86px;
  border: 0;
  font-size: 13px;
}

.why-grid h3,
.plan h3 {
  margin: 0 0 13px;
  font-size: 16px;
  text-transform: none;
}

.why-grid p {
  max-width: 215px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.journey {
  background: linear-gradient(#fff, #fffaf3);
  border-top: 1px solid #f3eadc;
  border-bottom: 1px solid #f3eadc;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 36px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.plan {
  position: relative;
  min-height: 436px;
  padding: 38px 48px 28px;
  border: 1px solid #e0c4a1;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(73, 57, 33, 0.12);
}

.plan.featured {
  border: 2px solid var(--gold);
}

.ribbon {
  position: absolute;
  left: 76px;
  top: -13px;
  min-width: 178px;
  padding: 7px 14px;
  color: #fff;
  background: linear-gradient(135deg, #d8a950, #a56e1f);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.ribbon.small {
  left: 50%;
  min-width: 100px;
  transform: translateX(-50%);
}

.seal {
  position: absolute;
  right: -10px;
  top: -25px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #d8a950, #9c641c);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-14deg);
}

.price {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 50px;
  line-height: 1;
}

.price span {
  margin-right: 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
}

.plan-desc {
  min-height: 45px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.plan ul {
  min-height: 142px;
  padding: 0;
  margin: 0 0 25px;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 26px;
  margin: 12px 0;
  font-size: 12px;
  font-weight: 700;
}

.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2f8f28;
  font-weight: 900;
}

.plan-button {
  width: 100%;
  color: var(--gold);
  background: #fff;
}

.plan-button.filled {
  color: #fff;
  background: linear-gradient(135deg, #d8a950, #a56e1f);
}

.voucher-note {
  margin-top: 23px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.voucher-note span {
  margin-left: 18px;
  color: #4c4135;
}

.promotion {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.95fr;
  align-items: center;
  gap: 34px;
  min-height: 230px;
  background: linear-gradient(90deg, rgba(254, 249, 239, 0.96), rgba(255, 250, 240, 0.76)), radial-gradient(circle at right, #f2d492 0, transparent 30%);
}

.promotion h2 {
  margin-top: 15px;
  color: var(--gold);
  font-size: 34px;
}

.promotion p {
  margin-top: 14px;
  font-size: 15px;
}

.promo-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.promo-icons span {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.promo-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid #ecd8b9;
  border-radius: 50%;
  background: #fff;
}

.promo-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timer {
  text-align: center;
}

.timer > p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.time-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-bottom: 15px;
}

.time-boxes b {
  min-height: 68px;
  padding: 10px 3px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(75, 55, 30, 0.12);
  color: #4a3b2a;
  font-size: 10px;
  text-transform: uppercase;
}

.time-boxes span {
  display: block;
  color: #111;
  font-size: 29px;
}

.steps {
  border-bottom: 1px solid #f0e5d7;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 38px;
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
}

.step-row article {
  position: relative;
}

.step-row article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -47px;
  width: 68px;
  border-top: 2px dotted #c9bba7;
}

.step-row i {
  width: 90px;
  height: 90px;
  margin: 0 auto 10px;
  box-shadow: inset 0 0 0 1px #ecdac0;
  border-radius: 50%;
}

.step-row i::before {
  width: 90px;
  height: 90px;
  border: 0;
}

.step-row b {
  display: block;
  font-size: 14px;
}

.step-row p {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.45;
}

.stories {
  text-align: center;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  max-width: 1240px;
  margin: 0 auto 23px;
  text-align: left;
}

.story-grid article {
  display: grid;
  grid-template-columns: 168px 1fr;
  overflow: hidden;
  border: 1px solid #eadbc9;
  border-radius: 8px;
  background: #fffaf4;
  box-shadow: 0 10px 28px rgba(80, 58, 32, 0.1);
}

.story-grid img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
}

.story-grid div {
  padding: 26px 24px 20px;
}

.story-grid p {
  min-height: 112px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.story-grid b,
.story-grid small,
.story-grid span {
  display: block;
}

.story-grid b {
  margin-top: 14px;
  font-size: 11px;
  text-transform: uppercase;
}

.story-grid small {
  color: #65594a;
  font-size: 10px;
}

.story-grid span {
  color: var(--gold);
  letter-spacing: 1px;
}

.outline-button {
  min-height: 38px;
  color: var(--gold);
  background: #fff;
}

.future {
  min-height: 230px;
  display: flex;
  align-items: center;
  padding-left: 122px;
  background: linear-gradient(90deg, rgba(255, 236, 196, 0.95), rgba(255, 232, 187, 0.32)), url("assets/hero-kws.png") center right / cover no-repeat;
}

.future h2 {
  font-size: 46px;
  line-height: 0.98;
}

.future p {
  margin: 13px 0 18px;
  font-size: 15px;
  font-weight: 600;
}

footer {
  display: grid;
  grid-template-columns: 1.7fr repeat(5, 1fr);
  gap: 38px;
  padding: 35px 80px 26px;
  color: #d3c1a4;
  background: #171714;
}

footer h4 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 10px;
  text-transform: uppercase;
}

footer a {
  display: block;
  margin: 7px 0;
  font-size: 11px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #a98d5a;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.main-nav a.active {
  color: var(--gold-dark);
}

.inner-page .site-header {
  position: sticky;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
  min-height: 560px;
  padding-top: 70px;
  padding-bottom: 70px;
  background: linear-gradient(110deg, #fff 0%, #fffaf2 58%, #f3e3cb 100%);
}

.page-copy {
  max-width: 650px;
}

.page-copy h1,
.product-landing h1,
.stories-page h1 {
  margin: 14px 0 18px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-copy p {
  max-width: 560px;
  color: #453d35;
  font-size: 16px;
  line-height: 1.85;
}

.page-copy .gold-button {
  margin-top: 28px;
}

.image-panel {
  overflow: hidden;
  border: 1px solid #eadbc8;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.value-section {
  background: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.value-grid article {
  padding: 30px 24px;
  border: 1px solid #ecdcc8;
  border-radius: 8px;
  background: #fffdf9;
  text-align: center;
}

.value-grid i {
  margin: 0 auto 15px;
}

.value-grid h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.value-grid p {
  color: #5f554a;
  font-size: 13px;
  line-height: 1.65;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 34px;
  padding-bottom: 42px;
  background: linear-gradient(90deg, #fffaf3, #fff);
  border-top: 1px solid #f0e5d7;
}

.stats-band article {
  text-align: center;
}

.stats-band b {
  display: block;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 39px;
}

.stats-band span {
  color: #665d52;
  font-size: 12px;
  font-weight: 800;
}

.product-landing,
.stories-page {
  padding-top: 68px;
  background: linear-gradient(#fff, #fffaf4);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #eadbc8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(73, 57, 33, 0.11);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f6ead9;
}

.product-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.product-card small {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.product-card h2,
.leader-grid h2 {
  margin: 8px 0 10px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.product-card p {
  flex: 1;
  color: #5c5248;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.product-card b {
  display: block;
  margin: 17px 0 14px;
  color: var(--gold);
  font-size: 12px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px 26px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 28px;
  color: #3f372f;
  font-size: 14px;
  font-weight: 800;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2f8f28;
}

.signature-panel {
  position: relative;
}

.signature-panel span {
  position: absolute;
  right: 34px;
  bottom: 32px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 34px;
  line-height: 1.05;
}

.compact-journey .plan {
  min-height: 385px;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
}

.leader-grid article {
  overflow: hidden;
  border: 1px solid #eadbc8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(73, 57, 33, 0.11);
}

.leader-grid img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  object-position: center 30%;
}

.leader-grid div {
  padding: 24px;
}

.leader-grid small,
.leader-grid span {
  display: block;
}

.leader-grid small {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.leader-grid p {
  min-height: 92px;
  margin: 16px 0;
  color: #4e463e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.leader-grid span {
  color: var(--gold);
  letter-spacing: 1px;
}

.center-cta {
  margin-top: 36px;
  text-align: center;
}

.opportunity-hero {
  background: linear-gradient(110deg, #fff 0%, #fffaf2 54%, #f4e0c5 100%);
}

.opportunity-pillars {
  background: #fff;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.opportunity-grid article {
  min-height: 245px;
  padding: 30px 24px;
  border: 1px solid #eadbc8;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff 0%, #fffaf4 100%);
  box-shadow: 0 12px 28px rgba(73, 57, 33, 0.08);
}

.opportunity-grid h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.opportunity-grid p {
  color: #5f554a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.68;
}

.opportunity-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(430px, 1.2fr);
  gap: 58px;
  align-items: center;
  background: linear-gradient(110deg, #fffaf3, #fff);
  border-top: 1px solid #f0e5d7;
  border-bottom: 1px solid #f0e5d7;
}

.opportunity-copy h2,
.opportunity-cta h2 {
  margin: 14px 0 18px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
}

.opportunity-copy p:not(.eyebrow),
.opportunity-cta p:not(.eyebrow) {
  color: #4d443b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.78;
}

.opportunity-copy .outline-button {
  margin-top: 25px;
}

.support-list {
  display: grid;
  gap: 16px;
}

.support-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid #eadbc8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(73, 57, 33, 0.08);
}

.support-list b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--gold);
  background: #fffaf3;
  box-shadow: inset 0 0 0 1px #eadbc8;
  font-family: "Cinzel", Georgia, serif;
  font-size: 22px;
}

.support-list h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.support-list p {
  color: #5f554a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.opportunity-cta {
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 246, 229, 0.94), rgba(246, 224, 185, 0.55)), url("assets/hero-kws.png") center right / cover no-repeat;
}

.opportunity-cta p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto 24px;
}

.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(189, 133, 47, 0.18);
  border-radius: 50%;
}

.about-showcase {
  position: relative;
}

.about-showcase img {
  object-position: center right;
}

.showcase-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  min-width: 210px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, rgba(156, 100, 28, 0.92), rgba(63, 44, 19, 0.82));
  box-shadow: 0 16px 35px rgba(55, 36, 12, 0.22);
}

.showcase-card b {
  display: block;
  font-size: 40px;
  line-height: 0.9;
  letter-spacing: -1px;
}

.showcase-card span {
  display: block;
  margin-top: 8px;
  color: #f5dfb5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(380px, 1.2fr);
  gap: 70px;
  align-items: start;
  background: #fff;
}

.about-intro h2,
.about-product-copy h2,
.about-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
}

.intro-copy {
  display: grid;
  gap: 20px;
  color: #4d443b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.about-values {
  padding-top: 54px;
  background: linear-gradient(#fffaf4, #fff);
}

.commitment-section {
  background: #fff;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.commitment-grid article {
  min-height: 210px;
  padding: 28px 26px;
  border: 1px solid #eadbc8;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff 0%, #fffaf4 100%);
}

.commitment-grid i {
  margin-bottom: 16px;
}

.commitment-grid h3 {
  margin: 0 0 11px;
  font-size: 16px;
}

.commitment-grid p {
  color: #5f554a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.68;
}

.about-products {
  display: grid;
  grid-template-columns: minmax(310px, 0.76fr) minmax(480px, 1.24fr);
  gap: 54px;
  align-items: center;
  background: linear-gradient(110deg, #fffaf3, #fff);
  border-top: 1px solid #f0e5d7;
  border-bottom: 1px solid #f0e5d7;
}

.about-product-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  color: #4d443b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.78;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.product-strip img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border: 1px solid #eadbc8;
  border-radius: 8px;
  background: #f6ead9;
  box-shadow: 0 10px 22px rgba(73, 57, 33, 0.1);
}

.about-cta {
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 246, 229, 0.94), rgba(246, 224, 185, 0.55)), url("assets/hero-kws.png") center right / cover no-repeat;
}

.about-cta p:not(.eyebrow) {
  max-width: 610px;
  margin: 14px auto 24px;
  color: #3f372f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 145px 1fr 160px;
    padding: 0 24px;
  }

  .main-nav {
    gap: 20px;
  }

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

  .hero-art {
    width: 100%;
    opacity: 0.62;
  }

  .hero-copy {
    padding-left: 44px;
  }

  .plans,
  .story-grid,
  .promotion,
  .page-hero,
  .about-intro,
  .about-products,
  .opportunity-split {
    grid-template-columns: 1fr;
  }

  .step-row,
  .why-grid,
  .value-grid,
  .product-grid,
  .leader-grid,
  .commitment-grid,
  .opportunity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-strip {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .product-strip img {
    height: auto;
  }

  .step-row article::after,
  .why-grid article::after {
    display: none;
  }

  footer {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    height: auto;
    min-height: 75px;
    grid-template-columns: 1fr auto;
    padding: 14px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: 14px;
    border-top: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    padding: 42px 22px 118px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .subtitle {
    font-size: 21px;
  }

  .hero-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 12px;
    margin-top: 36px;
  }

  .hero-points article::after {
    display: none;
  }

  .promo-badge {
    top: 415px;
    right: 24px;
    width: 118px;
    height: 118px;
    font-size: 11px;
  }

  section {
    padding: 38px 20px;
  }

  .why-grid,
  .step-row,
  .plans,
  .story-grid,
  .promo-icons,
  .value-grid,
  .stats-band,
  .product-grid,
  .leader-grid,
  .commitment-grid,
  .product-strip,
  .opportunity-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .product-landing,
  .stories-page {
    padding-top: 42px;
  }

  .image-panel img {
    height: 310px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 390px;
    margin: 0 auto;
  }

  .leader-grid img {
    height: 220px;
  }

  .about-intro,
  .about-products,
  .opportunity-split {
    gap: 26px;
  }

  .support-list article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .support-list b {
    margin: 0 auto;
  }

  .showcase-card {
    right: 16px;
    bottom: 16px;
    min-width: 168px;
    padding: 18px;
  }

  .showcase-card b {
    font-size: 32px;
  }

  .product-strip img {
    max-width: 300px;
    margin: 0 auto;
  }

  .plan {
    padding: 38px 28px 27px;
  }

  .ribbon {
    left: 42px;
  }

  .seal {
    right: -4px;
  }

  .promotion {
    text-align: center;
  }

  .time-boxes {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .future {
    min-height: 360px;
    padding: 45px 22px;
    align-items: flex-start;
    background-position: center bottom;
  }

  .future h2 {
    font-size: 40px;
  }

  footer {
    padding: 34px 25px;
  }
}
