/* ─────────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────────── */
:root {
  --white:        #F8F8F5;
  --dark-grey:   #272727;
  --green:        #b0d48a;
  --green-muted: #8fc96d;
  --grey-mid:    #6B6B6B;
  --grey-light:  #D6D3CE;
  --grey-rule:   #d0d0d0;
  --ink:         #111113;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  --radius:    15px;
  --max-width: 1100px;
}

/* ─────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--dark-grey);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ─────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-xl);
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.grid-two--reversed {
  direction: rtl;
}
.grid-two--reversed > * {
  direction: ltr;
}

/* ─────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-md);
  color: var(--white);
}

h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  
}

p {
  color: var(--grey-mid);
  margin-bottom: var(--space-sm);
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow,
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-sm);
}

.accent {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--dark-grey);
}

.accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
}

/* ─────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 14px;
  cursor: pointer;
  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
  text-align: center;
  margin-top: var(--space-sm);

}

.btn--primary {
  position: relative;
  overflow: hidden;
  padding: 0.9rem 2rem;
  color: var(--green);
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.03)
    );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(176,212,138,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 10px 30px rgba(0,0,0,0.25),
    0 0 25px rgba(176,212,138,0.08);
      border: 1px solid var(--green);
      
}

.btn--primary:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(
      135deg,
      rgba(176,212,138,0.25),
      rgba(176,212,138,0.08)
    );
  border-color: rgba(176,212,138,0.7);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 15px 40px rgba(0,0,0,0.3),
    0 0 35px rgba(176,212,138,0.25);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255,255,255,.18),
    transparent 70%
  );
  transform: translateX(-120%);
  animation: buttonShine 5s ease-in-out infinite;
}

@keyframes buttonShine {
  0%, 55% {
    transform: translateX(-120%);
  }

  70% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.btn--primary:hover::before {
  transform: translateX(120%);
}

.btn--large {
  padding: 1.1rem 2.75rem;
  font-size: 1rem;
  margin-top: 0;
}

#hero__button {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--green);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 12px;
  box-shadow:
    0 8px 20px rgba(176,212,138,0.25),
    inset 0 1px 0 rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
    margin-top: 0;
}

#hero__button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(176,212,138,0.35),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

#hero__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255,255,255,.45),
    transparent 80%
  );

  transform: translateX(-120%);
  animation: heroShine 5s ease-in-out infinite;
}

@keyframes heroShine {
  0%, 60% {
    transform: translateX(-120%);
  }

  75% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

/* ─────────────────────────────────────────────────
   PLACEHOLDER IMAGES
───────────────────────────────────────────────── */
.placeholder-img {
  background: var(--grey-rule);
  border: 1px dashed var(--grey-mid);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--grey-mid);
  font-size: 0.875rem;
  line-height: 1.5;
}

.placeholder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ─────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────── */
.hero {
  padding-block: var(--space-xl);
  /* border-bottom: 1px solid var(--grey-rule); */
}

.hero__inner {
  max-width: 720px;
}

.hero__headline {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  color: var(--dark-grey);
}

.hero__sub {
  font-size: 1.1875rem;
  color: var(--ink);
  max-width: 560px;
  margin-bottom: var(--space-md);
}

.hero__reassurance {
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--grey-mid);
}

/* typing line */

.pain-bar {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--dark-grey);
  margin: 0;
    max-height: 10vh;
}
@media screen and (max-width: 600px) {
.pain-bar {
  padding: 5% 10%;
    max-height: 10vh;
  display: flex;
  align-items: center;
}
  
}
/* .pain-headline {
  color: var(--dark-grey);
  text-align: center;
} */
.typing-line {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--dark-grey);
  text-align: center;
}

.cursor {
  color: #B0D48A;
}
/* ─────────────────────────────────────────────────
   PROBLEM SECTION
───────────────────────────────────────────────── */
.problem__copy h2 {
  color: var(--dark-grey);
}

.symptom-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.symptom-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--grey-mid);
  font-size: 0.9375rem;
}

.symptom-list li::before {
  content: '—';
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ─────────────────────────────────────────────────
   SOLUTION
───────────────────────────────────────────────── */
.solution {
  border-top: 1px solid var(--grey-rule);
  border-bottom: 1px solid var(--grey-rule);
  background: #111;
}

.solution__inner {
  max-width: 680px;
}

.solution h2 {
  color: var(--green);
}

.solution__lead {
  font-size: 1.0625rem;
  color: var(--white);
}

/* ─────────────────────────────────────────────────
   DELIVERABLES
───────────────────────────────────────────────── */
.deliverables__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}

