:root {
  --forest: #073F35;
  --emerald: #052D28;
  --ivory: #F7F3EA;
  --cream: #EEE8DC;
  --gold: #C7A35A;
  --charcoal: #1D2522;
  --sage: #DCE6DE;
  --white: #FFFFFF;
  --mist: #F0F5F1;
  --stone: #756F64;
  --line: rgba(29, 37, 34, 0.12);
  --line-light: rgba(247, 243, 234, 0.2);
  --shadow: 0 28px 70px rgba(5, 45, 40, 0.18);
  --shadow-soft: 0 18px 46px rgba(5, 45, 40, 0.1);
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

html:not(.aos-ready) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

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

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

::selection {
  color: var(--ivory);
  background: var(--forest);
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 3000;
  padding: 12px 16px;
  color: var(--ivory);
  background: var(--emerald);
  border-radius: 10px;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 18px;
}

.container {
  width: calc(100% - 48px);
  max-width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 120px 0;
  position: relative;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: 80px;
}

.hero h1 span {
  display: block;
}

.hero h1 .mobile-title-break {
  display: inline;
}

h2 {
  margin-bottom: 24px;
  color: var(--emerald);
  font-size: 54px;
}

h3 {
  margin-bottom: 14px;
  color: var(--emerald);
  font-size: 30px;
}

h4 {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

p {
  color: rgba(29, 37, 34, 0.74);
}

.lead {
  color: var(--charcoal);
  font-size: 19px;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 64px;
  align-items: end;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--ivory);
}

.section-heading.light p:not(.eyebrow) {
  color: rgba(247, 243, 234, 0.76);
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition), background var(--transition), border-color var(--transition);
}

.btn i {
  font-size: 14px;
  transition: transform var(--transition);
}

.btn:hover i,
.btn:focus-visible i {
  transform: translateX(4px);
}

.btn-primary {
  color: var(--ivory);
  background: var(--forest);
  border-color: rgba(199, 163, 90, 0.58);
  box-shadow: 0 16px 34px rgba(7, 63, 53, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  color: var(--white);
  background: var(--emerald);
  box-shadow: 0 22px 44px rgba(7, 63, 53, 0.28);
}

.btn-secondary {
  color: var(--forest);
  background: transparent;
  border-color: rgba(7, 63, 53, 0.22);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  color: var(--ivory);
  background: var(--forest);
  border-color: var(--forest);
}

.btn-on-dark {
  color: var(--ivory);
  border-color: rgba(247, 243, 234, 0.34);
}

.btn-on-dark:hover,
.btn-on-dark:focus-visible {
  color: var(--emerald);
  background: var(--ivory);
  border-color: var(--ivory);
}

.btn-light {
  color: var(--emerald);
  background: var(--ivory);
  border-color: rgba(247, 243, 234, 0.82);
}

.btn-light:hover,
.btn-light:focus-visible {
  transform: translateY(-2px);
  color: var(--ivory);
  background: var(--gold);
  border-color: var(--gold);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled,
body.nav-open .site-header {
  color: var(--charcoal);
  background: rgba(247, 243, 234, 0.86);
  border-bottom: 1px solid rgba(29, 37, 34, 0.1);
  box-shadow: 0 16px 44px rgba(5, 45, 40, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 228px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(247, 243, 234, 0.92);
  border: 1px solid rgba(199, 163, 90, 0.38);
  box-shadow: 0 10px 30px rgba(5, 45, 40, 0.14);
}

.brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.76;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 12px 10px;
  color: currentColor;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.78;
  transition: opacity var(--transition), color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  min-width: 158px;
  padding-inline: 19px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: currentColor;
  background: rgba(247, 243, 234, 0.1);
  border: 1px solid rgba(247, 243, 234, 0.28);
  border-radius: 999px;
}

.site-header.is-scrolled .nav-toggle,
body.nav-open .nav-toggle {
  border-color: rgba(7, 63, 53, 0.18);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  background: rgba(5, 45, 40, 0.54);
  backdrop-filter: blur(4px);
}

body.nav-open .mobile-nav-backdrop {
  display: block;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--emerald);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroZoom 16s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 45, 40, 0.92) 0%, rgba(5, 45, 40, 0.74) 42%, rgba(5, 45, 40, 0.25) 100%),
    linear-gradient(0deg, rgba(5, 45, 40, 0.42) 0%, rgba(5, 45, 40, 0.12) 50%, rgba(5, 45, 40, 0.2) 100%);
}

