:root {
  --cream: #F0F9F0;
  --cream-deep: #D8F0D8;
  --sage-pale: #C6EDBA;
  --sage: #5DB85D;
  --sage-deep: #1B7A3D;
  --ink: #163020;
  --clay: #D4A843;
  --forest: #0E8C4A;
  --forest-dark: #077038;
  --white: #F8FFF8;
  --max: 1120px;
  --radius: 22px;
  --shadow: 0 18px 40px -20px rgba(14, 140, 74, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
.display {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

section {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-wide {
  width: 100%;
}

/* ---------- Breathing signature ring ---------- */
.breath-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.breath-ring {
  position: absolute;
  inset: -14px;
  border-radius: 100px;
  border: 1.5px solid rgba(14, 180, 90, 0.45);
  animation: breathe 5.2s ease-in-out infinite;
  pointer-events: none;
}

.breath-ring.d2 {
  inset: -26px;
  animation-delay: 0.6s;
  opacity: .6;
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(0.94);
    opacity: .35;
  }

  50% {
    transform: scale(1.06);
    opacity: .85;
  }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(240, 249, 240, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 140, 74, 0.12);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--sage-deep);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
  background: linear-gradient(135deg, #1B7A3D 0%, #0E8C4A 60%, #163020 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 700;
}

.brand-sub {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  -webkit-text-fill-color: var(--clay);
}

footer .brand-text {
  background: linear-gradient(135deg, #F8FFF8 0%, #C6EDBA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav .btn {
  padding: 10px 22px;
  font-size: 14px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--sage-pale);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--clay);
}

.hero p.sub {
  font-size: 18px;
  max-width: 480px;
  color: #2E6040;
  margin-bottom: 34px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 14px;
  color: #3D7050;
}

.hero-art {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(14, 140, 74, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.hero-art img.hero-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-art:hover img.hero-img-cover {
  transform: scale(1.04);
}

.hero-badge-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #1B7A3D;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(14, 140, 74, 0.2);
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  opacity: 0.7;
  padding-bottom: 36px;
}

.scroll-cue .line {
  width: 1px;
  height: 30px;
  background: var(--sage-deep);
  animation: scrolldown 1.8s ease-in-out infinite;
}

@keyframes scrolldown {
  0% {
    opacity: 0.1;
    transform: scaleY(0.3);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0.1;
    transform: scaleY(0.3);
  }
}

/* wave divider */
.wave {
  display: block;
  width: 100%;
  line-height: 0;
}

.wave svg {
  width: 100%;
  height: auto;
}

/* ---------- Pain / Solution ---------- */
.pain {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 90px 0 110px;
}

.pain h2,
.pain h3 {
  color: var(--cream);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.pain-col {
  max-width: 420px;
}

.pain-col .tag {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-pale);
  margin-bottom: 14px;
  display: block;
}

.pain-col p {
  font-size: 17px;
  color: #C6EDCC;
}

.pain-col.solution .tag {
  color: var(--clay);
}

.breath-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--clay);
}

.breath-divider .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
  animation: breathe-dot 5.2s ease-in-out infinite;
}