.deliverable-card {
  position: relative;
  overflow: hidden;

  padding: 2rem 1.75rem;

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.12),
      rgba(255,255,255,0.025)
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(176,212,138,0.35);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 12px 35px rgba(0,0,0,0.25),
    0 0 25px rgba(176,212,138,0.08);

  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}


/* glass shine */
.deliverable-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255,255,255,.16),
    transparent 75%
  );

  transform: translateX(-120%);
  transition: transform .6s ease;
}


.deliverable-card:hover::before {
  transform: translateX(120%);
}


.deliverable-card:hover {
  transform: translateY(-5px);

  background:
    linear-gradient(
      135deg,
      rgba(176,212,138,0.22),
      rgba(176,212,138,0.06)
    );

  border-color: rgba(176,212,138,0.75);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 18px 45px rgba(0,0,0,0.3),
    0 0 40px rgba(176,212,138,0.22);
}


.deliverable-card__icon {
  color: var(--green);
  margin-bottom: 1rem;
}

.deliverable-card h3 {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: .75rem;
}

.deliverable-card p {
  color: var(--grey-mid);
  line-height: 1.6;
  font-size: .9rem;
}

/* ─────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────── */
.how-it-works {
  background: #111;
  border-top: 1px solid var(--grey-rule);
}

.how-it-works h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--grey-rule);
}

.step:last-child {
  border-bottom: none;
}

.step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--grey-rule);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  letter-spacing: -0.02em;
}

.step h3 {
  color: var(--green);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--grey-light);
}

/* ─────────────────────────────────────────────────
   FOR WHO
───────────────────────────────────────────────── */
.for-who__copy h2 {
  color: var(--dark-grey);
}

.subline {
  color: var(--ink);
}

.for-who__not-label {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--grey-mid);
}

.not-list {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.not-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--grey-mid);
  font-size: 0.9375rem;
}

.not-list li::before {
  content: '×';
  color: #555;
  flex-shrink: 0;
}

.for-who__image img{
width: 100%;
border-radius: var(--radius);
}

/* ─────────────────────────────────────────────────
   BELIEF BLOCK
───────────────────────────────────────────────── */
.belief {
  padding-block: var(--space-xl);
  border-top: 1px solid var(--grey-rule);
  border-bottom: 1px solid var(--grey-rule);
  background: var(--white);
}

.belief__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  font-style: normal;
  color: var(--dark-grey);
  line-height: 1.35;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  border: none;
}

.belief__quote em {
  position: relative;
  display: inline-block;
  color: var(--green);
  font-style: italic;
}

.belief__quote em::after {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  bottom: 0.05em;
  height: 0.35em;

  background: rgba(176,212,138,0.25);
  z-index: -1;

  transform: scaleX(0);
  transform-origin: left;

  animation: highlightReveal 1.2s ease-out forwards;
  animation-delay: 0.8s;
}

@keyframes highlightReveal {
  to {
    transform: scaleX(1);
  }
}

/* ─────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────── */
.cta-section {
  background: #0A0A0A;
  border-top: 1px solid var(--grey-rule);
}

.cta-section__inner {
  max-width: 580px;
  text-align: center;
}

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

.cta-section__detail {
  font-size: 1rem;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
  color: var(--grey-light);
}

.cta-section__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.price-note {
  font-size: 0.875rem;
  color: var(--grey-light);
}

.cta-section__reassurance {
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--grey-mid);
}

/* ─────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────── */
.faq {
  border-top: 1px solid var(--grey-rule);
}

.faq__inner {
  max-width: 700px;
}

.faq h2 {
  color: var(--dark-grey);
  margin-bottom: var(--space-lg);
}

.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--grey-rule);
}

.faq__item {
  border-bottom: 1px solid var(--grey-rule);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--dark-grey);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding-block: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: var(--green);
}

.faq__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  color: var(--green);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq__icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.faq__icon::after {
  width: 2px;
  height: 18px;
  left: 8px;
  top: 0;
}

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__answer.is-open {
  grid-template-rows: 1fr;
}

.faq__answer > p {
  overflow: hidden;
  padding-bottom: 1.25rem;
  margin: 0;
  font-size: 0.9375rem;
}

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--grey-rule);
  padding-block: var(--space-lg);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-grey);
  margin: 0;
}

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--grey-mid);
  margin: 0.2rem 0 0;
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--grey-mid);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--dark-grey);
}

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .deliverables__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .grid-two--reversed {
    direction: ltr;
  }

  .problem__image {
    order: -1;
  }
}

@media (max-width: 600px) {
  :root {
    --space-xl: 4.5rem;
    --space-lg: 2.5rem;
  }

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

  .proof-bar__quotes {
    flex-direction: column;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-bar__inner {
    flex-direction: column;
  }
}

/* ─────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ─────────────────────────────────────────────────
   FOCUS STYLES
───────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--radius);
}
