:root {
  --green-950: #062b25;
  --green-900: #083b32;
  --green-800: #0d5143;
  --green-700: #176a57;
  --gold-500: #d8aa45;
  --gold-300: #f0d78f;
  --cream-50: #fbf8ef;
  --cream-100: #f4efdf;
  --ink: #15332d;
  --muted: #62736d;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  height: 84px;
  padding: 0 clamp(24px, 5vw, 78px);
  background: rgba(251, 248, 239, 0.96);
  border-bottom: 1px solid rgba(8, 59, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  background: var(--green-900);
}
.brand-mark svg, .trust-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand strong, .brand small { display: block; }
.brand strong { letter-spacing: 0.18em; font-size: 14px; }
.brand small { color: #7e8c86; font-size: 8px; letter-spacing: 0.17em; margin-top: 3px; }

nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); font-size: 14px; font-weight: 600; color: #40534d; }
nav a { transition: color 180ms ease; }
nav a:hover, nav a:focus-visible { color: var(--green-700); }

.button {
  min-height: 50px;
  padding: 0 27px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4cd68, #d8a63d);
  color: #062f28;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 13px 30px rgba(147, 101, 18, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 17px 34px rgba(147, 101, 18, 0.3); }
.button-small { min-height: 43px; padding-inline: 22px; }

.hero-slider {
  position: relative;
  background: var(--green-950);
  overflow: hidden;
  isolation: isolate;
}
.slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 2078 / 757;
  background: var(--green-950);
}
.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity 700ms ease, transform 1100ms ease, visibility 700ms ease;
  pointer-events: none;
}
.slider-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-arrow {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(4, 40, 34, 0.45);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}
.slider-arrow:hover, .slider-arrow:focus-visible {
  background: rgba(4, 40, 34, 0.85);
  transform: translateY(-50%) scale(1.05);
}
.slider-arrow span { display: block; margin-top: -4px; font-family: Georgia, serif; font-size: 42px; line-height: 1; }
.slider-arrow-left { left: clamp(12px, 2vw, 34px); }
.slider-arrow-right { right: clamp(12px, 2vw, 34px); }
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 7;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}
.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}
.slider-dots button.is-active { width: 30px; background: var(--gold-300); border-color: var(--gold-300); }
.slider-mobile-copy { display: none; }

.trust-strip {
  max-width: 1180px;
  margin: -34px auto 0;
  padding: 25px 30px;
  position: relative;
  z-index: 4;
  background: #fffdf8;
  border: 1px solid rgba(8, 59, 50, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(34, 70, 60, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-strip > div { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 4px 20px; border-right: 1px solid rgba(8, 59, 50, 0.12); }
.trust-strip > div:last-child { border-right: 0; }
.trust-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--green-700); }
.trust-icon svg { width: 36px; height: 36px; }
.trust-strip strong, .trust-strip small { display: block; }
.trust-strip strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; }
.trust-strip small { margin-top: 3px; color: var(--muted); font-size: 12px; }

