:root {
  --navy: #1a2744;
  --navy-mid: #2c3e6b;
  --navy-dim: #4a5a82;
  --gold: #b8922a;
  --gold-warm: #c9a030;
  --gold-dim: #a07828;
  --red: #c0392b;
  --deep: #f2ede6;
  --deep-l: #f9f7f5;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  p {
    font-size: 18px;
  }
}

.brk {
  display: block;
}
@media (max-width: 767.98px) {
  .brk {
    display: unset;
  }
}


/* HERO */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #f7f4ef;
  min-height: 760px;
  padding: 90px 0 70px;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 49vw;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-meta {
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 700;
  color: #17376b;
  letter-spacing: 0.01em;
}

.hero-logo-wrap--mobile {
  display: none;
}

.hero-content {
  max-width: 610px;
  padding: 24px 15px 24px 0;
}

.hero-badge {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px !important;
}

.hero-logo-wrap {
  margin-bottom: 20px;
}

.hero-logo {
  max-width: 300px;
  height: auto;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 102px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px !important;
}

.hero-title em {
  display: block;
  font-style: italic;
  color: var(--red);
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 2vw, 22px);
  font-style: italic;
  color: var(--navy-dim);
  margin-bottom: 30px !important;
}

.hero-lead {
  max-width: 600px;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.8;
  color: var(--navy-mid);
  margin-bottom: 36px !important;
}

.hero-lead p {
  margin-bottom: 0;
  font-weight: 600;
}

.hero-lead p + p {
  margin-top: 0;
}

.hero-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-btn {
  display: inline-block;
  padding: 18px 52px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  margin-bottom: 0;
}

.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(.76, 0, .24, 1);
}

.hero-btn:hover {
  color: #fff;
  border-color: var(--navy);
}

.hero-btn:hover::before {
  transform: translateX(0);
}

.hero-btn span {
  position: relative;
  z-index: 1;
}

.price-note {
  font-size: 20px;
  color: var(--gold-dim);
  letter-spacing: 0.08em;
}

@media (max-width: 1599.98px) {
  .hero-section {
    min-height: 680px;
    padding: 72px 0 60px;
  }

  .hero-content {
    padding-right: 24px;
  }
}

@media (max-width: 1199.98px) {
  .hero-section {
    min-height: 620px;
  }

  .hero-title {
    font-size: clamp(48px, 6vw, 84px);
  }

  .hero-visual {
    width: 48vw;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 0;
    padding: 0 0 52px;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin-bottom: 28px;
  }

  .hero-image {
    height: 480px;
    object-position: center top;
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(46px, 10vw, 84px);
  }

  .hero-lead {
    max-width: 680px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 0 0 44px;
  }

  .hero-container {
      padding: 0px 20px;
  }

  .hero-visual {
    margin-bottom: 24px;
    position: relative;
  }

  .hero-image {
    height: 360px;
  }

  .hero-content .hero-logo-wrap {
    display: none;
  }

  .hero-logo-wrap--mobile {
    display: block;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    margin: 0;
  }

  .hero-logo-wrap--mobile .hero-logo {
    max-width: 180px;
    margin: 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-logo {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
  }

  .hero-badge {
    font-size: 13px;
    letter-spacing: 0.22em;
    margin-bottom: 14px !important;
  }

  .hero-title {
    font-size: clamp(42px, 14vw, 72px);
    line-height: 0.98;
  }

  .hero-sub {
    margin-bottom: 22px !important;
            font-size: 18px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 28px !important;
    text-align: left;
  }

  .hero-lead p + p {
    margin-top: 8px;
  }

  .hero-lead p {
      line-height: 1.5;
  }

  .hero-cta {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .price-note {
    font-size: 20px;
    text-align: center;
  }
}







/* SHARED SECTIONS */
.section-block {
  padding: 90px 0;
  background: #fff;
}

.section-label {
  display: block;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.section-title {
  margin-bottom: 35px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 45px);
  line-height: 1.2;
  font-weight: 500;
  color: var(--navy);
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

.section-body {
  /* max-width: 680px; */
  font-size: 20px;
  line-height: 2;
  color: var(--navy-mid);
}



/* PROBLEM SECTION */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 800px;
  margin-top: 55px;
}

.problem-list__item {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.problem-list__icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--red);
}

.problem-list__item p {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.7;
  color: var(--navy-mid);
}

.problem-section__note {
  margin-top: 55px;
  margin-bottom: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.75;
  font-weight: 500;
  color: var(--red);
}


/* DIVIDER */
.section-divider {
  padding: 0 0;
  text-align: center;
  background: #fff;
}

.section-divider img {
  display: inline-block;
  max-width: 333px;
  height: auto;
  z-index: 10;
  position: relative;
}


/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  .section-block {
    padding: 56px 0;
  }
}