.hero-content {
  padding: 190px 0 96px;
  color: var(--white);
}

.hero [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(247, 243, 234, 0.84);
  font-size: 19px;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.trust-points {
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.trust-points li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: rgba(247, 243, 234, 0.88);
  background: rgba(247, 243, 234, 0.1);
  border: 1px solid rgba(247, 243, 234, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.trust-points i {
  color: var(--gold);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 34px;
  height: 54px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  border: 1px solid rgba(247, 243, 234, 0.44);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 6px;
  height: 6px;
  display: block;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollDot 1.8s ease-in-out infinite;
}

.stats-strip {
  color: var(--ivory);
  background: var(--emerald);
  border-top: 1px solid rgba(247, 243, 234, 0.12);
  border-bottom: 1px solid rgba(247, 243, 234, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid article {
  min-height: 144px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px 34px;
  border-left: 1px solid rgba(247, 243, 234, 0.14);
}

.stats-grid article:last-child {
  border-right: 1px solid rgba(247, 243, 234, 0.14);
}

.stats-grid strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1;
}

.stats-grid strong span {
  display: inline;
  margin-top: 0;
  color: inherit;
  font: inherit;
}

.stats-grid article > span {
  display: block;
  margin-top: 8px;
  color: rgba(247, 243, 234, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.intro-section {
  background:
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.intro-grid,
.about-grid,
.course-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}

.intro-media,
.about-media,
.course-visual {
  position: relative;
}

.intro-media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: 0;
  border: 1px solid rgba(199, 163, 90, 0.5);
  border-radius: var(--radius-lg);
}

.intro-media img,
.about-media img,
.course-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  filter: saturate(0.9) contrast(1.04);
}

.experience-badge,
.personal-note,
.device-card {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 34px;
  max-width: 260px;
  padding: 22px;
  color: var(--ivory);
  background: rgba(5, 45, 40, 0.9);
  border: 1px solid rgba(199, 163, 90, 0.44);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.experience-badge strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 0.9;
}

.experience-badge span,
.personal-note span {
  display: block;
  margin-top: 8px;
  color: rgba(247, 243, 234, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.intro-copy h2,
.about-copy h2,
.course-copy h2 {
  max-width: 650px;
}

.price-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 12px 0 26px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(7, 63, 53, 0.14);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.price-card span {
  color: var(--stone);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1;
}

.planning-form {
  padding: 26px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(7, 63, 53, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

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

.form-field {
  position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 22px 16px 9px;
  color: var(--charcoal);
  background: rgba(247, 243, 234, 0.82);
  border: 1px solid rgba(7, 63, 53, 0.14);
  border-radius: 14px;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%), linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position: calc(100% - 18px) 29px, calc(100% - 12px) 29px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-field label {
  position: absolute;
  top: 17px;
  left: 16px;
  color: rgba(29, 37, 34, 0.56);
  font-size: 15px;
  font-weight: 700;
  pointer-events: none;
  transform-origin: left top;
  transition: transform var(--transition), color var(--transition);
}

.form-field:focus-within label,
.form-field.is-filled label {
  color: var(--forest);
  transform: translateY(-9px) scale(0.78);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: rgba(199, 163, 90, 0.76);
  box-shadow: 0 0 0 4px rgba(199, 163, 90, 0.12);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: #B54737;
  box-shadow: 0 0 0 4px rgba(181, 71, 55, 0.1);
}

.field-error {
  min-height: 18px;
  margin: 5px 0 0 4px;
  color: #B54737;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.message-field {
  margin-top: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
}

.form-submit.is-loading {
  pointer-events: none;
  opacity: 0.78;
}

.form-submit.is-loading i {
  animation: spin 1s linear infinite;
}

.micro-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.micro-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.micro-checks i {
  color: var(--gold);
}

.value-section,
.support-section,
.journey-section,
.faq-section {
  background: var(--ivory);
}

.value-grid,
.levels-grid,
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.value-card,
.level-card,
.journey-card {
  position: relative;
  min-height: 100%;
  padding: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(7, 63, 53, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 44px rgba(5, 45, 40, 0.07);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.value-card:hover,
.level-card:hover,
.journey-card:hover {
  transform: translateY(-7px);
  border-color: rgba(199, 163, 90, 0.5);
  box-shadow: var(--shadow-soft);
}

.value-card::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 34px;
  width: 48px;
  height: 2px;
  background: var(--gold);
}

.value-card i {
  margin-top: 36px;
  margin-bottom: 24px;
  color: var(--forest);
  font-size: 30px;
}

.card-number {
  position: absolute;
  right: 22px;
  top: 10px;
  color: rgba(7, 63, 53, 0.07);
  font-family: var(--font-heading);
  font-size: 116px;
  font-weight: 700;
  line-height: 1;
}

.about-section {
  background: var(--cream);
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.about-stats span {
  padding: 18px;
  background: rgba(247, 243, 234, 0.68);
  border: 1px solid rgba(7, 63, 53, 0.12);
  border-radius: var(--radius-sm);
  color: var(--stone);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.about-stats strong {
  display: block;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
}

.signature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.signature {
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.social-link i {
  color: var(--gold);
  font-size: 18px;
}

.about-media img {
  aspect-ratio: 4 / 5.35;
}

.personal-note {
  left: -30px;
  right: auto;
  max-width: 300px;
}

.levels-section {
  background:
    linear-gradient(180deg, var(--ivory) 0%, #F1EBDD 100%);
}

.level-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge,
.popular-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  color: var(--forest);
  background: rgba(220, 230, 222, 0.72);
  border: 1px solid rgba(7, 63, 53, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.level-card ul,
.image-service-card ul,
.outcome-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.level-card li,
.image-service-card li {
  position: relative;
  padding-left: 17px;
  color: rgba(29, 37, 34, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.level-card li + li,
.image-service-card li + li {
  margin-top: 8px;
}

.level-card li::before,
.image-service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.level-card .price,
.journey-card .price {
  display: block;
  margin-top: auto;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
}

.level-card .btn,
.journey-card .btn {
  width: 100%;
}

.level-card.recommended {
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(7, 63, 53, 0.98), rgba(5, 45, 40, 1));
  border-color: rgba(199, 163, 90, 0.72);
  box-shadow: 0 34px 80px rgba(5, 45, 40, 0.28);
  transform: translateY(-12px);
}

.level-card.recommended h3,
.level-card.recommended h4,
.level-card.recommended .price {
  color: var(--ivory);
}

.level-card.recommended p,
.level-card.recommended li {
  color: rgba(247, 243, 234, 0.76);
}

.level-card.recommended .badge {
  color: var(--ivory);
  background: rgba(247, 243, 234, 0.12);
  border-color: rgba(247, 243, 234, 0.2);
}

.popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--emerald);
  background: var(--gold);
  border-color: var(--gold);
}

.services-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 45, 40, 0.98), rgba(5, 45, 40, 0.94)),
    repeating-linear-gradient(90deg, rgba(247, 243, 234, 0.04) 0 1px, transparent 1px 80px);
}

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

.image-service-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: var(--radius-lg);
  background: var(--emerald);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.image-service-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.01);
  transition: transform 800ms ease, filter 800ms ease;
}

.image-service-card:hover img {
  transform: scale(1.07);
  filter: saturate(0.98) contrast(1.08);
}

.service-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 34px;
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(5, 45, 40, 0), rgba(5, 45, 40, 0.88) 24%, rgba(5, 45, 40, 0.98));
}

.service-overlay span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-overlay h3 {
  color: var(--ivory);
}

.service-overlay p,
.service-overlay li {
  color: rgba(247, 243, 234, 0.76);
}

.image-service-card li::before {
  top: 10px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 6px;
  border-top: 1px solid rgba(247, 243, 234, 0.16);
}

.service-meta strong {
  color: var(--ivory);
  white-space: nowrap;
}

.course-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(220, 230, 222, 0.72), rgba(247, 243, 234, 0.96)),
    repeating-linear-gradient(45deg, rgba(7, 63, 53, 0.04) 0 1px, transparent 1px 28px);
}

.course-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.85fr);
}

.course-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.course-metrics span {
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(7, 63, 53, 0.12);
  border-radius: var(--radius-sm);
  color: var(--stone);
  font-size: 13px;
  font-weight: 800;
}

.course-metrics strong {
  display: block;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 31px;
  line-height: 1;
}

.outcome-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.outcome-list li {
  display: flex;
  gap: 12px;
  color: rgba(29, 37, 34, 0.74);
  font-weight: 700;
}

.outcome-list i {
  margin-top: 6px;
  color: var(--gold);
}

.course-visual img {
  aspect-ratio: 1 / 1.12;
}

.device-card {
  right: auto;
  left: -28px;
  bottom: 28px;
  max-width: 310px;
  color: var(--charcoal);
  background: rgba(247, 243, 234, 0.9);
  border-color: rgba(199, 163, 90, 0.48);
}

.device-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.device-card strong {
  display: block;
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1;
  margin: 8px 0;
}

.device-card p {
  margin-bottom: 16px;
  color: rgba(29, 37, 34, 0.68);
  font-size: 14px;
}

.progress-lines {
  display: grid;
  gap: 8px;
}

.progress-lines span {
  display: block;
  height: 7px;
  background: rgba(7, 63, 53, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.progress-lines span::before {
  content: "";
  display: block;
  height: 100%;
  background: var(--gold);
  border-radius: inherit;
}

.progress-lines span:nth-child(1)::before {
  width: 86%;
}

.progress-lines span:nth-child(2)::before {
  width: 64%;
}

.progress-lines span:nth-child(3)::before {
  width: 74%;
}

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

.support-grid article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(7, 63, 53, 0.1);
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.support-grid article:hover {
  transform: translateY(-5px);
  background: var(--white);
  border-color: rgba(199, 163, 90, 0.46);
}

.support-grid i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--forest);
  border: 1px solid rgba(7, 63, 53, 0.18);
  border-radius: 50%;
}

.support-grid h3 {
  font-size: 26px;
}

.process-section {
  background: var(--cream);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 42px;
  height: 1px;
  background: rgba(7, 63, 53, 0.18);
}

.process-steps li {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.process-steps span {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--ivory);
  background: var(--forest);
  border: 1px solid rgba(199, 163, 90, 0.64);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(7, 63, 53, 0.18);
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: var(--ivory);
  background: var(--emerald);
}

.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 45, 40, 0.94), rgba(5, 45, 40, 0.66)),
    linear-gradient(0deg, rgba(5, 45, 40, 0.24), rgba(5, 45, 40, 0.28));
}

