*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
:root {
  --gold: #b8962e;
  --gold-light: #d4af5a;
  --gold-pale: #fbf6ea;
  --gold-border: #e8d5a0;
  --ink: #1c1c1e;
  --ink-2: #3a3a3c;
  --ink-3: #636366;
  --ink-4: #aeaeb2;
  --white: #ffffff;
  --bg: #fafafa;
  --bg-2: #f5f5f7;
  --bronze: #a0522d;
  --silver: #6b7d8a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* TICKER */
.ticker {
  background: var(--ink);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: tick 32s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3px;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes tick {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HERO */
.hero {
  
  background: #ffebf6;
  background: radial-gradient(
    circle,
    rgba(255, 235, 246, 1) 0%,
    rgba(255, 255, 255, 1) 73%,
    rgba(148, 187, 233, 1) 100%
  );
  
  padding: 72px 20px 80px;
  text-align: center;
  border-bottom: 1px solid #ebebeb;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(184, 150, 46, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  position: relative;
}
.badge-blink {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.1s step-end infinite;
  display: inline-block;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto 10px;
  position: relative;
}
.hero h1 span {
  color: var(--gold);
}
.hero-tagline {
  font-size: clamp(18px, 3vw, 21px);
  color: var(--ink-3);
  max-width: 560px;
  color: #000;
  margin: 14px auto 0;
  font-weight: 300;
  line-height: 1.7;
  position: relative;
}
.hero-trusted {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-4);
  letter-spacing: 0.3px;
  font-style: italic;
  margin-top: 8px;
  position: relative;
}
.hero-desc {
  background: var(--bg-2);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  max-width: 680px;
  margin: 28px auto 0;
  padding: 22px 28px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.8;
  position: relative;
}
.hero-cta-wrap {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.22s;
  line-height: 1;
}
.btn-hero-gold {
  background: var(--gold);
  color: #fff;
}
.btn-hero-gold:hover {
  background: #9e7d20;
  transform: translateY(-2px);
}
.btn-hero-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid #dcdcdc;
}
.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-4);
  position: relative;
}
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.hstat {
  flex: 1;
  min-width: 130px;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--gold);
}
.hstat:last-child {
  border-right: none;
}
.hstat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hstat-label {
  font-size: 10.5px;
  color: var(--ink-4);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* SECTIONS */
.section {
  padding: 72px 20px;
}
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 15.5px;
  color: var(--ink-3);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}
.divider-gold {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 0;
}

/* PAIN */
.pain {
  background: var(--bg);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.pain-card {
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: 0.25s;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pain-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.pain-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pain-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.pain-card p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* BONUS */
.bonus-wrap {
  margin-top: 40px;
}
.bonus-banner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 34px 40px;
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
  overflow: hidden;
}
.bonus-banner::after {
  content: "250+";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 130px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  line-height: 1;
}
.bonus-emoji {
  font-size: 50px;
  flex-shrink: 0;
}
.bonus-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.bonus-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}
.bonus-pill {
  display: inline-block;
  margin-top: 10px;
  background: rgba(184, 150, 46, 0.15);
  border: 1px solid rgba(184, 150, 46, 0.3);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
}