@keyframes breathe-dot {

  0%,
  100% {
    transform: scale(0.7);
    opacity: .5;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

.breath-divider .stem {
  width: 1px;
  height: 70px;
  background: linear-gradient(var(--clay), transparent);
}

.core-msg {
  margin-top: 60px;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--white);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.core-msg .step {
  color: var(--sage-pale);
  font-style: normal;
  font-weight: 600;
}

/* ---------- Pricing ---------- */
.pricing {
  padding: 100px 0 90px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 14px;
}

.section-head p {
  color: #2E6040;
  font-size: 16px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px 30px;
  border: 1px solid rgba(14, 140, 74, 0.15);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.price-card.featured {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-14px);
  border: none;
  box-shadow: 0 26px 50px -18px rgba(14, 140, 74, 0.45);
}

.price-card.featured:hover {
  transform: translateY(-18px);
}

.price-card.featured h3,
.price-card.featured .level {
  color: var(--white);
}

.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clay);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 16px -6px rgba(193, 122, 62, 0.6);
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.level {
  font-size: 13px;
  color: var(--clay);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.price-card.featured .level {
  color: var(--sage-pale);
}

.price {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 4px;
}

.price-unit {
  font-size: 13px;
  opacity: 0.65;
  margin-bottom: 26px;
  display: block;
}

.price-card ul {
  list-style: none;
  margin-bottom: auto;
  padding-bottom: 24px;
}

.price-card ul li {
  font-size: 14.5px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  color: #2A5535;
}

.price-card.featured ul li {
  color: #D8F5E0;
}

.price-card ul li svg {
  flex: 0 0 auto;
  margin-top: 3px;
}

.price-card .perk {
  font-size: 13px;
  font-style: italic;
  color: var(--sage-deep);
  background: var(--sage-pale);
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.price-card.featured .perk {
  background: rgba(255, 255, 255, 0.14);
  color: var(--sage-pale);
}

.price-card .btn {
  margin-top: auto;
}

.price-card.featured .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.price-card.featured .btn-outline:hover {
  background: var(--white);
  color: var(--forest);
}

/* Price card images */
.price-card-img {
  width: calc(100% + 56px);
  margin: -36px -28px 20px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}

.price-card-img svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Experience level bar */
.exp-section {
  padding-top: 16px;
  border-top: 1px solid rgba(14, 140, 74, 0.12);
  margin-bottom: 18px;
}

.price-card.featured .exp-section {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.exp-label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sage-deep);
  margin-bottom: 8px;
}

.price-card.featured .exp-label {
  color: var(--sage-pale);
}

.exp-bar {
  height: 6px;
  background: var(--cream-deep);
  border-radius: 100px;
  overflow: hidden;
}

.price-card.featured .exp-bar {
  background: rgba(255, 255, 255, 0.15);
}

.exp-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--sage), var(--forest));
  transition: width 1.2s ease;
}

.price-card.featured .exp-fill {
  background: linear-gradient(90deg, #7BE09A, #C6EDBA);
}

.exp-range {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--sage);
  margin-top: 6px;
  font-weight: 600;
}

.price-card.featured .exp-range {
  color: var(--sage-pale);
}

/* ---------- Why choose ---------- */
.why {
  background: var(--cream-deep);
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-card:nth-child(2) {
  margin-top: 34px;
}

.why-card:nth-child(4) {
  margin-top: -34px;
}

.why-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 14.5px;
  color: #2E6040;
}

/* ---------- Form / registration ---------- */
.register {
  padding: 100px 0 110px;
  background: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.register .wrap {
  position: relative;
  z-index: 2;
}

.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.register h2 {
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 16px;
}

.register .limit {
  font-size: 14px;
  color: var(--sage-pale);
  font-weight: 600;
  margin-bottom: 28px;
}

.countdown {
  display: flex;
  gap: 14px;
  margin-bottom: 34px;
}

.countdown .box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  min-width: 74px;
}

.countdown .box .num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
}

.countdown .box .lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-pale);
}

.countdown-caption {
  font-size: 13.5px;
  color: #A8E0B8;
}

.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}

.form-card h3 {
  font-size: 18px;
  margin-bottom: 22px;
  color: var(--sage-deep);
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #1B5030;
}

.field input,
.field select {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid #A8D8B0;
  background: var(--cream);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 15px;
  color: var(--ink);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--sage-deep);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px 10px 4px;
}

.form-success .check {
  margin: 0 auto 14px;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: #2E6040;
}

/* ---------- Footer ---------- */
footer {
  background: var(--sage-deep);
  color: #C6F0D0;
  padding: 56px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

footer h4 {
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 14px;
}

footer p,
footer a {
  font-size: 14px;
  color: #A8E0B8;
  text-decoration: none;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #C6EDBA !important;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.footer-contact-link:hover {
  background: #0E8C4A;
  color: #FFFFFF !important;
  border-color: #5DB85D;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

footer .brand {
  color: var(--white);
  margin-bottom: 10px;
}

/* ---------- Photo Gallery Grid ---------- */
.gallery {
  padding: 90px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(14, 140, 74, 0.1);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(14, 140, 74, 0.12);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 16/11;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(14, 140, 74, 0.22);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(0deg, rgba(14, 48, 26, 0.9) 0%, rgba(14, 48, 26, 0) 100%);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 600;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 920px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/10;
  }
}

@media (max-width: 580px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }
}

