:root {
  --navy: #10243f;
  --navy-deep: #07182d;
  --gold: #c9a449;
  --gold-soft: #f8f0d8;
  --button-gold: rgba(211, 173, 79, 0.82);
  --button-navy: rgba(16, 36, 63, 0.86);
  --lavender: #f4f0fb;
  --gray: #f6f7f9;
  --off-white: #faf8f5;
  --peach: #f7d7cc;
  --sage: #a7b89b;
  --text: #1d2733;
  --muted: #667085;
  --white: #ffffff;
  --line: #e7e9ee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(248, 244, 236, 0.72), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(167, 184, 155, 0.35), transparent 24%),
    var(--off-white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(125deg, transparent 0 42%, rgba(200, 155, 60, 0.13) 42% 43%, transparent 43% 100%),
    linear-gradient(25deg, transparent 0 57%, rgba(200, 155, 60, 0.1) 57% 58%, transparent 58% 100%);
}

main {
  position: relative;
  overflow: hidden;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: transparent;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 14%, rgba(247, 215, 204, 0.34), transparent 24%),
    radial-gradient(circle at 92% 32%, rgba(167, 184, 155, 0.22), transparent 22%),
    radial-gradient(circle at 14% 72%, rgba(246, 232, 195, 0.38), transparent 24%),
    radial-gradient(circle at 86% 86%, rgba(200, 155, 60, 0.11), transparent 22%);
  opacity: 0.62;
}

main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(125deg, transparent 0 46%, rgba(200, 155, 60, 0.08) 46% 47%, transparent 47% 100%),
    linear-gradient(25deg, transparent 0 62%, rgba(167, 184, 155, 0.08) 62% 63%, transparent 63% 100%);
  background-size: 100% 740px, 100% 860px;
  background-position: center top, center 280px;
  opacity: 0.58;
}

main a {
  color: inherit;
}

.container {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1100px);
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

section {
  position: relative;
  isolation: isolate;
  padding: 104px 0;
}

body.has-scroll-reveal main section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.has-scroll-reveal main section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

section:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: min(760px, calc(100% - 56px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 60, 0.14), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

section:not(.hero) > .container::before {
  content: "";
  position: absolute;
  top: -118px;
  left: 50%;
  z-index: -1;
  width: 220px;
  height: 120px;
  border-radius: 48% 52% 44% 56%;
  background:
    radial-gradient(circle at 35% 42%, rgba(246, 232, 195, 0.44), transparent 48%),
    radial-gradient(circle at 68% 60%, rgba(167, 184, 155, 0.16), transparent 46%);
  filter: blur(24px);
  opacity: 0.36;
  transform: translateX(-50%);
  pointer-events: none;
}

.testimonials .container::after,
.help .container::after,
.faq .container::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(560px, 86vw);
  height: 210px;
  border-radius: 48% 52% 44% 56%;
  background:
    radial-gradient(circle at 28% 34%, rgba(247, 215, 204, 0.28), transparent 42%),
    radial-gradient(circle at 72% 68%, rgba(167, 184, 155, 0.18), transparent 44%);
  filter: blur(24px);
  opacity: 0.34;
  pointer-events: none;
}

.testimonials .container::after {
  right: -42px;
  top: 42px;
}

.help .container::after {
  left: -58px;
  top: 70px;
}

.faq .container::after {
  right: -36px;
  bottom: 20px;
}

.section-light {
  background: transparent;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 215, 204, 0.14));
}

.section-dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 232, 195, 0.08), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(167, 184, 155, 0.09), transparent 26%),
    var(--navy-deep);
  color: var(--white);
}

.heading,
main h2,
main h3,
main p {
  margin-top: 0;
}

.heading {
  position: relative;
  max-width: 980px;
  margin: 0 auto 18px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3.25vw, 2.8rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: center;
  z-index: 1;
}

.headline-gold {
  color: #c39118;
}

.hero-meet {
  margin: 42px 0 30px;
}

main h2 {
  position: relative;
  margin-bottom: 34px;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.16;
  text-align: center;
  letter-spacing: 0;
}

.heading::before,
main h2::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(520px, 90vw);
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 232, 195, 0.34) 0%, rgba(248, 244, 236, 0.28) 34%, rgba(248, 244, 236, 0) 72%);
  filter: blur(38px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.section-dark h2 {
  color: var(--white);
}

.section-dark h2::before {
  display: none;
}

main h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.3;
}