.testimonials-content {
  position: relative;
  z-index: 1;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
}

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

.testimonial-card {
  padding: 30px;
  color: var(--ivory);
  background: rgba(247, 243, 234, 0.12);
  border: 1px solid rgba(247, 243, 234, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.featured-testimonial {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.traveller {
  display: flex;
  gap: 16px;
  align-items: center;
}

.traveller img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border: 2px solid rgba(199, 163, 90, 0.78);
  border-radius: 50%;
}

.traveller h3 {
  margin-bottom: 4px;
  color: var(--ivory);
  font-size: 31px;
}

.traveller span,
.compact-testimonial span {
  color: rgba(247, 243, 234, 0.68);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rating {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.featured-testimonial p {
  margin: 24px 0 0;
  color: rgba(247, 243, 234, 0.88);
  font-family: var(--font-heading);
  font-size: 37px;
  line-height: 1.15;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  background: rgba(247, 243, 234, 0.12);
  border: 1px solid rgba(247, 243, 234, 0.22);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.slider-btn:hover,
.slider-btn:focus-visible {
  transform: translateY(-2px);
  color: var(--emerald);
  background: var(--gold);
}

.swiper-pagination {
  position: static;
  width: auto;
}

.swiper-pagination-bullet {
  background: rgba(247, 243, 234, 0.68);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
}

.mini-testimonials {
  display: grid;
  gap: 18px;
}

.compact-testimonial {
  min-height: 206px;
}

.compact-testimonial p {
  margin: 16px 0 0;
  color: rgba(247, 243, 234, 0.82);
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.17;
}

.statement-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(5, 45, 40, 1), rgba(7, 63, 53, 0.96)),
    repeating-linear-gradient(135deg, rgba(247, 243, 234, 0.05) 0 1px, transparent 1px 32px);
}

.statement-section .container {
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -58px;
  left: 0;
  color: rgba(199, 163, 90, 0.34);
  font-family: var(--font-heading);
  font-size: 190px;
  line-height: 1;
}

blockquote {
  max-width: 1040px;
  margin: 0 auto;
  color: var(--ivory);
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

.journey-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.journey-card > span {
  color: rgba(7, 63, 53, 0.18);
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

.journey-card p {
  margin-bottom: 0;
}

.journey-card.elevated {
  background: var(--white);
  border-color: rgba(199, 163, 90, 0.46);
  box-shadow: var(--shadow-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 64px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 132px;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid rgba(7, 63, 53, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(5, 45, 40, 0.06);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: var(--emerald);
  background: transparent;
  border: 0;
  font-weight: 900;
  text-align: left;
}

.faq-question i {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}

.faq-question[aria-expanded="true"] i {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
}

.final-cta {
  padding: 112px 0;
  color: var(--ivory);
  background:
    linear-gradient(135deg, var(--emerald) 0%, var(--forest) 64%, #0A5B50 100%);
}

.final-cta-inner {
  max-width: 930px;
  text-align: center;
}

.final-cta h2 {
  color: var(--ivory);
}

.final-cta p {
  max-width: 660px;
  margin-inline: auto;
  color: rgba(247, 243, 234, 0.78);
  font-size: 19px;
}

.final-actions {
  justify-content: center;
  margin-top: 32px;
}

.availability-note {
  display: block;
  margin-top: 24px;
  color: rgba(247, 243, 234, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  color: rgba(247, 243, 234, 0.74);
  background: var(--emerald);
  border-top: 1px solid rgba(199, 163, 90, 0.24);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.72fr 0.92fr 0.92fr 1.18fr;
  gap: 34px;
  padding: 74px 0 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--ivory);
}

.footer-logo span {
  color: var(--ivory);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}

.footer-brand-block p {
  color: rgba(247, 243, 234, 0.68);
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  color: rgba(247, 243, 234, 0.72);
  font-size: 14px;
  font-weight: 700;
  transition: color var(--transition), transform var(--transition);
}

.footer-grid a + a,
.footer-grid a + span,
.footer-grid span + form {
  margin-top: 10px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  border: 1px solid rgba(247, 243, 234, 0.18);
  border-radius: 50%;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-2px);
  color: var(--emerald);
  background: var(--gold);
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 900;
}

.newsletter-row {
  display: flex;
  overflow: hidden;
  background: rgba(247, 243, 234, 0.1);
  border: 1px solid rgba(247, 243, 234, 0.18);
  border-radius: 999px;
}

.newsletter-row input {
  min-width: 0;
  flex: 1;
  padding: 13px 16px;
  color: var(--ivory);
  background: transparent;
  border: 0;
  outline: 0;
}

.newsletter-row input::placeholder {
  color: rgba(247, 243, 234, 0.46);
}

.newsletter-row button {
  width: 48px;
  flex: 0 0 48px;
  color: var(--emerald);
  background: var(--gold);
  border: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(199, 163, 90, 0.18);
}

.footer-bottom span {
  color: rgba(247, 243, 234, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.back-to-top,
.whatsapp-float {
  position: fixed;
  right: 22px;
  z-index: 1800;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: opacity var(--transition), transform var(--transition), background var(--transition), color var(--transition);
}

.back-to-top {
  bottom: 88px;
  color: var(--ivory);
  background: var(--emerald);
  border: 1px solid rgba(199, 163, 90, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float {
  bottom: 24px;
  color: var(--white);
  background: #1B8F63;
  box-shadow: 0 16px 34px rgba(5, 45, 40, 0.22);
}

.back-to-top:hover,
.back-to-top:focus-visible,
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  color: var(--emerald);
  background: var(--gold);
}

.toast-region {
  position: fixed;
  right: 24px;
  bottom: 150px;
  z-index: 2600;
  display: grid;
  gap: 10px;
  width: calc(100% - 48px);
  max-width: 360px;
}

.toast {
  padding: 15px 18px;
  color: var(--ivory);
  background: rgba(5, 45, 40, 0.96);
  border: 1px solid rgba(199, 163, 90, 0.46);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}

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

.toast.error {
  border-color: rgba(181, 71, 55, 0.62);
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(22px);
    opacity: 0.22;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 14px;
  }

  .brand {
    min-width: 205px;
  }

  .brand strong {
    font-size: 23px;
  }

  .site-nav a {
    padding-inline: 7px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 68px;
  }

  h2,
  blockquote {
    font-size: 46px;
  }

  .hero h1 .mobile-title-break {
    display: block;
  }

  .section {
    padding: 96px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2100;
    width: 100%;
    max-width: 390px;
    height: 100dvh;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 120px 28px 34px;
    color: var(--charcoal);
    background: rgba(247, 243, 234, 0.96);
    border-left: 1px solid rgba(7, 63, 53, 0.12);
    box-shadow: -28px 0 70px rgba(5, 45, 40, 0.18);
    transform: translateX(105%);
    transition: transform 300ms ease;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(7, 63, 53, 0.1);
    font-size: 18px;
  }

  .site-nav a::after {
    left: 0;
    right: auto;
    width: 42px;
    bottom: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 2200;
  }

  .header-cta {
    display: none;
  }

  .intro-grid,
  .about-grid,
  .course-grid,
  .faq-grid,
  .testimonial-layout,
  .section-heading.split-heading {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .value-grid,
  .levels-grid,
  .service-card-grid,
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .level-card.recommended {
    transform: none;
  }

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

  .stats-grid article:nth-child(2) {
    border-right: 1px solid rgba(247, 243, 234, 0.14);
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
    gap: 0;
  }

  .process-steps::before {
    left: 42px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .process-steps li {
    min-height: 150px;
    padding: 0 0 40px 118px;
    text-align: left;
  }

  .process-steps span {
    position: absolute;
    left: 0;
    top: 0;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: 48px;
  }

  h2,
  blockquote {
    font-size: 38px;
  }

  h3 {
    font-size: 27px;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    max-width: 165px;
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    max-width: 360px;
    margin-left: 16px;
    margin-right: auto;
    padding: 150px 0 92px;
  }

  .hero-copy {
    max-width: 360px;
    font-size: 17px;
  }

  .hero h1,
  .hero-actions,
  .trust-points {
    max-width: 360px;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
  }

  .trust-points {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-points li {
    width: 100%;
  }

  .stats-grid,
  .value-grid,
  .levels-grid,
  .service-card-grid,
  .support-grid,
  .journey-grid,
  .form-grid,
  .about-stats,
  .course-metrics {
    grid-template-columns: 1fr;
  }

  .stats-grid article,
  .stats-grid article:last-child,
  .stats-grid article:nth-child(2) {
    min-height: 120px;
    border-right: 1px solid rgba(247, 243, 234, 0.14);
  }

  .intro-media::before {
    inset: 14px -10px -14px 10px;
  }

  .experience-badge,
  .personal-note,
  .device-card {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: -34px 16px 0;
  }

  .price-card {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .planning-form,
  .value-card,
  .level-card,
  .journey-card {
    padding: 24px;
  }

  .image-service-card,
  .image-service-card img {
    min-height: 520px;
  }

  .service-overlay {
    padding: 26px;
  }

  .process-steps::before {
    left: 31px;
  }

  .process-steps li {
    padding-left: 84px;
  }

  .process-steps span {
    width: 62px;
    height: 62px;
    font-size: 27px;
  }

  .featured-testimonial {
    min-height: 500px;
  }

  .featured-testimonial p {
    font-size: 30px;
  }

  .mini-testimonials {
    display: none;
  }

  .quote-mark {
    top: -42px;
    font-size: 136px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  h1 {
    font-size: 42px;
  }

  h2,
  blockquote {
    font-size: 34px;
  }

  .brand span {
    max-width: 184px;
  }

  .brand strong {
    font-size: 18px;
  }

  .site-nav {
    max-width: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    max-width: 330px;
    margin-left: 13px;
    padding-top: 138px;
  }

  .hero h1,
  .hero-copy,
  .hero-actions,
  .trust-points {
    max-width: 330px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 56px;
  }

  .toast-region {
    right: 13px;
    bottom: 142px;
    width: calc(100% - 26px);
  }

  .back-to-top,
  .whatsapp-float {
    right: 16px;
  }
}
