:root {
  --color-black: #170916;
  --color-graphite: #241022;
  --color-graphite-soft: #33192e;
  --color-ivory: #f7f1e8;
  --color-cream: #eee3d4;
  --color-gold: #c7a15a;
  --color-gold-light: #e0c48f;
  --color-ink: #211f1c;
  --color-muted: #746e66;
  --color-border-light: rgba(33, 31, 28, 0.14);
  --color-border-dark: rgba(199, 161, 90, 0.34);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: 1220px;
  --gutter: clamp(18px, 4vw, 56px);
  --section-y: clamp(62px, 7.8vw, 108px);
  --radius: 8px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-ivory);
  font-family: var(--font-body);
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--color-gold);
  color: var(--color-black);
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: block;
  background: transparent;
  border-bottom: 0;
}

.site-header.is-scrolled {
  background: rgba(23, 9, 22, 0.86);
  border-bottom: 1px solid rgba(199, 161, 90, 0.22);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 82px;
}

.desktop-nav,
.header__cta,
.menu-toggle {
  display: none !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: clamp(156px, 17vw, 250px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
  color: rgba(247, 241, 232, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.desktop-nav a {
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--color-gold-light);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid rgba(199, 161, 90, 0.62);
  border-radius: 2px;
  background: linear-gradient(135deg, #d8b66f 0%, #c7a15a 46%, #ead8aa 100%);
  color: var(--color-ink);
  padding: 16px 28px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold-light);
  box-shadow: 0 20px 50px rgba(199, 161, 90, 0.18);
}

.button img {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover img {
  transform: translateX(4px);
}

.button--small {
  min-height: 42px;
  padding: 11px 16px;
  background: rgba(44, 16, 38, 0.42);
  color: var(--color-ivory);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(199, 161, 90, 0.48);
  background: rgba(44, 16, 38, 0.28);
  border-radius: 4px;
}

.menu-toggle img {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  display: block;
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 4, 13, 0.66);
  opacity: 0;
  transition: opacity 180ms ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(84vw, 360px);
  height: 100%;
  padding: 20px;
  background: rgba(25, 8, 23, 0.98);
  color: var(--color-ivory);
  border-left: 1px solid rgba(199, 161, 90, 0.28);
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.mobile-menu__top img:first-child {
  width: 174px;
}

.mobile-menu__top button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(199, 161, 90, 0.42);
  background: transparent;
  border-radius: 4px;
}

.mobile-menu__top button img {
  width: 18px;
  margin: auto;
}

.mobile-menu a {
  padding-block: 12px;
  border-bottom: 1px solid rgba(247, 241, 232, 0.12);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: min(100svh, 790px);
  overflow: clip;
  color: var(--color-ivory);
  background: var(--color-black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #190817;
  background-image:
    radial-gradient(circle at 66% 40%, rgba(199, 161, 90, 0.2), transparent 24rem),
    linear-gradient(90deg, rgba(28, 8, 25, 0.9) 0%, rgba(42, 14, 35, 0.68) 44%, rgba(40, 12, 34, 0.18) 100%),
    url("./assets/backgrounds/bg-hero-detail-desktop-v3.webp");
  background-position: center, center, center top;
  background-repeat: no-repeat;
  background-size: auto, auto, 100% auto;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: min(100svh, 790px);
  display: grid;
  grid-template-columns: minmax(560px, 0.98fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(22px, 4.5vw, 64px);
  padding-top: 82px;
}

.hero__copy {
  max-width: 720px;
  padding-block: clamp(36px, 5.8vw, 72px);
}

.eyebrow,
.section-number {
  margin: 0 0 16px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(52px, 5.2vw, 74px);
}

h2 {
  font-size: clamp(36px, 4vw, 58px);
}

p {
  margin: 0;
}

.hero__lead {
  max-width: 590px;
  margin-top: 22px;
  color: rgba(247, 241, 232, 0.84);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.62;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(199, 161, 90, 0.44);
  border-radius: 999px;
  background: rgba(47, 17, 40, 0.42);
  color: rgba(247, 241, 232, 0.92);
  font-size: 13px;
  font-weight: 600;
}

.hero__badges img {
  width: 21px;
  height: 21px;
}

.button--hero {
  width: min(360px, 100%);
  margin-top: 28px;
}

.hero__bullets {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(247, 241, 232, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.hero__bullets li {
  position: relative;
  padding-left: 22px;
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-gold);
  box-shadow: 0 0 14px rgba(199, 161, 90, 0.36);
}

.hero__microcopy {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  max-width: 500px;
  margin-top: 18px;
  color: rgba(247, 241, 232, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.hero__microcopy img {
  width: 27px;
  height: 27px;
}

.hero__portrait {
  align-self: end;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.hero__portrait img {
  width: auto;
  height: min(73svh, 690px);
  max-width: none;
  max-height: 690px;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.42));
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section--light {
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.94), rgba(247, 241, 232, 0.88)),
    url("./assets/backgrounds/bg-problem-light-v3.webp") center / cover no-repeat;
  color: var(--color-ink);
}

.problem-turn {
  padding-block: clamp(60px, 7.2vw, 86px);
}

.dual-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 76px);
}

.editorial-block {
  position: relative;
  padding-right: clamp(16px, 3vw, 46px);
}

.editorial-block + .editorial-block {
  padding-left: clamp(16px, 3vw, 46px);
  padding-right: 0;
  border-left: 1px solid rgba(33, 31, 28, 0.12);
}

.editorial-block h2 {
  max-width: 620px;
  font-size: clamp(35px, 3.45vw, 48px);
  line-height: 1.03;
}

.editorial-block p:not(.section-number),
.info-column p,
.about-copy p,
.apply-reason p,
.final-cta p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.72;
}

blockquote {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  margin: 28px 0 0;
  padding: 17px 18px;
  border: 1px solid rgba(199, 161, 90, 0.44);
  background: rgba(199, 161, 90, 0.08);
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.12;
}

blockquote img {
  width: 22px;
}

.editorial-block--illustrated {
  min-height: 360px;
}

.line-face {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: min(210px, 42%);
  aspect-ratio: 1 / 1.25;
  opacity: 0.5;
}

.line-face::before,
.line-face::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(199, 161, 90, 0.45);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 58% 42% 48% 52%;
  transform: rotate(-28deg);
}

.line-face::after {
  inset: 28% 18% 22% 8%;
  border-color: transparent;
  border-left: 1px solid rgba(199, 161, 90, 0.5);
  border-bottom: 1px solid rgba(199, 161, 90, 0.35);
  transform: rotate(18deg);
}

.method-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(41, 13, 34, 0.84), rgba(25, 8, 23, 0.88)),
    url("./assets/backgrounds/bg-method-dark-v3.webp") center / cover no-repeat;
  color: var(--color-ivory);
}

