@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Playfair+Display:wght@700;800&display=swap");

:root {
  --forest: #33462f;
  --forest-soft: #4f6747;
  --cream: #f8f0c8;
  --paper: #fffef8;
  --ink: #242424;
  --muted: #6e776b;
  --border: #e8e2cf;
  --card: #ffffff;
  --danger: #b93631;
  --shadow: 0 20px 55px rgba(51, 70, 47, 0.16);
  --shadow-card: 0 10px 30px rgba(36, 36, 36, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.display,
h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.08;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  width: min(760px, calc(100% - 32px));
  margin-inline: auto;
}

.top-nav,
.funnel-top {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(248, 240, 200, 0.14);
  background: var(--forest);
}

.top-nav .container,
.funnel-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
}

.brand {
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 800;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-brand img {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.footer .logo-brand img {
  height: 36px;
}

.brand.dark {
  color: var(--forest);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.btn-cream {
  background: var(--cream);
  color: var(--forest);
}

.btn-outline {
  border: 1px solid rgba(248, 240, 200, 0.4);
  background: transparent;
  color: var(--cream);
}

.btn-muted {
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--muted);
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: linear-gradient(rgba(51, 70, 47, 0.82), rgba(51, 70, 47, 0.88)), url("../images/hero-studio.svg") center/cover no-repeat;
  color: var(--cream);
}

.hero-inner {
  display: grid;
  min-height: 620px;
  align-items: center;
  padding-block: 80px 96px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid rgba(248, 240, 200, 0.25);
  border-radius: 999px;
  background: rgba(248, 240, 200, 0.08);
  padding: 7px 14px;
  color: rgba(248, 240, 200, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 24px auto 0;
  font-size: clamp(46px, 8vw, 86px);
}

.hero p {
  max-width: 660px;
  margin: 24px auto 0;
  color: rgba(248, 240, 200, 0.82);
  font-size: 18px;
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 46px;
  color: rgba(248, 240, 200, 0.74);
  font-size: 13px;
}

.video-feature {
  display: grid;
  gap: 26px;
  align-items: center;
  margin-top: 44px;
}

.video-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(51, 70, 47, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(51, 70, 47, 0.86), rgba(51, 70, 47, 0.62)),
    url("../images/hero-studio.svg") center/cover no-repeat;
  color: var(--cream);
  box-shadow: var(--shadow);
  text-align: center;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--forest);
  font-size: 34px;
  font-weight: 900;
}

.problem-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.problem-box {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 26px;
  box-shadow: var(--shadow-card);
  font-size: 18px;
  font-weight: 750;
}

.problem-icon {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  object-fit: contain;
}

.emoji {
  display: block;
  margin-bottom: 12px;
  font-size: 38px;
}

.marquee-wrap {
  overflow: hidden;
  margin-top: 36px;
  border-block: 1px solid rgba(51, 70, 47, 0.12);
  padding-block: 16px;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee-right 24s linear infinite;
}

.marquee-track.left {
  animation-name: marquee-left;
}

.ad-tile,
.proof-tile {
  display: grid;
  flex: 0 0 220px;
  min-height: 300px;
  place-items: center;
  border-radius: 18px;
  background: var(--forest);
  color: var(--cream);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.proof-tile {
  min-height: 180px;
  background: var(--card);
  color: var(--forest);
  border: 1px solid var(--border);
}

.brand-tile {
  display: grid;
  flex: 0 0 220px;
  min-height: 130px;
  place-items: center;
   padding: 22px;
}

.brand-tile img {
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
}

.media-tile,
.testimonial-tile {
  overflow: hidden;
  padding: 0;
}

.media-tile video,
.testimonial-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tile video {
  min-height: 390px;
  background: #111;
}

.testimonial-tile {
  flex-basis: 302px;
  min-height: 0;
  align-self: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.testimonial-tile img {
  width: auto;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  background: transparent;
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding-block: 88px;
}

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

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

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

.section-kicker {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section.forest .section-kicker {
  color: rgba(248, 240, 200, 0.75);
}

.section h2,
.page-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
}

.section-head p,
.page-subtitle {
  margin: 16px auto 0;
  color: var(--muted);
}

.section.forest p {
  color: rgba(248, 240, 200, 0.84);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.card,
.choice-card,
.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.card {
  padding: 28px;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(51, 70, 47, 0.1);
  color: var(--forest);
  font-size: 22px;
}

.process-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  object-fit: contain;
}

.card h3,
.choice-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.step-number {
  color: rgba(51, 70, 47, 0.13);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 76px;
  font-weight: 900;
}

.process-card {
  margin-top: -38px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.choice-card {
  position: relative;
  width: 100%;
  min-height: 340px;
  padding: 30px;
  text-align: left;
  color: var(--ink);
}

.choice-card.popular,
.choice-card.selected {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--cream);
}

.choice-card.popular h3,
.choice-card.selected h3 {
  color: var(--cream);
}

.badge {
  position: absolute;
  top: -13px;
  left: 28px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--forest);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 18px;
}

.price strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 50px;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.choice-card.popular .feature-list,
.choice-card.selected .feature-list {
  color: rgba(248, 240, 200, 0.88);
}

.feature-list li {
  display: flex;
  gap: 9px;
}

.feature-list li::before {
  content: "\2713";
  color: var(--forest);
  font-weight: 900;
}

.choice-card.popular .feature-list li::before,
.choice-card.selected .feature-list li::before {
  color: var(--cream);
}

.guarantee-icon {
  margin-inline: auto;
  font-size: 52px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  color: var(--ink);
  text-align: left;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 800;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: var(--forest);
  color: rgba(248, 240, 200, 0.72);
  padding-block: 32px;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(248, 240, 200, 0.68);
  font-size: 13px;
}

.step {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(248, 240, 200, 0.16);
  color: var(--cream);
  font-size: 12px;
  font-weight: 850;
}

.step.active {
  color: var(--cream);
  font-weight: 800;
}

.step.done .dot,
.step.active .dot {
  background: var(--cream);
  color: var(--forest);
}

.step-line {
  width: 26px;
  height: 1px;
  background: rgba(248, 240, 200, 0.25);
}

.mobile-step {
  display: none;
  color: rgba(248, 240, 200, 0.75);
  font-size: 12px;
}

.page {
  min-height: calc(100vh - 72px);
  padding-block: 44px 110px;
}

.page-head {
  margin-inline: auto;
  text-align: center;
}

.panel {
  overflow: hidden;
  margin-top: 34px;
}

.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: var(--forest);
  color: var(--cream);
  padding: 32px;
}

.panel-top p,
.panel-top h2 {
  margin: 0;
}

.panel-body {
  padding: 30px 32px;
}

.form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  padding: 28px;
}