/* PACKAGES */
.packages {
  background: var(--white);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pkg-card {
  background: var(--white);
  border: 1.5px solid #ebebeb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}
.pkg-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.pkg-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.1);
}
.pkg-top-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 22px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
  z-index: 2;
}
.pkg-head {
  padding: 32px 26px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.pkg-medal {
  font-size: 36px;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.pkg-tier-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.pkg-tier-label.starter {
  color: var(--bronze);
}
.pkg-tier-label.pro {
  color: var(--silver);
}
.pkg-tier-label.complete {
  color: var(--gold);
}
.pkg-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.15;
}
.pkg-desc {
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 300;
  line-height: 1.5;
}
.pkg-price-box {
  background: var(--bg);
  padding: 14px 26px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid #f0f0f0;
}
.pkg-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
}
.pkg-price-old {
  font-size: 13px;
  color: var(--ink-4);
  text-decoration: line-through;
}
.pkg-save-badge {
  font-size: 11px;
  font-weight: 700;
  background: #e8f5ee;
  color: #1b6b3a;
  padding: 3px 10px;
  border-radius: 100px;
}
.pkg-count-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 26px;
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pkg-count-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
}
.pkg-body {
  padding: 20px 26px;
}
.pkg-book-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pkg-book-list li {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.bck {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bck svg {
  width: 8px;
  height: 8px;
  display: block;
}
.bck.nb {
  background: transparent;
  border: 1.5px solid var(--gold);
}
.bck.nb svg path {
  stroke: var(--gold);
}
.new-tag {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(184, 150, 46, 0.1);
  border: 1px solid rgba(184, 150, 46, 0.25);
  padding: 1px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-left: 2px;
  white-space: nowrap;
}
.pkg-bonus {
  margin-top: 16px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 11px 15px;
  font-size: 12.5px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 9px;
}
.pkg-cta-area {
  padding: 4px 26px 26px;
}
.btn-pkg {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  letter-spacing: 0.2px;
}
.btn-pkg:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.btn-starter {
  background: var(--bronze);
  color: #fff;
}
.btn-pro {
  background: #5a6a75;
  color: #fff;
}
.btn-complete {
  background: var(--ink);
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}
.btn-note {
  text-align: center;
  font-size: 11px;
  color: var(--ink-4);
  margin-top: 8px;
  line-height: 1.5;
}

/* COMPARE */
.compare {
  background: var(--bg);
}
.compare-scroll {
  overflow-x: auto;
  margin-top: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid #e8e8e8;
  box-shadow: var(--shadow-sm);
}
table.ctable {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.ctable th {
  padding: 13px 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-3);
  text-align: left;
  background: var(--bg-2);
  border-bottom: 1.5px solid #e0e0e0;
}
.ctable th.th-pkg {
  text-align: center;
  min-width: 110px;
}
.ctable th.th-complete {
  background: rgba(184, 150, 46, 0.08);
  color: var(--gold);
}
.ctable td {
  padding: 12px 20px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 13px;
  color: var(--ink-2);
}
.ctable td.tc-center {
  text-align: center;
}
.ctable td.tc-complete {
  background: rgba(184, 150, 46, 0.04);
}
.ctable tr:last-child td {
  border-bottom: none;
}
.ctable tr:hover td {
  background: rgba(0, 0, 0, 0.012);
}
.icon-yes {
  color: #1b6b3a;
  font-size: 16px;
  font-weight: 700;
}
.icon-no {
  color: #d0d0d0;
  font-size: 14px;
}

/* FAQ */
.faq {
  background: var(--white);
}
.faq-list {
  max-width: 700px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid #ebebeb;
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.2s;
}
.faq-item.open {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  user-select: none;
  background: var(--white);
}
.faq-arrow {
  font-size: 13px;
  color: var(--gold);
  transition: 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.25s;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.75;
  padding: 0 20px;
  background: var(--white);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 20px 16px;
}

/* FOOTER CTA */
.footer-cta {
  background: var(--ink);
  padding: 88px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 55% at 50% 50%,
    rgba(184, 150, 46, 0.1) 0%,
    transparent 70%
  );
}
.footer-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 12px;
  position: relative;
  line-height: 1.2;
}
.footer-cta h2 em {
  font-style: normal;
  color: var(--gold-light);
}
.footer-cta p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  position: relative;
}
.footer-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-footer-gold {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: 100px;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
}
.btn-footer-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-footer-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
}
.btn-footer-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

footer {
  background: #111;
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* PACKAGE SHOWCASE */
.pkg-showcase {
  padding: 60px 20px 30px;
  background: var(--white);
}
.border {
  border: 1px solid #ccc;
  border-color: orange;
}
.pkg-showcase-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

.pkg-showcase-item {
  text-align: center;
  transition: 0.35s;
}

.pkg-showcase-item:hover {
  transform: translateY(-8px);
}

.pkg-showcase-item img {
  width: 100%;
  max-width: 320px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pkg-showcase-title {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}

.pkg-showcase-sub {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 4px;
}

/* MOBILE */
@media (max-width: 900px) {
  .pkg-showcase-grid {
    grid-template-columns: 1fr;
  }
} /* RESPONSIVE */
@media (max-width: 900px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }
  .pkg-card.featured {
    transform: none;
  }
  .pkg-card.featured:hover {
    transform: translateY(-5px);
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 48px 16px 56px;
  }
  .section {
    padding: 52px 16px;
  }
  .bonus-banner {
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
  }
  .hero-stats .hstat {
    flex: 0 0 50%;
  }
  .hero-stats .hstat:nth-child(2) {
    border-right: none;
  }
  .hero-stats .hstat:nth-child(n + 3) {
    border-top: 1px solid #ebebeb;
  }
  .footer-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-desc {
    padding: 18px 18px;
  }
  .pkg-head {
    padding: 28px 20px 16px;
  }
  .pkg-body,
  .pkg-cta-area {
    padding-left: 18px;
    padding-right: 18px;
  }
  .pkg-price-box,
  .pkg-count-strip {
    padding-left: 18px;
    padding-right: 18px;
  }
}