@media (max-width: 767.98px) {
  .section-block {
    padding: 48px 0;
  }

  .section-label {
    font-size: 22px;
    letter-spacing: 0.1em;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .section-body,
  .problem-list__item p {
    font-size: 18px;
    line-height: 1.7;
  }

  .problem-list {
    margin-top: 24px;
    gap: 14px;
  }

  .problem-section__note {
    margin-top: 24px;
    line-height: 1.4;
  }
}







/* STORY BLOCK */
.insight-section {
  background: var(--deep-l);
}

.story-block {
  margin: 55px 0;
  padding-left: 28px;
  border-left: 3px solid var(--red);
  background: var(--deep-l);
  padding: 20px 30px;
}

.story-block__text {
  margin-bottom: 0;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.7;
  font-style: italic;
  color: var(--navy-mid);
}

/* INSIGHT */
.insight-section__question {
  margin-top: 55px;
  margin-bottom: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.75;
  color: var(--navy);
}

@media (max-width: 767.98px) {
  .story-block {
    padding-left: 20px;
    margin-top: 28px;
  }
    .story-block__text {
    font-size: 22px;
    line-height: 1.5;
  }
  .insight-section__question {
    line-height: 1.4;
  }
}




/* WHY FAILED BLOCK */

.why-failed-section {
  padding-bottom: 40px;
}

.section-label--navy-mid {
  color: var(--navy-mid);
}

.section-title--red {
  color: var(--red);
}

.problem-list--negative .problem-list__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 6px;
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.problem-list--negative .problem-list__icon::before,
.problem-list--negative .problem-list__icon::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 3px;
  width: 16px;
  height: 2px;
  background: rgba(192, 57, 43, 0.78);
}

.problem-list--negative .problem-list__icon::before {
  transform: rotate(45deg);
}

.problem-list--negative .problem-list__icon::after {
  transform: rotate(-45deg);
}

@media (max-width: 767.98px) {
  .problem-list--negative .problem-list__icon {
    width: 20px;
    height: 20px;
    margin-top: 5px;
  }

  .problem-list--negative .problem-list__icon::before,
  .problem-list--negative .problem-list__icon::after {
    top: 9px;
    left: 2px;
    width: 15px;
  }
}






/* WHY WORKS BLOCK */
.why-works-section {
      background: var(--deep-l);
}
.why-works-section .section-body p + p {
  margin-top: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  /* max-width: 720px; */
  margin-top: 55px;
}

.feature-list__item {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.feature-list__icon {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--gold-warm);
}

.feature-list__item p {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.7;
  color: var(--navy-mid);
}

@media (max-width: 767.98px) {
  .feature-list {
    margin-top: 24px;
    gap: 14px;
  }

  .feature-list__item p {
    font-size: 18px;
    line-height: 1.7;
  }
}


/* OFFER BLOCK */
.offer-section {
  padding-top: 20px;
  padding-bottom: 60px;
}
.offer-logo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.offer-logo {
  display: block;
  max-width: 320px;
  height: auto;
}

.offer-section__body p + p {
  margin-top: 18px;
}

.offer-box {
  margin-top: 24px;
  padding: 28px 36px;
  border: 1px solid rgba(184, 146, 42, 0.3);
  background: var(--deep);
}

.offer-box__text {
  margin-bottom: 0;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.7;
  color: var(--navy);
  text-align: center;
}

.offer-box__meta {
  margin-top: 18px;
  margin-bottom: 0;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.7;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

.offer-box__meta span {
  color: var(--red);
  font-size: 36px;
}

@media (max-width: 767.98px) {
  .offer-section {
    padding-top: 0px;
    padding-bottom: 40px;
  }
  .offer-logo-wrap {
    /* justify-content: flex-start; */
  }

  .offer-logo {
    max-width: 180px;
  }

  .offer-box {
    margin-top: 20px;
    padding: 22px 20px;
  }

  .offer-box__text {
    font-size: 18px;
    line-height: 1.7;
  }

  .offer-box__meta {
    font-size: 20px;
  }

  .offer-box__meta span {
    font-size: 32px;
  }
}





/* FOR WHOM BLOCK */
.for-whom-section {
  padding-top: 60px;
  padding-bottom: 40px;
}
.for-whom-group + .for-whom-group {
  margin-top: 56px;
}

.for-whom-group__title {
  margin-bottom: 0;
}

.for-whom-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 34px;
}