.section-heading--center {
  display: grid;
  grid-template-columns: 1fr minmax(0, auto) 1fr;
  align-items: end;
  gap: 28px;
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading--center::before,
.section-heading--center::after {
  content: "";
  height: 1px;
  background: rgba(199, 161, 90, 0.44);
}

.section-heading--center .section-number,
.section-heading--center h2 {
  grid-column: 2;
}

.section-heading--center h2 {
  margin-top: 6px;
}

.method-section .section-heading--center {
  display: block;
  max-width: none;
  text-align: center;
}

.method-section .section-heading--center::before,
.method-section .section-heading--center::after {
  display: none;
}

.method-section .section-heading--center h2 {
  white-space: nowrap;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(199, 161, 90, 0.42);
}

.method-card {
  min-height: 292px;
  padding: clamp(22px, 2.2vw, 30px) 18px;
  text-align: center;
  border-right: 1px solid rgba(199, 161, 90, 0.28);
  background: rgba(72, 26, 56, 0.18);
}

.method-card:last-child {
  border-right: 0;
}

.method-card img {
  width: clamp(78px, 6.1vw, 98px);
  height: clamp(78px, 6.1vw, 98px);
  margin: 0 auto clamp(18px, 2.4vw, 28px);
}

.method-card p {
  margin: 0 auto;
  max-width: 180px;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.55vw, 23px);
  line-height: 1.08;
}