.section-dark h3 {
  color: var(--white);
}

main p {
  color: var(--muted);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.hero {
  overflow: hidden;
  padding-top: 156px;
}

.hero::before,
.hero::after,
.testimonials::after,
.process::after,
.faq::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  top: 86px;
  right: -90px;
  width: 520px;
  height: 520px;
  border-radius: 42% 58% 64% 36%;
  background:
    radial-gradient(circle at 32% 34%, rgba(246, 232, 195, 0.54), transparent 44%),
    radial-gradient(circle at 68% 66%, rgba(167, 184, 155, 0.22), transparent 46%);
  filter: blur(6px);
  opacity: 0.42;
}

.hero::after {
  left: -72px;
  bottom: 72px;
  width: 46%;
  height: 240px;
  border-top: 2px solid rgba(200, 155, 60, 0.12);
  border-radius: 50%;
  opacity: 1;
  transform: rotate(-10deg);
}

.testimonials::after {
  top: 20px;
  right: 4%;
  width: 360px;
  height: 210px;
  border-radius: 44% 56% 53% 47%;
  background:
    radial-gradient(circle at 10% 18%, rgba(247, 215, 204, 0.34), transparent 35%),
    radial-gradient(circle at 78% 70%, rgba(167, 184, 155, 0.18), transparent 38%);
  filter: blur(26px);
  opacity: 0.5;
}

.process::after,
.faq::after {
  left: 6%;
  bottom: 26px;
  width: 220px;
  height: 120px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 50%, rgba(246, 232, 195, 0.42), transparent 52%),
    radial-gradient(circle at 70% 50%, rgba(200, 155, 60, 0.1), transparent 52%);
  filter: blur(30px);
  opacity: 0.62;
}

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

.badge {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  padding: 9px 16px;
  border: 1px solid rgba(201, 164, 73, 0.45);
  border-radius: 999px;
  background: var(--gold-soft);
  color: #785d17;
  font-size: 0.86rem;
  font-weight: 700;
}

.badge::before,
.badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 72px;
  height: 28px;
  opacity: 0.24;
  transform: translateY(-50%);
  background-image: radial-gradient(circle, rgba(201, 164, 73, 0.72) 1.5px, transparent 1.8px);
  background-size: 12px 12px;
  pointer-events: none;
}

.badge::before {
  right: calc(100% + 10px);
}

.badge::after {
  left: calc(100% + 10px);
}

.lead {
  max-width: 740px;
  margin: 0 auto 34px;
  font-size: 1rem;
  line-height: 1.72;
}

.video-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.video-intro span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #7a5b12;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-intro h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
}

.video-intro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.section-note {
  max-width: 780px;
  margin: 0px auto 15px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
  text-align: center;
}

.dark-note {
  color: rgba(255, 255, 255, 0.78);
}

.video-wrap {
  max-width: 960px;
  margin: 0 auto 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 24, 45, 0.14);
  aspect-ratio: 16 / 9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(7, 24, 45, 0.18);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: var(--white);
  object-fit: cover;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 30px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: #07182D;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(201, 164, 73, 0.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}


.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-4px);
  background: #12345a;
  color: var(--white);
  border-color: rgba(18, 52, 90, 0.32);
  box-shadow: 0 12px 28px rgba(18, 52, 90, 0.25);
}

.align-left {
  margin-top: 8px;
}

.testimonial-slider {
  position: relative;
  margin: 30px 0 18px;
  padding: 0 56px 34px;
  overflow: hidden;
}

.testimonial-viewport {
  max-width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.testimonial-image {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.testimonial-visual {
  flex: 1;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  position: relative;
  padding: 34px 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 73, 0.28);
  border-radius: 20px;
  background: #ffffff;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
}

.testimonial-visual::after {
  content: "\201C";
  position: absolute;
  right: 22px;
  bottom: -24px;
  color: rgba(201, 164, 73, 0.15);
  font-family: Georgia, serif;
  font-size: 8.5rem;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), color 0.38s ease;
}

.testimonial-tag {
  display: none;
}

.testimonial-visual strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.26;
}

.testimonial-copy {
  display: block;
  max-width: 96%;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
}

.testimonial-reviewer {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 12px;
}