.for-whom-list__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  align-items: start;
}

.for-whom-list__icon {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  margin-top: 7px;
  flex-shrink: 0;
}

.for-whom-list__item p {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.8;
  color: var(--navy-mid);
}

/* positive */
.for-whom-list--positive .for-whom-list__icon::before {
  content: "✦";
  display: block;
  font-size: 16px;
  line-height: 1;
  color: var(--gold-warm);
  text-align: center;
}

/* negative */
.for-whom-list--negative .for-whom-list__icon::before,
.for-whom-list--negative .for-whom-list__icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
  background: rgba(192, 57, 43, 0.75);
}

.for-whom-list--negative .for-whom-list__icon::before {
  transform: rotate(45deg);
}

.for-whom-list--negative .for-whom-list__icon::after {
  transform: rotate(-45deg);
}

.for-whom-group--secondary .for-whom-group__title {
  opacity: 0.95;
}

@media (max-width: 767.98px) {
  .for-whom-group + .for-whom-group {
    margin-top: 40px;
  }

  .for-whom-list {
    margin-top: 24px;
    gap: 16px;
  }

  .for-whom-list__item {
    grid-template-columns: 20px 1fr;
    gap: 12px;
  }

  .for-whom-list__icon {
    width: 20px;
    height: 20px;
    margin-top: 5px;
  }

  .for-whom-list__item p {
    font-size: 18px;
    line-height: 1.7;
  }

  .for-whom-list--positive .for-whom-list__icon::before {
    font-size: 14px;
  }

  .for-whom-list--negative .for-whom-list__icon::before,
  .for-whom-list--negative .for-whom-list__icon::after {
    top: 9px;
    left: 2px;
    width: 15px;
  }
}




/* JOURNEY BLOCK */
.journey-section {
  padding-bottom: 20px;
}

.journey-row {
  display: grid;
  grid-template-columns: minmax(240px, 30%) 1fr;
  gap: 40px;
  /* align-items: center; */
  margin-top: 55px;
}

.journey-row__media {
  /* align-self: center; */
}

.journey-row__content {
  max-width: none;
}

.journey-row__content.section-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 15px;
  background: var(--deep);
}

.story-block--full {
  /* max-width: 980px; */
  margin-top: 40px;
}

.story-block__name {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.journey-section .story-block__text {
  /* max-width: 900px; */
  line-height: 1.45;
}

@media (max-width: 991.98px) {
  .journey-row {
    grid-template-columns: 260px 1fr;
    gap: 32px;
  }

  .story-block--full {
    max-width: 100%;
    margin-top: 48px;
  }

  .journey-section .story-block__text {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .journey-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
    align-items: start;
  }

  .journey-row__content.section-body {
    display: block;
  }

  .story-block--full {
    margin-top: 15px;
    margin-bottom: 35px;
  }

  .journey-section .story-block__text {
    line-height: 1.55;
  }
}





/* PILLARS BLOCK */
.pillars-section {
  padding-top: 20px;
  padding-bottom: 40px;
}

.pillars-section__intro {
  max-width: 800px;
}

.pillars-section__intro p + p {
  margin-top: 12px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 55px;
  background: rgba(184, 146, 42, 0.3);
}

.pillar-card {
  background: #fff;
  padding: 36px 26px 32px;
  text-align: center;
  transition: background 0.3s ease;
}

.pillar-card:hover {
  background: var(--deep);
}

.pillar-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  margin-bottom: 18px;
}

.pillar-card__icon img {
  max-height: 100px;
  width: auto;
}

.pillar-card__title {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.pillar-card__text {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.7;
  color: var(--navy-mid);
}

@media (max-width: 991.98px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .pillar-card {
    padding: 28px 20px 24px;
  }

  .pillar-card__icon {
    min-height: auto;
    margin-bottom: 16px;
  }

  .pillar-card__icon img {
    max-height: 64px;
  }

  .pillar-card__text {
    font-size: 18px;
    line-height: 1.7;
  }
}








/* 4 WEEKS BLOCK */
.weeks-section {
    padding-top: 50px;
    padding-bottom: 40px;
}
.weeks-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 55px;
}

.week-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  border: 1px solid rgba(184, 146, 42, 0.15);
  overflow: hidden;
  background: #fff;
}