.method-card span {
  display: block;
  margin: 14px auto 0;
  max-width: 190px;
  color: rgba(247, 241, 232, 0.76);
  font-size: 13.5px;
  line-height: 1.5;
}

.method-closing {
  max-width: 620px;
  margin: 36px auto 0;
  color: var(--color-gold-light);
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.results-section {
  overflow: hidden;
  padding-block: clamp(58px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.97), rgba(247, 241, 232, 0.9)),
    url("./assets/backgrounds/bg-light-02-v2.webp") center / cover no-repeat;
  color: var(--color-ink);
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5.8vw, 76px);
  align-items: center;
}

.results-copy h2 {
  max-width: 560px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.02;
}

.results-copy p:not(.section-number) {
  max-width: 640px;
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.72;
}

.results-carousel {
  min-width: 0;
}

.results-carousel__viewport {
  overflow: hidden;
  border: 1px solid rgba(199, 161, 90, 0.42);
  background: rgba(255, 252, 246, 0.52);
}

.results-carousel__track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.result-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
}

.result-slide__visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 330px;
  border-right: 1px solid rgba(199, 161, 90, 0.28);
}

.result-frame {
  position: relative;
  display: grid;
  place-items: end start;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(199, 161, 90, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(251, 246, 237, 0.82), rgba(237, 225, 210, 0.86));
}

.result-frame + .result-frame {
  border-left: 1px solid rgba(199, 161, 90, 0.22);
}

.result-frame::before {
  content: "";
  position: absolute;
  inset: 20% 18%;
  border: 1px solid rgba(199, 161, 90, 0.42);
  border-radius: 48% 52% 45% 55%;
  opacity: 0.42;
}

.result-frame::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 118px;
  left: 50%;
  top: 48%;
  border: 1px solid rgba(33, 31, 28, 0.1);
  border-left-color: rgba(199, 161, 90, 0.4);
  border-bottom-color: transparent;
  border-radius: 58% 42% 46% 54%;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.result-frame--after {
  background:
    radial-gradient(circle at 50% 36%, rgba(232, 202, 137, 0.25), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(231, 215, 195, 0.86));
}

.result-frame span {
  position: relative;
  z-index: 1;
  color: rgba(33, 31, 28, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.result-slide__copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 3vw, 40px);
}

.result-kicker {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.result-slide h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.45vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.result-slide__copy p:not(.result-kicker) {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.results-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.carousel-button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(199, 161, 90, 0.48);
  border-radius: 999px;
  color: var(--color-gold);
  background: rgba(255, 252, 246, 0.52);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.carousel-button:first-child img {
  transform: rotate(180deg);
}

.carousel-button img {
  width: 18px;
  height: 18px;
}

.carousel-button:hover {
  border-color: rgba(232, 202, 137, 0.86);
  background: rgba(199, 161, 90, 0.12);
  transform: translateY(-1px);
}

.results-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.results-carousel__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(199, 161, 90, 0.62);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.results-carousel__dots button.is-active {
  background: var(--color-gold);
  box-shadow: 0 0 16px rgba(199, 161, 90, 0.42);
}

.learning-audience {
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.96), rgba(247, 241, 232, 0.91)),
    url("./assets/backgrounds/bg-learning-light-v3.webp") center / cover no-repeat;
}