.section { max-width: 1240px; margin: 0 auto; padding: 112px clamp(24px, 4vw, 52px); }
.section-heading { max-width: 800px; text-align: center; margin: 0 auto 54px; }
.section-heading.compact { margin-bottom: 48px; }
.eyebrow { margin: 0 0 16px; color: #a47a24; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .product-copy h2 { font-family: Georgia, "Times New Roman", serif; }
h2 { margin-bottom: 18px; color: var(--green-950); font-size: clamp(36px, 4.5vw, 60px); line-height: 1.06; font-weight: 500; letter-spacing: -0.035em; }
.section-heading > p:last-child, .faq-intro > p, .product-intro { color: var(--muted); font-size: 17px; line-height: 1.75; }
.benefits-section { padding-top: 118px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card {
  min-height: 285px;
  padding: 34px;
  border-radius: 26px;
  background: #fffdf8;
  border: 1px solid rgba(8, 59, 50, 0.1);
  box-shadow: 0 18px 45px rgba(46, 76, 67, 0.07);
  position: relative;
  overflow: hidden;
}
.benefit-card::after { content: ""; width: 130px; height: 130px; border: 1px solid rgba(216, 170, 69, 0.35); border-radius: 50%; position: absolute; right: -62px; bottom: -62px; }
.benefit-card > span { color: #b98a2b; font-family: Georgia, "Times New Roman", serif; font-size: 42px; }
.benefit-card h3 { margin: 46px 0 13px; color: var(--green-900); font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; }
.benefit-card p { color: var(--muted); line-height: 1.7; font-size: 14px; }

.product-section {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: var(--green-950);
  color: white;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
}
.product-visual { min-height: 560px; position: relative; display: grid; place-items: center; }
.product-visual::after { content: ""; position: absolute; width: 72%; height: 32px; bottom: 52px; background: rgba(0, 0, 0, 0.45); filter: blur(18px); border-radius: 50%; }
.product-visual img { width: min(500px, 94%); position: relative; z-index: 2; border-radius: 34px; box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35); }
.gold-orbit { width: 500px; height: 500px; max-width: 92%; max-height: 92%; border: 1px solid rgba(216, 170, 69, 0.6); border-radius: 50%; position: absolute; }
.gold-orbit::before, .gold-orbit::after { content: ""; position: absolute; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 22px rgba(216, 170, 69, 0.8); }
.gold-orbit::before { width: 9px; height: 9px; left: 10%; top: 15%; }
.gold-orbit::after { width: 6px; height: 6px; right: 8%; bottom: 18%; }
.product-stamp {
  position: absolute;
  right: 4%;
  bottom: 14%;
  z-index: 3;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  display: grid;
  place-items: center;
  color: var(--gold-300);
  font-size: 12px;
  letter-spacing: 0.14em;
  background: rgba(6, 43, 37, 0.86);
}
.product-copy .eyebrow { color: var(--gold-300); }
.product-copy h2 { margin: 0 0 20px; color: white; font-size: clamp(50px, 6vw, 78px); font-weight: 500; line-height: 1; }
.product-copy h2 em { color: var(--gold-300); font-weight: 400; }
.product-intro { max-width: 620px; color: #cddbd7; }
.feature-list { list-style: none; padding: 8px 0 4px; margin: 0 0 30px; display: grid; gap: 15px; }
.feature-list li { display: flex; align-items: center; gap: 13px; color: #eef4f1; }
.feature-list span { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; color: var(--green-950); background: var(--gold-300); font-weight: 900; }
.product-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--green-700); font-weight: 800; font-size: 14px; }
.product-copy .text-link { color: var(--gold-300); }
.text-link span { font-size: 21px; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.microcopy { margin: 22px 0 0; color: #91aaa3; font-size: 12px; }

.course-section {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
  gap: 28px;
  align-items: stretch;
  background:
    radial-gradient(circle at 8% 12%, rgba(216, 170, 69, 0.14), transparent 24%),
    #f2ecdc;
}
.course-offer {
  padding: clamp(34px, 5vw, 58px);
  border-radius: 34px;
  position: relative;
  color: white;
  background: linear-gradient(145deg, #0d5949, var(--green-950));
  box-shadow: 0 26px 65px rgba(6, 43, 37, 0.22);
  overflow: hidden;
}
.course-offer::after {
  content: "";
  width: 280px;
  height: 280px;
  border: 1px solid rgba(240, 215, 143, 0.3);
  border-radius: 50%;
  position: absolute;
  right: -120px;
  top: -130px;
}
.course-offer > * { position: relative; z-index: 1; }
.course-offer .eyebrow { color: var(--gold-300); }
.course-duration {
  width: fit-content;
  margin: 0 0 24px;
  padding: 9px 14px;
  border: 1px solid rgba(240, 215, 143, 0.42);
  border-radius: 999px;
  display: block;
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.course-offer h2 { color: white; font-size: clamp(38px, 4.1vw, 56px); }
.course-offer > p:not(.eyebrow) { color: #c9d9d4; font-size: 15px; line-height: 1.75; }
.course-includes { padding: 8px 0 3px; margin: 0 0 30px; list-style: none; display: grid; gap: 14px; }
.course-includes li { display: flex; align-items: center; gap: 12px; color: #f1f6f4; font-size: 14px; }
.course-includes span { width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; color: var(--green-950); background: var(--gold-300); font-weight: 900; }
.course-offer > small { max-width: 470px; margin-top: 18px; display: block; color: #95afa7; font-size: 10px; line-height: 1.6; }
.progress-panel {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(8, 59, 50, 0.1);
  border-radius: 34px;
  background: #fffdf8;
  box-shadow: 0 20px 55px rgba(46, 76, 67, 0.08);
}
.progress-panel h2 { max-width: 700px; font-size: clamp(38px, 4vw, 54px); }
.progress-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.progress-grid article { min-height: 190px; padding: 24px; border: 1px solid rgba(8, 59, 50, 0.1); border-radius: 20px; background: #faf6eb; }
.progress-grid article:last-child { grid-column: 1 / -1; min-height: 0; }
.progress-grid article > span { color: #b98a2b; font-family: Georgia, "Times New Roman", serif; font-size: 25px; }
.progress-grid h3 { margin: 22px 0 9px; color: var(--green-900); font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 500; }
.progress-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.course-disclaimer { margin: 22px 0 0; padding: 16px 18px; border-left: 3px solid var(--gold-500); color: #66766f; background: #f3eddd; font-size: 11px; line-height: 1.65; }
.course-disclaimer strong { color: var(--green-900); }

.certificate-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(430px, 1.12fr);
  gap: clamp(52px, 7vw, 100px);
  align-items: center;
}
.certificate-visual {
  min-height: 670px;
  padding: 38px;
  border-radius: 34px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 18%, rgba(240, 215, 143, 0.22), transparent 27%),
    linear-gradient(145deg, #0c5748, var(--green-950));
  overflow: hidden;
}
.certificate-visual::before {
  content: "";
  width: 440px;
  height: 440px;
  border: 1px solid rgba(240, 215, 143, 0.38);
  border-radius: 50%;
  position: absolute;
  left: -190px;
  bottom: -210px;
}
.certificate-frame {
  width: min(100%, 440px);
  padding: 13px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  background: #ffffff;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
  transform: rotate(-0.6deg);
}
.certificate-image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid #d9d8d2;
  border-radius: 10px;
}
.certificate-image-wrap img { width: 100%; }
.certificate-recipient-mask {
  position: absolute;
  left: 7.2%;
  top: 21.5%;
  width: 50%;
  height: 8.6%;
  background: #ffffff;
  box-shadow: 0 0 9px 7px rgba(255, 255, 255, 0.98);
}
.certificate-open {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  background: rgba(6, 43, 37, 0.88);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 800;
  transform: translateX(-50%);
  white-space: nowrap;
}
.certificate-open span { color: var(--gold-300); font-size: 16px; }
.authority-label {
  width: fit-content;
  margin: 0 0 24px;
  padding: 11px 16px 11px 11px;
  border: 1px solid rgba(8, 59, 50, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(46, 76, 67, 0.08);
}
.authority-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  background: var(--green-900);
}
.authority-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.authority-label strong, .authority-label small { display: block; }
.authority-label strong { color: var(--green-950); font-size: 13px; letter-spacing: 0.04em; }
.authority-label small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.certificate-copy h2 { max-width: 660px; }
.certificate-intro { color: var(--muted); font-size: 16px; line-height: 1.75; }
.certificate-intro strong { color: var(--green-900); }
.certificate-details {
  margin: 30px 0 32px;
  border-top: 1px solid rgba(8, 59, 50, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.certificate-details div {
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid rgba(8, 59, 50, 0.15);
}
.certificate-details div:nth-child(odd) { border-right: 1px solid rgba(8, 59, 50, 0.15); }
.certificate-details div:nth-child(even) { padding-left: 18px; }
.certificate-details div:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; }
.certificate-details dt {
  margin-bottom: 5px;
  color: #9a762c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.certificate-details dd { margin: 0; color: var(--green-950); font-size: 14px; font-weight: 750; }
.certificate-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.certificate-actions > span { color: var(--muted); font-size: 11px; }
.certificate-note {
  max-width: 650px;
  margin: 22px 0 0;
  padding-left: 15px;
  border-left: 2px solid var(--gold-500);
  color: #77857f;
  font-size: 11px;
  line-height: 1.65;
}

.confidence-break { background: var(--green-950); }
.confidence-break img { width: 100%; height: auto; }

.routine-section { padding-top: 118px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.steps::before { content: ""; position: absolute; left: 15%; right: 15%; top: 31px; border-top: 1px dashed rgba(164, 122, 36, 0.45); }
.steps article { padding: 0 32px; text-align: center; position: relative; z-index: 1; }
.steps article > span {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-900);
  border: 6px solid var(--cream-50);
  box-shadow: 0 0 0 1px rgba(8, 59, 50, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}
.steps h3 { margin-bottom: 10px; font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 500; }
.steps p { color: var(--muted); font-size: 14px; line-height: 1.7; }

.reviews-section {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: #f7f2e5;
}
.review-notice {
  max-width: 900px;
  margin: -22px auto 36px;
  padding: 13px 17px;
  border: 1px solid rgba(164, 122, 36, 0.24);
  border-radius: 14px;
  color: #695e45;
  background: #fff8e7;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}
.review-notice strong { color: #88651e; }
.reviews-marquee {
  --review-gap: 16px;
  overflow: hidden;
  padding-block: 8px 28px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.reviews-track {
  width: max-content;
  display: flex;
  gap: var(--review-gap);
  animation: reviews-marquee 105s linear infinite;
  will-change: transform;
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track { animation-play-state: paused; }
.review-card {
  width: clamp(285px, 26vw, 340px);
  flex: 0 0 auto;
  min-height: 232px;
  padding: 23px;
  border: 1px solid rgba(8, 59, 50, 0.1);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  background: #fffdf8;
  box-shadow: 0 14px 36px rgba(46, 76, 67, 0.06);
}
.review-card > div { display: flex; align-items: center; gap: 11px; }
.review-avatar { width: 39px; height: 39px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; color: var(--gold-300); background: var(--green-900); font-size: 11px; font-weight: 850; }
.review-card strong, .review-card small { display: block; }
.review-card strong { color: var(--green-950); font-size: 13px; }
.review-card small { margin-top: 3px; color: #9a762c; font-size: 9px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.review-card p { margin: 25px 0 20px; color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: 16px; line-height: 1.55; }
.review-stars { margin-top: auto; color: #d3a438; font-size: 13px; letter-spacing: 0.15em; }

@keyframes reviews-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 8px), 0, 0); }
}

.consultation-section {
  scroll-margin-top: 90px;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 8% 16%, rgba(240, 215, 143, 0.16), transparent 26%),
    linear-gradient(130deg, #062b25, #0c5042);
}
.consultation-intro .eyebrow { color: var(--gold-300); }
.consultation-intro h2 { max-width: 600px; color: white; }
.consultation-intro > p:not(.eyebrow) { max-width: 590px; color: #c5d6d0; font-size: 16px; line-height: 1.75; }
.consultation-assurance {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.consultation-assurance svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(240, 215, 143, 0.42);
  border-radius: 14px;
  fill: none;
  stroke: var(--gold-300);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.consultation-assurance strong, .consultation-assurance small { display: block; }
.consultation-assurance strong { color: #fff; font-size: 14px; }
.consultation-assurance small { margin-top: 4px; color: #a9c0b9; font-size: 12px; }
.consultation-card {
  min-height: 540px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(240, 215, 143, 0.24);
  border-radius: 30px;
  color: var(--ink);
  background: #fffdf8;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}
.consultation-card form { display: grid; gap: 20px; }
.form-heading { margin-bottom: 3px; display: flex; justify-content: space-between; gap: 18px; }
.form-heading span { color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
.form-heading strong { color: #8b7960; font-size: 10px; letter-spacing: 0.09em; text-transform: uppercase; }
.consultation-card label { display: grid; gap: 8px; color: var(--green-950); font-size: 12px; font-weight: 800; }
.consultation-card input, .consultation-card select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(8, 59, 50, 0.18);
  border-radius: 13px;
  outline: none;
  color: var(--green-950);
  background: #fff;
  font: inherit;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.consultation-card input::placeholder { color: #97a39f; }
.consultation-card input:focus, .consultation-card select:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(23, 106, 87, 0.1);
}
.form-row { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 16px; }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-submit:disabled { opacity: 0.65; cursor: wait; transform: none; }
.form-honeypot { width: 1px; height: 1px; position: absolute; left: -9999px; overflow: hidden; }
.consultation-card .consent-label { display: flex; align-items: flex-start; gap: 11px; color: #53655f; font-size: 11px; font-weight: 650; line-height: 1.55; }
.consultation-card .consent-label input { width: 18px; height: 18px; margin: 0; flex: 0 0 auto; accent-color: var(--green-700); }
.form-error { margin: -4px 0 0; padding: 11px 13px; border-radius: 10px; color: #852d2d; background: #f8dddd; font-size: 11px; line-height: 1.5; }
.form-privacy { margin: -3px 0 0; color: #7b8984; font-size: 10px; line-height: 1.6; text-align: center; }
.form-success {
  min-height: 448px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.success-mark {
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background: var(--gold-300);
  box-shadow: 0 0 0 9px rgba(240, 215, 143, 0.3);
  font-size: 28px;
  font-weight: 900;
}
.form-success h3 { max-width: 550px; margin: 0 0 18px; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(27px, 3vw, 38px); font-weight: 500; line-height: 1.16; }
.form-success blockquote { max-width: 520px; margin: 0 0 16px; color: #9a762c; font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-style: italic; line-height: 1.5; }
.form-success > p:not(.eyebrow) { color: var(--muted); font-size: 13px; }
.success-actions { margin-top: 15px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.form-reset { padding: 10px 0; border: 0; color: var(--green-700); background: transparent; cursor: pointer; font: inherit; font-size: 12px; font-weight: 800; }
.form-reset:hover, .form-reset:focus-visible { text-decoration: underline; }

.faq-section {
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: #f1ead7;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(55px, 8vw, 110px);
}
.faq-intro h2 { font-size: clamp(38px, 4.2vw, 56px); }
.faq-intro .text-link { margin-top: 8px; }
.faq-list { border-top: 1px solid rgba(8, 59, 50, 0.2); }
.faq-list details { border-bottom: 1px solid rgba(8, 59, 50, 0.2); }
.faq-list summary {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; background: rgba(8, 59, 50, 0.09); font-family: Inter, ui-sans-serif, sans-serif; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; padding: 0 52px 24px 0; margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.final-cta {
  padding: 82px max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background: linear-gradient(115deg, #073a31, #0d5949);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.final-cta::after { content: ""; width: 420px; height: 420px; border: 1px solid rgba(240, 215, 143, 0.28); border-radius: 50%; position: absolute; right: -90px; top: -180px; }
.final-cta > * { position: relative; z-index: 1; }
.final-cta .eyebrow { color: var(--gold-300); }
.final-cta h2 { max-width: 800px; margin-bottom: 14px; color: white; font-size: clamp(36px, 4vw, 54px); }
.final-cta p:last-child { margin: 0; color: #c9d9d4; }
.button-light { min-width: 190px; background: #fff8e5; box-shadow: none; }

footer {
  padding: 48px max(24px, calc((100vw - 1180px) / 2));
  background: #031f1a;
  color: #bbcbc6;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr auto;
  align-items: center;
  gap: 42px;
}
.footer-brand strong { color: white; }
footer p { margin: 0; font-size: 11px; line-height: 1.65; }
footer > small { text-align: right; font-size: 11px; }
footer > small a { color: var(--gold-300); text-decoration: none; }
footer > small a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .site-header nav { display: none; }
  .trust-strip { margin-inline: 24px; }
  .trust-strip, .benefit-grid, .steps { grid-template-columns: 1fr; }
  .trust-strip > div { justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(8, 59, 50, 0.12); padding-block: 15px; }
  .trust-strip > div:last-child { border-bottom: 0; }
  .product-section, .course-section, .certificate-section, .consultation-section, .faq-section { grid-template-columns: 1fr; }
  .product-copy { padding-bottom: 15px; }
  .certificate-copy { max-width: 760px; margin: 0 auto; }
  .consultation-intro { max-width: 760px; }
  .consultation-card { width: 100%; max-width: 760px; }
  .steps { gap: 34px; }
  .steps::before { display: none; }
  footer { grid-template-columns: 1fr; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  footer > small { text-align: left; }
}

@media (max-width: 700px) {
  .site-header { height: 72px; padding-inline: 18px; }
  .site-header .button { min-height: 40px; padding-inline: 17px; font-size: 12px; }
  .brand strong { font-size: 12px; }
  .brand small { display: none; }
  .brand-mark { width: 34px; height: 34px; }
  .slider-track { aspect-ratio: 2078 / 757; }
  .slider-slide img { object-fit: contain; }
  .slider-arrow { width: 38px; height: 38px; top: 18.2vw; }
  .slider-arrow span { font-size: 33px; }
  .slider-dots { top: calc(36.43vw - 25px); bottom: auto; }
  .slider-mobile-copy { display: block; padding: 38px 24px 72px; color: white; text-align: center; background: var(--green-950); }
  .slider-mobile-copy h1 { margin-bottom: 16px; font-size: 40px; line-height: 1.03; font-weight: 500; }
  .slider-mobile-copy > p:not(.eyebrow) { color: #c8dad3; line-height: 1.6; }
  .trust-strip { margin-top: -34px; margin-inline: 16px; padding: 16px 22px; }
  .section { padding: 80px 22px; }
  .section-heading { margin-bottom: 38px; }
  h2 { font-size: 38px; }
  .benefit-card { min-height: 245px; }
  .product-section { padding-top: 62px; }
  .product-visual { min-height: 390px; }
  .product-stamp { right: 1%; bottom: 6%; }
  .product-copy h2 { font-size: 52px; }
  .product-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .course-offer, .progress-panel { padding: 30px 22px; border-radius: 24px; }
  .progress-grid { grid-template-columns: 1fr; }
  .progress-grid article:last-child { grid-column: auto; }
  .review-card { width: min(82vw, 320px); min-height: 205px; }
  .certificate-visual { min-height: 0; padding: 24px; border-radius: 24px; }
  .certificate-frame { width: min(100%, 390px); }
  .certificate-details { grid-template-columns: 1fr; }
  .certificate-details div:nth-child(odd) { border-right: 0; }
  .certificate-details div:nth-child(even) { padding-left: 0; }
  .certificate-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .consultation-card { min-height: 0; padding: 26px 20px; border-radius: 22px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
  .form-row { grid-template-columns: 1fr; }
  .form-success { min-height: 490px; }
  .confidence-break { overflow: hidden; }
  .confidence-break img { width: 180%; max-width: none; transform: translateX(-40%); }
  .faq-section { gap: 42px; }
  .final-cta { padding-top: 70px; padding-bottom: 70px; }
  footer { padding-top: 42px; padding-bottom: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reviews-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .reviews-track { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