.reviewer-name {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.reviewer-role {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
}

figcaption {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.slider-btn {
  position: absolute;
  top: calc(50% - 28px);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(12, 30, 58, 0.16);
  opacity: 0.62;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), background 0.32s ease, opacity 0.32s ease, box-shadow 0.32s ease;
  z-index: 2;
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: #12345a;
  opacity: 1;
  box-shadow: 0 18px 38px rgba(12, 30, 58, 0.22);
}

.testimonial-slider:hover .slider-btn {
  opacity: 1;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.testimonial-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.testimonial-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8d8d8;
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, transform 0.35s ease;
}

.testimonial-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--gold);
}

.testimonials {
  text-align: center;
}

.familiar {
  text-align: center;
}

.struggle-list {
  display: grid;
  gap: 16px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.struggle-list li {
  position: relative;
  padding: 18px 18px 18px 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #18314f;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.struggle-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.struggle-list li::before {
  content: "\2713";
  position: absolute;
  left: 20px;
  top: 17px;
  color: var(--gold);
  font-weight: 800;
}

.meet-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 58px;
  align-items: center;
}

.portrait {
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--gold-soft);
  box-shadow: 0 12px 40px rgba(7, 24, 45, 0.06);
}

.portrait img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.meet-copy h2 {
  text-align: left;
}

.meet-copy p {
  font-size: 1.02rem;
}

.process {
  text-align: center;
}

.steps {
  margin-bottom: 34px;
}

.step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 12px 40px rgba(7, 24, 45, 0.06);
}

.step span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 600;
  text-align: center;

}

.step p {
  margin-bottom: 0;
  text-align: center;
}

.arrow {
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 800;
}

.help-list {
  display: grid;
  gap: 18px;
}

.help-list article {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.help-list article > div {
  flex: 1;
  min-width: 0;
}

.help-list article:last-child {
  border-bottom: 0;
}

.icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 600;
}

.help-list p {
  margin-bottom: 0;
}

.faq {
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  text-align: left;
}

.faq-list details {
  border: 1px solid rgba(201, 164, 73, 0.28);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(7, 24, 45, 0.06);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 18px 54px 18px 22px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--navy);
  color: var(--white);
}

.faq-answer {
  overflow: hidden;
  transition: height 260ms ease;
  will-change: height;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}



.form-note {
  margin-top: 12px;
  color: var(--gold-soft);
  font-weight: 600;
  text-align: center;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-open {
  overflow: hidden;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 45, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal__dialog {
  position: relative;
  width: min(100%, 620px);
  max-height: min(86vh, 820px);
  overflow: hidden;
  border: 1px solid rgba(201, 164, 73, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 0%, rgba(247, 215, 204, 0.22), transparent 30%),
    radial-gradient(circle at 100% 18%, rgba(167, 184, 155, 0.18), transparent 28%),
    var(--off-white);
  box-shadow: 0 28px 90px rgba(7, 24, 45, 0.34);
  opacity: 1;
  visibility: visible;
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms ease;
}

.booking-modal__body {
  max-height: inherit;
  overflow-y: auto;
  padding: 34px;
}

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

.booking-modal .booking-modal__dialog::before,
.booking-modal__dialog h2::before {
  display: none;
}

.booking-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 24, 45, 0.1);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 24, 45, 0.08);
}

.booking-modal__dialog .badge {
  margin-bottom: 14px;
}

.booking-modal__dialog h2 {
  margin-bottom: 12px;
  padding-right: 36px;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  text-align: left;
}

.booking-modal__intro {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.booking-modal__message {
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.booking-modal__message.success {
  background: rgba(220, 252, 231, 0.95);
  border: 1px solid rgba(34, 197, 94, 0.38);
  color: #14532d;
}

.booking-modal__message.error {
  background: rgba(254, 226, 226, 0.95);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #7f1d1d;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid rgba(7, 24, 45, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-form input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 164, 73, 0.16);
}

.booking-form select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 164, 73, 0.16);
}

.booking-form select:disabled {
  color: rgba(7, 24, 45, 0.62);
  cursor: not-allowed;
}

.booking-form__slot-status {
  min-height: 18px;
  color: rgba(7, 24, 45, 0.68);
  font-size: 0.82rem;
  line-height: 1.35;
}

.booking-form__slot-status.is-error {
  color: #7f1d1d;
}

.booking-form b {
  color: var(--gold);
}

.booking-form__radio-field {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--navy);
}