.week-card__side {
  background: var(--deep);
  border-right: 1px solid rgba(184, 146, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
}

.week-card__side span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.week-card__body {
  padding: 34px 34px;
  background: #fff;
}

.week-card__title {
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 600;
}

.week-card__sub {
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.7;
  color: var(--gold-warm);
}

.week-card__desc {
  /* margin-bottom: 0; */
  font-size: 20px;
  line-height: 1.9;
  color: var(--navy-mid);
}

.week-card__art {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  color: var(--gold-dim);
}

.weeks-map {
  margin-top: 55px;
}

.weeks-map__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

@media (max-width: 767.98px) {
  .weeks-list {
    margin-top: 28px;
  }

  .week-card {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .week-card__side {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 146, 42, 0.15);
    padding: 12px 16px;
    justify-content: flex-start;
  }

  .week-card__side span {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 14px;
    letter-spacing: 0.22em;
  }

  .week-card__body {
    padding: 22px 20px;
  }

  .week-card__desc {
    font-size: 18px;
    line-height: 1.7;
  }

  .weeks-map {
    margin-top: 28px;
  }
}





/* RESULTS BLOCK */
.results-section {
  padding-top: 50px;
  padding-bottom: 20px;
}
.results-section__intro p + p {
  margin-top: 16px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 36px;
}

.result-card {
  background: var(--deep);
  padding: 34px 32px 32px;
  border: 1px solid rgba(184, 146, 42, 0.1);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.result-card:hover {
  background: #fff;
  border-color: var(--navy);
}

.result-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 26px;
  margin-bottom: 26px;
}

.result-card__icon img {
  max-height: 18px;
  width: auto;
}

.result-card_tempicon {
    font-size: 26px;
    display: block;
    color: var(--red);
}

.result-card__title {
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--navy);
}

.result-card__text {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.95;
  color: var(--navy-mid);
}

@media (max-width: 767.98px) {
  .results-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .result-card {
    padding: 26px 20px 24px;
  }

  .result-card__icon {
    margin-bottom: 18px;
  }

  .result-card__title {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .result-card__text {
    font-size: 18px;
    line-height: 1.7;
  }
}





/* STORY ALINA BLOCK */
.story-alina-section {
  padding-top: 50px;
  padding-bottom: 20px;
}

.story-block__text--spaced {
  margin-top: 16px;
}

.section-body--spaced {
  margin-top: 28px;
}





/* TESTIMONIALS BLOCK */
.testimonials-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 36px;
}

.testimonial-card {
  position: relative;
  padding: 32px 28px;
  background: var(--deep);
  border: 1px solid rgba(184, 146, 42, 0.1);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1;
  color: rgba(184, 146, 42, 0.55);
}

.testimonial-card__text {
  margin-bottom: 0;
  padding-top: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.7;
  font-style: italic;
  color: var(--navy-mid);
}

.testimonial-card__name {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

@media (max-width: 767.98px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .testimonial-card__text {
    font-size: 20px;
    line-height: 1.5;
  }
}






/* BLOCK DOUBTERS */
.doubters-list {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.doubter-quote {
  position: relative;
  padding-left: 40px;
}

.doubter-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 0;
  width: 1px;
  background: rgba(184, 146, 42, 0.45);
}

.doubter-quote::after {
  content: "“";
  position: absolute;
  left: -15px;
  top: -6px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(184, 146, 42, 0.22);
}

.doubter-quote__text {
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 22px);
  line-height: 1.75;
  font-style: italic;
  color: var(--navy-mid);
}

.doubter-quote__name {
  margin-bottom: 0;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

@media (max-width: 767.98px) {
  .doubters-list {
    margin-top: 28px;
    gap: 30px;
  }

  .doubter-quote {
    padding-left: 28px;
  }

  .doubter-quote::after {
    font-size: 52px;
    top: -2px;
    left: -9px;
  }

  .doubter-quote__text {
    font-size: 20px;
    line-height: 1.7;
  }
}





/* BLOCK AUTHOR */
.author-section {
  background: var(--deep-l);
}
.author-row {
  margin-top: 28px;
}

.author-row--secondary {
  margin-top: 12px;
}

.author-photo_before {
  margin-top: 20px;
}


.author-photo__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.author-name {
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.7;
  color: var(--gold-warm);
}

.author-text {
  font-size: 17px;
  line-height: 2;
  color: var(--navy-mid);
}

.author-text p + p {
  margin-top: 14px;
}

.author-quote {
  margin-top: 20px;
  margin-bottom: 0;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.4;
  font-style: italic;
  color: var(--red);
}

.author-credentials {
  margin-top: 12px;
}

.author-cred {
  display: flex;
  align-items: flex-start;
  gap:14px;
  font-size: 20px;
  color: var(--navy-dim);
  margin-top: 12px;
  line-height: 1.7;
}

.author-cred::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 8px;
}