.audience-learning {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

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

.info-column {
  padding: 0 clamp(22px, 3.5vw, 48px);
  border-right: 1px solid rgba(33, 31, 28, 0.12);
}

.info-column:first-child {
  padding-left: 0;
}

.info-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.audience-learning .info-column {
  padding: 0;
  border-right: 0;
}

.audience-learning .info-column + .info-column {
  padding-left: clamp(24px, 4vw, 58px);
  border-left: 1px solid rgba(33, 31, 28, 0.12);
}

.info-column h2 {
  font-size: clamp(33px, 3.25vw, 44px);
  line-height: 1.04;
}

.button--learning {
  width: min(360px, 100%);
  margin-top: 30px;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}

.check-list img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.note-box {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(199, 161, 90, 0.4);
  color: var(--color-muted);
  background: rgba(199, 161, 90, 0.05);
  font-size: 15px;
  line-height: 1.55;
}

.about-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(34, 10, 29, 0.9), rgba(58, 20, 46, 0.76)),
    url("./assets/backgrounds/bg-about-dark-v3.webp") center / cover no-repeat;
  color: var(--color-ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.about-copy h2 {
  max-width: 780px;
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1.02;
}

.about-copy p {
  max-width: 760px;
  color: rgba(247, 241, 232, 0.78);
}

.about-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-media figure {
  margin: 0;
  height: min(520px, 68vw);
  overflow: hidden;
  border: 1px solid rgba(199, 161, 90, 0.56);
  background: rgba(72, 26, 56, 0.18);
}

.about-media figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.authority-seal {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding-block: 22px;
  border-top: 1px solid rgba(199, 161, 90, 0.34);
  border-bottom: 1px solid rgba(199, 161, 90, 0.34);
}

.authority-seal img {
  width: 48px;
  height: 48px;
}

.authority-seal span {
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
}

.authority-seal small {
  color: rgba(247, 241, 232, 0.72);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.faq-section {
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.96), rgba(247, 241, 232, 0.9)),
    url("./assets/backgrounds/bg-apply-light-v3.webp") center / cover no-repeat;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.faq-heading h2 {
  font-size: clamp(42px, 4.1vw, 60px);
}

.faq-heading p {
  max-width: 560px;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(33, 31, 28, 0.12);
  background: rgba(255, 252, 246, 0.58);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.12;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  margin-left: 18px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.68;
}

.format-section {
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.95), rgba(247, 241, 232, 0.9)),
    url("./assets/backgrounds/bg-format-light-v3.webp") center / cover no-repeat;
}

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

.format-intro {
  max-width: 720px;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.feature-card {
  min-height: 220px;
  padding: 26px 34px;
  text-align: center;
  border-right: 1px solid rgba(33, 31, 28, 0.12);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.feature-card p,
.format-note {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
}

.format-note {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.deliverables-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  margin-top: clamp(36px, 5.4vw, 68px);
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(33, 31, 28, 0.14);
  background: rgba(255, 252, 246, 0.58);
}

.deliverables-panel h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 1.02;
}

.deliverables-panel p:not(.section-number) {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.deliverables-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverables-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}

.deliverables-list img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.apply-reason {
  padding-block: clamp(56px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.96), rgba(247, 241, 232, 0.9)),
    url("./assets/backgrounds/bg-apply-light-v3.webp") center / cover no-repeat;
}

.apply-reason__grid,
.final-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
}

.apply-reason h2 {
  font-size: clamp(38px, 4vw, 56px);
}

.final-cta {
  padding-block: clamp(56px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(34, 10, 29, 0.9), rgba(60, 20, 47, 0.76)),
    url("./assets/backgrounds/bg-cta-dark-v3.webp") center / cover no-repeat;
  color: var(--color-ivory);
}

.final-cta h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.final-cta p {
  color: rgba(247, 241, 232, 0.74);
}

.footer {
  background: #140713;
  color: rgba(247, 241, 232, 0.66);
  border-top: 1px solid rgba(199, 161, 90, 0.22);
}

.footer__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
}

.footer img {
  width: 30px;
  height: 30px;
}

.mobile-sticky {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 70;
  width: auto;
  display: none;
  min-height: 54px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  visibility: hidden;
  pointer-events: none;
}

.modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 4, 13, 0.72);
  opacity: 0;
  transition: opacity 180ms ease;
}

.modal.is-open .modal__backdrop {
  opacity: 1;
}

.modal__panel {
  position: relative;
  width: min(calc(100% - 32px), 820px);
  max-height: min(88svh, 900px);
  margin: 6svh auto;
  overflow: hidden;
  border: 1px solid rgba(199, 161, 90, 0.42);
  border-radius: 8px;
  background: var(--color-ivory);
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(199, 161, 90, 0.46);
  border-radius: 4px;
  background: rgba(247, 241, 232, 0.9);
}

.modal__close img {
  width: 18px;
  margin: auto;
}

.modal__content {
  max-height: min(88svh, 900px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 56px);
}