.booking-form__radio-field legend {
  padding: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-form__radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-form__radio-options label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: min(130px, 100%);
  padding: 12px 14px;
  border: 1px solid rgba(7, 24, 45, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-form .booking-form__radio-options input {
  width: auto;
  min-height: auto;
  margin: 0;
  padding: 0;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.booking-form .booking-form__radio-options input:focus {
  background: transparent;
  box-shadow: none;
}

.booking-form__price-note {
  margin: 4px 0 2px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 164, 73, 0.32);
  border-radius: 14px;
  background: rgba(248, 240, 216, 0.72);
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.55;
}

.booking-form__price-note strong {
  color: #785d17;
  font-weight: 800;
}

.booking-form__button {
  width: 100%;
  margin-top: 8px;
}

.payment-page {
  min-height: 100vh;
  padding-top: 150px;
}

.payment-card {
  width: min(100%, 720px);
  margin: 28px auto 0;
  padding: 30px;
  border: 1px solid rgba(201, 164, 73, 0.28);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8ef 100%);
  box-shadow: 0 20px 58px rgba(7, 24, 45, 0.12);
}

.payment-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.payment-card__header h2,
.payment-card > h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  text-align: left;
}

.payment-card__header h2::before,
.payment-card > h2::before {
  display: none;
}

.payment-card__header span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #785d17;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.payment-summary {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.payment-summary div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.payment-summary dt {
  color: var(--muted);
  font-weight: 600;
}

.payment-summary dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.payment-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 26px 0 22px;
  padding: 18px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
}

.payment-amount span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.payment-amount strong {
  color: var(--gold-soft);
  font-size: 1.25rem;
}

.payment-button {
  width: 100%;
}