@media (max-width: 767.98px) {
  .author-name {
    font-size: 22px;
  }

  .author-text {
    font-size: 16px;
    line-height: 1.85;
  }

  .author-quote {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .author-row--secondary {
    margin-top: 8px;
  }
}






/* BLOCK TIMELINE */
.author-timeline-section {
  /* padding-top: 0; */
}

.author-timeline {
  width: 100%;
  margin-top: 48px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 34px 1fr;
  column-gap: 18px;
  align-items: start;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item__year {
  padding-top: 2px;
  text-align: right;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
  white-space: nowrap;
}

.timeline-item__marker {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2px;
  min-height: 100%;
}

.timeline-item__marker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -40px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(184, 146, 42, 0.4);
}

/* плавний початок */
.timeline-item:first-child .timeline-item__marker::after {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(184, 146, 42, 0.4) 32px,
    rgba(184, 146, 42, 0.4) 100%
  );
}

/* плавний кінець */
.timeline-item:last-child .timeline-item__marker::after {
  top: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(184, 146, 42, 0.4) 0%,
    rgba(184, 146, 42, 0.25) 65%,
    transparent 100%
  );
}

/* якщо елемент один-єдиний */
.timeline-item:first-child:last-child .timeline-item__marker::after {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(184, 146, 42, 0.4) 28px,
    rgba(184, 146, 42, 0.25) 70%,
    transparent 100%
  );
}

.timeline-item__dot {
  position: relative;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
  display: block;
  flex-shrink: 0;
}

.timeline-item__content {
  min-width: 0;
}

.timeline-item__title {
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--navy);
  margin-top: -10px;
}

.timeline-item__text {
  /* margin-bottom: 15px; */
  font-size: 20px;
  line-height: 1.7;
  color: var(--navy-mid);
}

.timeline-item__image-wrap {
  margin-top: 12px;
  max-width: 90%;
  margin-bottom: 20px;
}

.timeline-item__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  background: var(--deep);
}

/* без року */
.timeline-item--no-year {
  grid-template-columns: 34px 1fr;
  column-gap: 18px;
}

.timeline-item--no-year .timeline-item__marker {
  grid-column: 1;
}

.timeline-item--no-year .timeline-item__content {
  grid-column: 2;
}

/* акцентний етап */
.timeline-item--accent .timeline-item__year {
  color: var(--red);
  font-weight: 500;
}

.timeline-item--accent .timeline-item__dot {
  background: var(--red);
  box-shadow: 0 0 0 2px var(--red);
}

.timeline-item--accent .timeline-item__title {
  color: var(--red);
}

.timeline-item__media-row {
  margin-top: 8px;
}

.timeline-item__image-wrap--inline {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 100%;
}

.timeline-item__image-wrap--inline .timeline-item__image {
  width: 100%;
}

.timeline-item__image-wrap--float {
  float: left;
  width: clamp(150px, 33%, 310px);
  margin: 6px 24px 14px 0;
  max-width: none;
}

.timeline-item__image-wrap--float .timeline-item__image {
  display: block;
  width: 100%;
  height: auto;
}

.timeline-item__content::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 767.98px) {
  .timeline-item__image-wrap--float {
    float: none;
    width: 100%;
    max-width: 260px;
    margin: 8px 0 18px;
  }
  .timeline-item__image-wrap--float .timeline-item__image {
    width: 94%;
  }
}

@media (max-width: 767.98px) {
  .timeline-item__image-wrap--inline {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .author-timeline {
    margin-top: 32px;
  }

  .timeline-item {
    grid-template-columns: 34px 1fr;
    column-gap: 14px;
    margin-bottom: 32px;
  }

  .timeline-item__text {
    font-size: 18px;
  }

  .timeline-item__year {
    grid-column: 2;
    text-align: left;
    padding-top: 0;
    margin-bottom: 6px;
  }

  .timeline-item__marker {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-content: flex-start;
    padding-top: 2px;
  }

  .timeline-item__marker::after {
    left: 7px;
    transform: none;
    bottom: -32px;
  }

  .timeline-item__content {
    grid-column: 2;
  }

  .timeline-item__image-wrap {
    max-width: 90%;
  }

  .timeline-item__image {
    /* height: 120px; */
  }

  .timeline-item--no-year {
    grid-template-columns: 34px 1fr;
    column-gap: 14px;
  }

  .timeline-item--no-year .timeline-item__marker {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .timeline-item--no-year .timeline-item__content {
    grid-column: 2;
  }
}






/* LEADERS TESTIMONIALS */
.leaders-section {
  background: var(--deep-l);
}
.leaders-list {
  margin-top: 65px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.leader-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
}

.leader-card__photo {
  text-align: center;
}

.leader-card__photo img {
  width: 155px;
  height: 155px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 12px;
}

.leader-card__photo-caption {
  font-size: 13px;
  color: var(--gold-dim);
  margin-bottom: 0;
}

.leader-card__content {
  position: relative;
  padding-left: 28px;
}

.leader-card__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--red);
}