.field span,
.field-label {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.fake-card-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--paper);
  padding: 13px 15px;
  color: var(--ink);
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(51, 70, 47, 0.12);
}

.stripe-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--paper);
  padding: 14px;
}

.payment-message {
  display: none;
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(185, 54, 49, 0.08);
  color: var(--danger);
  font-size: 13px;
}

.payment-message.visible {
  display: block;
}

.field-error {
  min-height: 16px;
  margin-top: 4px;
  color: var(--danger);
  font-size: 12px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.running-total {
  position: fixed;
  inset: auto 0 0;
  z-index: 15;
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(248, 240, 200, 0.96);
  backdrop-filter: blur(10px);
}

.running-total.visible {
  display: block;
}

.running-total .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
}

.running-total small {
  display: block;
  color: rgba(51, 70, 47, 0.74);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.running-total strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.upgrade-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.order-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.order-row small {
  display: block;
  color: var(--muted);
}

.order-row strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  padding: 22px 24px;
}

.order-total strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
}

.payment-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding: 17px 24px;
  font-weight: 800;
}

.fake-card-input input {
  border: 0;
  background: transparent;
  padding: 0;
}

.card-split {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  background: rgba(36, 36, 36, 0.72);
  padding: 16px;
  backdrop-filter: blur(5px);
}

.modal.visible {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--cream);
  width: 32px;
  height: 32px;
}

.thank-hero {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding-block: 72px;
}

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

.calendar-side {
  border-right: 1px solid var(--border);
  padding: 24px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 14px;
  text-align: center;
}

.calendar-grid button {
  aspect-ratio: 1;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(110, 119, 107, 0.5);
}

.calendar-grid button.available {
  background: var(--cream);
  color: var(--forest);
  font-weight: 800;
}

.calendar-grid button.active {
  background: var(--forest);
  color: var(--cream);
}

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

.time-grid button {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--paper);
  padding: 11px;
  color: var(--ink);
  font-weight: 700;
}

.time-grid button:hover,
.time-grid button.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--cream);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.mini-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  padding: 20px;
}

.text-red {
  color: var(--danger);
  font-weight: 850;
}

.legal-page {
  padding-block: 54px 80px;
}

.legal-page h1 {
  margin-bottom: 8px;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul {
  padding-left: 22px;
}

.hidden {
  display: none !important;
}

@media (max-width: 820px) {
  .grid-3,
  .package-grid,
  .calendar,
  .mini-grid,
  .problem-boxes {
    grid-template-columns: 1fr;
  }

  .stepper {
    display: none;
  }

  .mobile-step {
    display: block;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .section {
    padding-block: 68px;
  }

  .footer .container,
  .panel-top,
  .order-total,
  .payment-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .calendar-side {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}
:root {
  --forest: #33462f;
}