.modal__content h2 {
  max-width: 620px;
  font-size: clamp(36px, 4vw, 56px);
}

.modal__content > p:not(.section-number),
.form-status {
  margin-top: 14px;
  color: var(--color-muted);
  line-height: 1.62;
}

form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(33, 31, 28, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--color-ink);
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 500;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #a33;
  box-shadow: 0 0 0 3px rgba(170, 51, 51, 0.12);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status.is-error {
  color: #8f1f1f;
}

.form-status.is-success {
  color: #236037;
}

.button--submit {
  width: 100%;
  margin-top: 4px;
}

.success-view {
  text-align: center;
}

.success-view > img {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
}

.success-view .button {
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

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

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

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(290px, 0.7fr);
  }

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

  .method-card {
    border-bottom: 1px solid rgba(199, 161, 90, 0.28);
  }

  .method-card:nth-child(3) {
    border-right: 0;
  }

  .method-card:nth-child(n + 4) {
    border-bottom: 0;
  }
}

@media (max-width: 920px) {
  .header__cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__bg {
    background:
      linear-gradient(180deg, rgba(32, 9, 27, 0.68) 0%, rgba(24, 7, 22, 0.92) 44%, rgba(17, 6, 16, 0.97) 100%),
      url("./assets/backgrounds/bg-hero-detail-mobile-v3.webp") center top / cover no-repeat;
  }

  .final-cta {
    background:
      linear-gradient(180deg, rgba(38, 12, 32, 0.9), rgba(23, 7, 21, 0.88)),
      url("./assets/backgrounds/bg-cta-dark-v3.webp") center / cover no-repeat;
  }

  .hero__inner {
    min-height: auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    padding-top: 76px;
    gap: 0;
  }

  .hero__portrait {
    width: 100%;
    min-height: auto;
    height: 42svh;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
  }

  .hero__portrait img {
    width: min(82vw, 360px);
    height: auto;
    max-height: none;
    align-self: flex-start;
    object-position: top center;
    transform: translateX(10px);
  }

  .hero__copy {
    padding: 26px 0 84px;
  }

  h1 {
    font-size: clamp(50px, 13.2vw, 70px);
  }

  .hero__lead {
    margin-top: 22px;
  }

  .dual-panel,
  .triple-panel,
  .audience-learning,
  .about-grid,
  .results-layout,
  .faq-layout,
  .apply-reason__grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .editorial-block,
  .editorial-block + .editorial-block,
  .info-column,
  .info-column:first-child,
  .info-column:last-child,
  .audience-learning .info-column,
  .audience-learning .info-column + .info-column {
    padding: 0;
    border: 0;
  }

  .editorial-block + .editorial-block,
  .info-column + .info-column,
  .audience-learning .info-column + .info-column,
  .faq-list {
    margin-top: 38px;
    padding-top: 38px;
    border-top: 1px solid rgba(33, 31, 28, 0.12);
  }

  .line-face {
    position: relative;
    width: 160px;
    margin: 28px 0 0 auto;
  }

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

  .method-card:nth-child(odd),
  .method-card:nth-child(even),
  .method-card:nth-child(3),
  .method-card:nth-child(n + 4) {
    border-right: 1px solid rgba(199, 161, 90, 0.28);
    border-bottom: 1px solid rgba(199, 161, 90, 0.28);
  }

  .method-card:nth-child(even),
  .method-card:last-child {
    border-right: 0;
  }

  .method-card:last-child {
    grid-column: span 2;
    border-bottom: 0;
  }

  .method-section .section-heading--center h2 {
    white-space: normal;
  }

  .result-slide {
    grid-template-columns: 1fr;
  }

  .result-slide__visual {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 161, 90, 0.28);
  }

  .result-slide__copy {
    min-height: 240px;
  }

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

  .feature-card {
    border-right: 0;
    border-bottom: 1px solid rgba(33, 31, 28, 0.12);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .deliverables-panel {
    grid-template-columns: 1fr;
  }

  .about-media {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-media figure {
    width: min(360px, 100%);
    height: 470px;
    margin-inline: auto;
  }

  .authority-seal {
    width: min(360px, 100%);
    margin-inline: auto;
  }

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

  .mobile-sticky.is-visible {
    display: inline-flex;
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 16px;
    --section-y: 58px;
  }

  .header__inner {
    min-height: 74px;
  }

  .brand img {
    width: 172px;
  }

  .hero__portrait {
    height: 30svh;
    min-height: 228px;
  }

  .hero__portrait img {
    width: min(74vw, 272px);
  }

  .eyebrow,
  .section-number {
    font-size: 11px;
    letter-spacing: 0.15em;
  }

  h1 {
    font-size: clamp(38px, 10.8vw, 48px);
    line-height: 1.02;
  }

  .hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 22px;
  }

  .hero__lead {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero__lead {
    order: 3;
    line-height: 1.54;
  }

  .button--hero {
    order: 4;
    margin-top: 24px;
  }

  .hero__bullets {
    order: 5;
    width: min(100%, 440px);
    margin-top: 22px;
    text-align: left;
  }

  .hero__badges {
    order: 6;
    margin-top: 18px;
  }

  .hero__microcopy {
    order: 7;
  }

  h2,
  .editorial-block h2,
  .info-column h2,
  .about-copy h2,
  .apply-reason h2,
  .final-cta h2,
  .results-copy h2,
  .faq-heading h2 {
    font-size: clamp(32px, 9.2vw, 40px);
    line-height: 1.05;
  }

  .results-copy,
  .editorial-block h2,
  .info-column h2,
  .about-copy h2,
  .faq-heading {
    text-align: center;
  }

  .hero__lead,
  .editorial-block p:not(.section-number),
  .info-column p,
  .about-copy p,
  .apply-reason p,
  .final-cta p {
    font-size: 16px;
  }

  .hero__badges {
    gap: 10px;
  }

  .hero__badges span {
    min-height: 36px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .button--hero,
  .button--submit {
    width: 100%;
  }

  main {
    padding-bottom: 18px;
  }

  #para-quem,
  #metodo,
  #faq {
    padding-bottom: calc(var(--section-y) + 42px);
  }

  .hero__copy {
    padding-bottom: 94px;
  }

  .format-intro,
  .deliverables-panel p:not(.section-number) {
    font-size: 16px;
  }

  .deliverables-panel {
    padding: 24px 18px;
  }

  .deliverables-list li {
    grid-template-columns: 22px 1fr;
  }

  .results-copy p:not(.section-number),
  .result-slide__copy p:not(.result-kicker) {
    font-size: 16px;
  }

  .result-slide__visual {
    min-height: 220px;
  }

  .result-slide__copy {
    min-height: 224px;
    padding: 24px 22px;
    text-align: center;
  }

  .result-slide h3 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .results-carousel__controls {
    justify-content: center;
  }

  .carousel-button {
    width: 44px;
    height: 44px;
  }

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

  .method-card,
  .method-card:nth-child(odd),
  .method-card:nth-child(even),
  .method-card:nth-child(3),
  .method-card:nth-child(n + 4),
  .method-card:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 161, 90, 0.28);
  }

  .method-card:last-child {
    border-bottom: 0;
  }

  .method-card {
    min-height: auto;
    padding: 32px 20px;
  }

  .method-card img {
    width: 94px;
    height: 94px;
    margin-bottom: 22px;
  }

  .method-card p {
    max-width: 230px;
    font-size: 25px;
  }

  .method-card span {
    max-width: 260px;
    font-size: 14.5px;
    line-height: 1.54;
  }

  .check-list li {
    grid-template-columns: 20px 1fr;
    gap: 12px;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .faq-item summary {
    padding: 20px;
    font-size: clamp(22px, 7vw, 28px);
  }

  .faq-item p {
    padding-inline: 20px;
  }

  .section-heading--center {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading--center::before,
  .section-heading--center::after {
    display: none;
  }

  .section-heading--center .section-number,
  .section-heading--center h2 {
    grid-column: auto;
  }

  .modal__panel {
    width: calc(100% - 20px);
    max-height: 94svh;
    margin: 3svh auto;
  }

  .modal__content {
    max-height: 94svh;
    padding: 28px 18px;
  }
}