.leader-card__quote {
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.7;
  font-style: italic;
  color: var(--navy-mid);
}

.leader-card__name {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.leader-card__meta {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--gold-dim);
}

/* mobile */
@media (max-width: 767.98px) {
  .leaders-list {
    margin-top: 32px;
    gap: 40px;
  }

  .leader-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .leader-card__photo img {
    width: 110px;
    height: 110px;
  }

  .leader-card__content {
    padding-left: 18px;
  }

  .leader-card__quote {
    font-size: 22px;
  }

  .leader-card__meta {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--gold-dim);
  }

}







/* INCLUDES BLOCK */
.includes-section {
  padding-bottom: 0px;
}
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 36px;
}

.include-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 22px;
  padding: 26px 0;
  border-top: 1px solid rgba(184, 146, 42, 0.16);
}

.include-item:last-child {
  border-bottom: 1px solid rgba(184, 146, 42, 0.16);
}

.include-item__icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: var(--red);
  padding-top: 2px;
}

.include-item__content {
  min-width: 0;
}

.include-item__title {
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.35;
  color: var(--navy);
}

.include-item__text {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.75;
  color: var(--navy-mid);
}

@media (max-width: 767.98px) {
  .includes-list {
    margin-top: 28px;
  }

  .include-item {
    grid-template-columns: 40px 1fr;
    gap: 0 14px;
    padding: 20px 0;
  }

  .include-item__icon {
    font-size: 22px;
    justify-content: flex-start;
  }

  .include-item__title {
    font-size: 24px;
    line-height: 1.4;
  }

  .include-item__text {
    font-size: 18px;
    line-height: 1.7;
  }
}






/* SPECIAL OFFER BLOCK */
.special-offer-section {
  padding-top: 40px;
  padding-bottom: 0px;
}

.special-offer-box {
  position: relative;
  padding: 32px 48px 60px;
  border: 1px solid var(--gold-warm);
  background: linear-gradient(135deg, rgba(176, 138, 72, 0.07) 0%, transparent 60%);
}

.special-offer-box__top-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 44px;
  padding: 10px 22px;
  border: 1px solid rgba(176, 138, 72, 0.65);
  color: var(--red);
  width: fit-content;
  max-width: 100%;
}

.special-offer-box__top-label-text {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 700;
}

.special-offer-box__top-label-star {
  font-size: 13px;
  line-height: 1;
  color: var(--red);
  transform: translateY(-1px);
}

.special-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
  align-items: start;
}

.special-offer-main {
  text-align: center;
  padding-top: 8px;
}

.special-offer-bonus {
  text-align: center;
  padding: 26px 24px 28px;
  border: 1px solid rgba(176, 138, 72, 0.45);
  border-radius: 0px;
  background: #fff;
}

.special-offer-bonus__label {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.special-offer-bonus__cover {
  margin-bottom: 18px;
}

.special-offer-bonus__cover img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.10);
}

.special-offer-bonus__title {
  margin-bottom: 0;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.4;
  color: var(--navy);
  font-weight: 500;
}

.special-offer-box__date {
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--navy);
}

.special-offer-box__note {
  margin-bottom: 32px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.4;
  font-style: italic;
  color: var(--navy-mid);
}

.special-offer-box__limit {
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.special-offer-box__old-price {
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  color: #9f9a93;
}

.special-offer-box__old-price-value {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: #b7b1aa;
}

.special-offer-box__old-price-sep {
  text-decoration: none;
}

.special-offer-box__price {
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1;
  font-weight: 400;
}

.special-offer-box__price-usd {
  color: var(--red);
}

.special-offer-box__price-usd > span {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--gold);
}

.special-offer-box__price-uah {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.2;
  color: var(--navy);
  margin-left: 3px;
  white-space: nowrap;
}

.special-offer-box__meta {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: var(--navy-mid);
}

.special-offer-section .hero-btn {
  margin-bottom: 0;
}