.payment-card[data-payment-state="failed"] .payment-button {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.payment-card[data-payment-state="success"] .payment-result h2 {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #1f7a4d;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
}

.payment-card[data-payment-state="failed"] .payment-result h2 {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #b42318;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
}

.payment-card[data-payment-state="success"] .payment-result h2::before,
.payment-card[data-payment-state="failed"] .payment-result h2::before {
  display: none;
}

.payment-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.payment-refund-note {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
  overflow-wrap: anywhere;
}

.payment-email-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  section {
    padding: 58px 0;
  }

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

  .testimonial-slider {
    padding: 0 48px 34px;
  }

  .testimonial-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .meet-grid {
    gap: 34px;
  }

  .align-left {
    width: 100%;
  }

  .portrait {
    min-height: 380px;
  }

  .portrait img {
    min-height: 380px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.has-scroll-reveal main section {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-answer {
    transition: none;
  }

}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  * {
    box-sizing: border-box;
  }

  .container {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  section,
  .hero,
  .faq,
  .testimonials,
  .process,
  .coach-section,
  .help {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .hero .container,
  .faq .container,
  .testimonials .container,
  .process .container,
  .help .container {
    padding-left: 0;
    padding-right: 0;
  }


  .portrait img,
  .testimonial-image img,
  .video-wrap video,
  video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .video-wrap video {
    height: 100%;
    border-radius: 16px;
  }

  .video-wrap,
  .portrait,
  .testimonial-visual,
  .testimonial-viewport,
  .testimonial-track,
  .testimonial-card,
  .faq-list,
  .help-list,
  .steps {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cta-button {
    width: min(260px, calc(100% - 24px));
    max-width: 100%;
    box-sizing: border-box;
  }

  .payment-page .container {
    margin-left: clamp(18px, 4.8vw, 20px);
    margin-right: clamp(18px, 4.8vw, 20px);
  }

  .payment-page .payment-card,
  .payment-page .payment-amount,
  .payment-page .payment-button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .faq-list summary,
  .faq-list p,
  .testimonial-visual,
  .step,
  .help-list article,
  .struggle-list li,
  .booking-form input,
  .booking-form select,
  .payment-summary dd {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 560px) {
  .container {
    width: 100%;
  }

  .hero {
    padding-top: 112px;
  }

  .radio-options {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .cta-button {
    width: min(260px, calc(100% - 24px));
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-slider {
    margin-top: 24px;
    padding: 0 18px 26px;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .testimonial-visual {
    min-height: 250px;
    padding: 26px 20px 22px;
  }

  .struggle-list li {
    padding-right: 14px;
  }

  .booking-modal {
    align-items: end;
    padding: 12px;
  }

  .booking-modal__dialog {
    max-height: 92vh;
    border-radius: 20px;
  }

  .booking-modal__body {
    padding: 28px 18px 20px;
  }

  .booking-modal__dialog h2 {
    padding-right: 44px;
  }

  .booking-form__grid {
    grid-template-columns: 1fr;
  }

  .booking-form input,
  .booking-form select,
  .booking-form__button {
    width: 100%;
  }

  .booking-form .booking-form__radio-options input {
    width: auto;
  }

  .payment-page {
    padding-top: 116px;
  }

  .payment-card {
    padding: 22px 18px;
  }

  .payment-card__header,
  .payment-amount {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-summary div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.tomorrow-block .portrait img {
  object-position: center;
}

.image-wrap {
  background: var(--off-white);
}

.image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section-dark .badge {
  background: rgba(248, 240, 216, 0.12);
  color: var(--gold-soft);
}

.help-list {
  gap: 0;
}

.help-list article {
  gap: 12px;
  padding: 12px 0;
  align-items: center;
}

.help-list article:first-child {
  padding-top: 6px;
}

.help-list article:last-child {
  padding-bottom: 6px;
}

.help-list h3 {
  margin-bottom: 4px;
  line-height: 1.24;
}

.help-list p {
  line-height: 1.55;
}

.section-dark .cta-button {
  border: 2px solid #07182D;
  background: #FAF8F5;
  color: #07182D;
  font-weight: 550;
  box-shadow: 0 10px 30px rgba(7, 24, 45, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.section-dark .cta-button:hover,
.section-dark .cta-button:focus-visible {
  background: #F7F3EA;
  color: #07182D;
  border-color: #07182D;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(7, 24, 45, 0.16);
}

.section-dark .cta-button:active {
  background: #FAF8F5;
  color: #07182D;
  border-color: #07182D;
  transform: translateY(1px);
  box-shadow: 0 6px 18px rgba(7, 24, 45, 0.10);
}


@media (min-width: 821px) {
  .help-list {
    width: min(100%, 940px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 821px) {
  .feature-list-section {
    display: grid;
    place-items: center;
  }

  .feature-list-section .feature-list-container {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-list-section .help-list {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-list-section .help-list article {
    width: 100%;
  }

.feature-list-section h2 {
  text-align: center;
}

.feature-list-section .help-list h3,
.feature-list-section .help-list p {
  text-align: left;
}
}

@media (max-width: 768px) {
  .container {
    width: auto;
    max-width: none;
    margin-left: clamp(14px, 4.8vw, 34px);
    margin-right: clamp(14px, 4.8vw, 34px);
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  section {
    padding-top: 44px;
    padding-bottom: 44px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero .container,
  .faq .container,
  .testimonials .container,
  .process .container,
  .help .container {
    width: auto;
    max-width: none;
    margin-left: clamp(14px, 4.8vw, 34px);
    margin-right: clamp(14px, 4.8vw, 34px);
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .meet-copy {
    text-align: left;
  }

  .meet-copy h2,
  .help-list h3 {
    text-align: left;
  }

  .video-intro {
    margin-bottom: 30px;
  }

  .video-intro h2 {
    margin-bottom: 16px;
  }

  main p,
  main li,
  .lead,
  .video-intro p,
  .meet-copy p,
  .help-list p,
  .faq-list p {
    font-size: 17px;
    line-height: 1.6;
  }

  .cta-group {
    justify-content: center;
  }

  .meet-grid,
  .steps,
  .help-list {
    gap: 28px;
  }

  .help-list article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
  }

  img,
  iframe,
  video,
  .portrait,
  .video-wrap,
  .testimonial-visual,
  .testimonial-card,
  .step,
  .help-list article {
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero {
    padding-top: 104px;
  }
}

@media (min-width: 821px) {
  .feature-list-section .feature-list-outer {
    display: grid;
    grid-template-columns: minmax(15%, 1fr) minmax(0, 900px) minmax(15%, 1fr);
    width: min(100% - 32px, 1200px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-list-section .feature-list-center {
    grid-column: 2;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-list-section .help-list {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .feature-list-section .help-list article {
    width: 100%;
  }
}

.pending-payment-box{
  display: none;
}

/* ============================================================
   Shared site footer (.site-footer) scoped overrides —
   matches the widowed-women footer implementation so the footer
   uses the same font family and container as the main website.
   (Base .footer-* rules come from assets/css/styles.css, which
   this page already loads.)
   ============================================================ */
.site-footer {
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.7;
}

.site-footer .container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  max-width: none;
  padding: 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .site-footer .container {
    width: auto;
    max-width: none;
    margin-left: clamp(18px, 5.6vw, 42px);
    margin-right: clamp(18px, 5.6vw, 42px);
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
}