/* ---------- Video Section ---------- */
.video-section {
  padding: 90px 0;
  background: #F0F9F0;
}

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

.video-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(14, 140, 74, 0.1);
  border: 1px solid rgba(14, 140, 74, 0.14);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14, 140, 74, 0.22);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.video-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--sage-deep);
  font-family: 'Be Vietnam Pro', sans-serif;
}

.video-info p {
  font-size: 13.5px;
  color: #3D7050;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 580px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */
.faq {
  padding: 100px 0;
  background: var(--cream);
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.faq-tab {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(14, 140, 74, 0.22);
  background: var(--white);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-deep);
  cursor: pointer;
  transition: all .25s ease;
}

.faq-tab.active,
.faq-tab:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  box-shadow: 0 4px 14px rgba(14, 140, 74, 0.22);
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(14, 140, 74, 0.14);
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}

.faq-item.active {
  border-color: var(--forest);
  box-shadow: 0 8px 24px -10px rgba(14, 140, 74, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-question:hover {
  color: var(--forest);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--sage-pale);
}

.faq-icon svg {
  stroke: var(--forest);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(0, 1, 0, 1), padding .3s ease;
  padding: 0 24px;
  color: #2E6040;
  font-size: 15px;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px;
  transition: max-height .35s ease-in-out, padding .3s ease;
}

.faq-answer ul {
  margin-top: 10px;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 6px;
}

/* ---------- Preparation ---------- */
.prep {
  padding: 100px 0;
  background: var(--cream-deep);
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.prep-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(14, 140, 74, 0.12);
  box-shadow: 0 10px 30px -15px rgba(14, 140, 74, 0.12);
  display: flex;
  flex-direction: column;
}

.prep-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(14, 140, 74, 0.22);
}

.prep-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.prep-card h3 {
  font-size: 19px;
  color: var(--sage-deep);
}

.prep-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prep-list li {
  font-size: 14.5px;
  line-height: 1.6;
  color: #2E6040;
}

.prep-list li strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Responsive & Mobile Optimization ---------- */
@media (max-width:920px) {
  .wrap {
    padding: 0 20px;
  }

  .nav .wrap {
    padding: 12px 20px;
  }

  .hero {
    padding: 36px 0 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
    text-align: center;
  }

  .hero p.sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-art {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }

  .pain {
    padding: 60px 0 80px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .pain-col {
    max-width: 100%;
    margin: 0 auto;
  }

  .breath-divider {
    flex-direction: row;
    justify-content: center;
  }

  .breath-divider .stem {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--clay), transparent);
  }

  .pricing {
    padding: 60px 0;
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-card.featured {
    transform: none;
    order: -1;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }

  .why {
    padding: 60px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    margin-top: 0 !important;
    padding: 24px;
  }

  .prep {
    padding: 60px 0;
  }

  .prep-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .prep-card {
    padding: 24px 20px;
  }

  .faq {
    padding: 60px 0;
  }

  .faq-categories {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
    margin-bottom: 30px;
    gap: 10px;
  }

  .faq-tab {
    flex: 0 1 auto;
    white-space: normal;
    text-align: center;
  }

  .register {
    padding: 60px 0 80px;
  }

  .register-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width:580px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .brand {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.16;
  }

  .hero p.sub {
    font-size: 15.5px;
    margin-bottom: 24px;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .breath-wrap,
  .breath-wrap .btn {
    width: 100%;
  }

  .section-head h2 {
    font-size: 25px;
  }

  .price-card {
    padding: 26px 18px 22px;
  }

  .price-card-img {
    width: calc(100% + 36px);
    margin: -26px -18px 18px;
    height: 150px;
  }

  .countdown {
    gap: 8px;
    justify-content: center;
  }

  .countdown .box {
    min-width: 60px;
    padding: 10px 4px;
  }

  .countdown .box .num {
    font-size: 22px;
  }

  .field input,
  .field select {
    font-size: 16px;
    padding: 13px 14px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px 18px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 18px;
  }
}