.special-offer-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}


.special-offer-cta .hero-btn {
  display: inline-block;
  padding: 18px 52px;
  border: 1px solid var(--navy);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  margin-bottom: 0;
}

/* анімаційний шар тепер прибираємо */
.special-offer-cta .hero-btn::before {
  display: none;
}

/* hover — прозорий */
.special-offer-cta .hero-btn:hover {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.special-offer-cta .hero-btn span {
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .special-offer-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
  }

  .special-offer-bonus__cover img {
    max-width: 220px;
  }

  .special-offer-bonus__title {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .special-offer-box {
    padding: 28px 28px 44px;
  }

  .special-offer-box__top-label {
    margin-bottom: 34px;
    padding: 10px 18px;
  }

  .special-offer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .special-offer-bonus {
    max-width: 360px;
    margin: 0 auto;
  }

  .special-offer-bonus__cover img {
    max-width: 240px;
  }
}

@media (max-width: 767.98px) {
  .special-offer-box {
    padding: 24px 22px 38px;
  }

  .special-offer-box__top-label {
    gap: 10px;
    margin-bottom: 28px;
    padding: 10px 14px;
  }

  .special-offer-box__top-label-text {
    font-size: 12px;
    letter-spacing: 0.24em;
  }

  .special-offer-box__top-label-star {
    font-size: 11px;
  }

  .special-offer-grid {
    gap: 30px;
  }

  .special-offer-box__note {
    margin-bottom: 24px;
  }

  .special-offer-box__limit {
    margin-bottom: 22px;
    letter-spacing: 0.18em;
  }

  .special-offer-box__old-price {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .special-offer-box__price {
    margin-bottom: 14px;
  }

  .special-offer-box__price-uah {
    margin-left: 0;
    font-size: 24px;
  }

  .special-offer-box__meta {
    margin-bottom: 5px;
  }

  .special-offer-bonus {
    padding: 22px 18px 24px;
    max-width: 320px;
  }

  .special-offer-bonus__label {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.24em;
  }

  .special-offer-bonus__cover {
    margin-bottom: 14px;
  }

  .special-offer-bonus__cover img {
    max-width: 210px;
  }

  .special-offer-bonus__title {
    font-size: 20px;
    line-height: 1.35;
  }
}


/* Countdown */
.special-offer-countdown {
  margin: 26px 0 26px;
  text-align: center;
}

.special-offer-countdown__label {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.special-offer-countdown__timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
}

.special-offer-countdown__num {
  min-width: 64px;
  padding: 10px 8px;
  border: 1px solid rgba(176, 138, 72, 0.28);
  background: rgba(255, 255, 255, 0.34);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  font-weight: 400;
  text-align: center;
}

.special-offer-countdown__sep {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  color: var(--gold);
  transform: translateY(-2px);
  opacity: 1;
  transition: opacity 0.2s ease;
}

.special-offer-countdown__sep.is-dim {
  opacity: 0.1;
}

.special-offer-countdown__meta {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 64px);
  justify-content: center;
  gap: 30px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

@media (max-width: 767.98px) {
  .special-offer-countdown {
    margin: 25px 0 20px;
  }

  .special-offer-countdown__timer {
    gap: 8px;
  }

  .special-offer-countdown__num {
    min-width: 56px;
    font-size: 28px;
    padding: 9px 6px;
  }

  .special-offer-countdown__meta {
    grid-template-columns: repeat(3, 56px);
    gap: 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}







/* FAQ ACCORDION */

.faq-accordion {
  margin-top: 20px;
}

/* прибираємо стандартний bootstrap стиль */
.faq-accordion .accordion-item {
  border: none;
  background: transparent;
}

/* КНОПКА (питання) */
.faq-question {
  background: var(--deep);
  color: var(--red);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.4;
  padding: 20px 24px;
  border: none;
  box-shadow: none;
}

/* hover */
.faq-question:hover {
  background: rgba(176, 138, 72, 0.25);
}

/* коли відкритий */
.faq-question:not(.collapsed) {
  background: var(--deep);
  color: var(--red);
  box-shadow: none;
}

/* стрілка */
.faq-question::after {
  filter: brightness(0) saturate(100%) invert(20%) sepia(10%) saturate(800%) hue-rotate(180deg);
}

/* BODY */
.faq-answer {
  padding: 22px 24px;
  font-size: 20px;
  line-height: 1.75;
  color: var(--navy-mid);
  background: #fff;
}

/* відступи між елементами */
.faq-item + .faq-item {
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 767.98px) {
  .faq-question {
    font-size: 20px;
    padding: 18px 18px;
  }

  .faq-answer {
    font-size: 18px;
    padding: 18px;
  }
}







/* COST OF WAITING BLOCK */
.cost-section {
  position: relative;
  overflow: hidden;
  background: #f7f4ef;
  min-height: 620px;
  padding: 0;
}

.cost-section__container {
  position: relative;
  z-index: 2;
}

.cost-section__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 45vw;
  height: 100%;
  z-index: 1;
}

.cost-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 30%;
  display: block;
}

.cost-section__content {
  padding: 110px 32px 110px 0;
  max-width: 750px;
}

.cost-section__lead {
  margin-bottom: 20px;
  margin-top: 30px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.7;
  color: var(--navy);
}

.cost-section__text {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--navy-mid);
}

.cost-section__note {
  margin-bottom: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 24px);
  line-height: 1.6;
  font-style: italic;
  color: var(--red);
}

@media (max-width: 1599.98px) {
  .cost-section {
    min-height: 560px;
  }

  .cost-section__content {
    padding: 84px 24px 84px 0;
  }
}

@media (max-width: 1199.98px) {
  .cost-section {
    min-height: 520px;
  }

  .cost-section__visual {
    width: 48vw;
  }

  .cost-section__lead {
    line-height: 1.55;
  }
}

@media (max-width: 991.98px) {
  .cost-section {
    min-height: 0;
    padding: 0 0 48px;
  }

  .cost-section__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin-bottom: 28px;
  }

  .cost-section__image {
    height: 460px;
    object-position: right;
  }

  .cost-section__content {
    padding: 0;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .cost-section {
    padding: 0 0 44px;
  }

  .cost-section__visual {
    margin-bottom: 24px;
  }

  .cost-section__image {
    height: 320px;
    object-position: center 22%;
  }

  .cost-section__content {
    text-align: center;
  }

  .cost-section__content .hero-logo {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .cost-section__lead {
    margin-top: 22px;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .cost-section__text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
  }

  .cost-section__note {
    line-height: 1.7;
  }
}







/* YA TUT BLOCK */
.ya-zdes-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.ya-zdes-box {
  padding: 60px 0;
  text-align: center;
}

.ya-zdes-box__title {
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.3;
  font-weight: 400;
  color: var(--navy);
}

.ya-zdes-box__title em {
  font-style: italic;
  color: var(--gold-warm);
}

.ya-zdes-box__quote {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  line-height: 1.7;
  font-style: italic;
  color: var(--navy-mid);
}

.ya-zdes-box__author {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
}

@media (max-width: 767.98px) {
  .ya-zdes-box {
    padding: 44px 0;
  }

  .ya-zdes-box__quote {
    font-size: 22px;
  }

  .ya-zdes-box__author {
    font-size: 16px;
  }
}





/* FINAL CTA BLOCK */
.final-cta-section {
  padding-top: 0px;
  padding-bottom: 90px;
  margin-top: -20px;
}

.final-cta-card {
  background: linear-gradient(90deg, #f3efe8 0%, #f7f7f9 100%);
  text-align: center;
  padding: 90px 40px 100px;
}

.final-cta-card__title {
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 60px);
  line-height: 0.98;
  font-weight: 400;
  color: var(--navy);
}

.final-cta-card__title em {
  display: block;
  font-style: italic;
  color: var(--red);
}

.final-cta-card__sub {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--navy-mid);
}

.final-cta-card__meta {
  margin-bottom: 36px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--navy-mid);
}

.final-cta-card .hero-btn {
  margin-bottom: 0;
  min-width: 240px;
}

.final-cta-card__sub span {
    color: var(--red);
    font-size: 28px;
    margin-left: 10px;
    margin-right: 5px;
}

@media (max-width: 767.98px) {
  .final-cta-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .final-cta-card {
    padding: 52px 22px 60px;
  }

  .final-cta-card__title {
    margin-bottom: 18px;
    line-height: 1.04;
  }

  .final-cta-card__sub,
  .final-cta-card__meta {
    font-size: 18px;
    line-height: 1.6;
  }

  .final-cta-card__meta {
    margin-bottom: 28px;
  }

  .final-cta-card .hero-btn {
    min-width: 0;
    width: 100%;
  }
}






/* FOOTER */
.site-footer {
  padding: 28px 0;
  background: var(--deep);
  text-align: center;
}

.site-footer__text {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy-dim);
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 22px 0;
  }

  .site-footer__text {
    font-size: 13px;
    line-height: 1.7;
  }
}