/* ============================
   MASTERCLASS LP — styles.css
   ============================ */

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

:root {
  --navy: #0a1628;
  --navy-light: #111d33;
  --navy-mid: #162440;
  --green: #00c896;
  --green-dark: #00a67a;
  --green-light: #00e6aa;
  --gold: #f5c842;
  --gold-dark: #d4a830;
  --white: #fff;
  --gray-100: #f4f6f9;
  --gray-200: #e2e6ec;
  --gray-300: #c5cbd6;
  --gray-500: #7a8599;
  --gray-700: #3d4555;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- UTILITY ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--light { background: var(--gray-100); }
.text-center { text-align: center; }

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge--green { background: var(--green); color: var(--white); }
.badge--gold { background: var(--gold); color: var(--navy); }

/* Section headings — replaces inline styles */
.section__title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  margin-bottom: 8px;
}
.section__title--deliver { font-size: clamp(1.5rem,3vw,2rem); margin-top: 16px; color: var(--white); }
.section__title--content { font-size: clamp(1.5rem,3vw,2.1rem); }
.section__title--pricing { font-size: clamp(1.5rem,3vw,2.1rem); }
.section__subtitle { color: var(--gray-500); max-width: 680px; margin: 0 auto 16px; font-size: 1rem; }
.section__subtitle--pricing { font-size: .95rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  border-radius: 60px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease, color .3s ease;
  text-align: center;
  line-height: 1.3;
}
.btn--primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,200,150,.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,200,150,.45); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(245,200,66,.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,200,66,.45); }
.btn--outline { background: transparent; border: 2px solid var(--green); color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 20px 52px; font-size: 1.1rem; }

/* ---- TOP BAR ---- */
.topbar {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ---- HERO ---- */
.hero { color: var(--white); position: relative; overflow: hidden; background-color: var(--navy); }
.hero__bg { position: absolute; inset: 0; background: url('images/hero-bg.jpg') right center / cover no-repeat; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,22,40,.92) 0%, rgba(10,22,40,.7) 50%, rgba(10,22,40,.3) 100%); }
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1fr; align-items: center; min-height: 85vh; padding: 100px 0 80px; max-width: 640px; }
.hero__tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,200,150,.12); border: 1px solid rgba(0,200,150,.25); border-radius: 50px; padding: 8px 20px; font-size: .8rem; font-weight: 600; color: var(--green-light); margin-bottom: 24px; }
.hero__tag span { display: inline-block; width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--green-light); }
.hero__sub { font-size: 1.05rem; color: var(--gray-300); margin-bottom: 32px; line-height: 1.7; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.hero__meta-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--gray-300); background: rgba(255,255,255,.05); padding: 8px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,.08); }
.hero__meta-item svg { flex-shrink: 0; color: var(--green); }
.hero__price-tag { display: inline-block; background: rgba(245,200,66,.12); border: 1px solid rgba(245,200,66,.3); border-radius: 8px; padding: 10px 20px; margin-bottom: 28px; font-size: .9rem; color: var(--gold); }
.hero__price-tag strong { font-size: 1.15rem; }

/* ---- DELIVERABLES ---- */
.deliverables { background: var(--navy-light); }
.deliver__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 20px; margin-top: 40px; }
.deliver__card { background: var(--navy-mid); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: transform .3s ease; }
.deliver__card:hover { transform: translateY(-4px); }
.deliver__card .icon { font-size: 2rem; margin-bottom: 12px; }
.deliver__card h4 { font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.deliver__card p { font-size: .8rem; color: var(--gray-500); }

/* ---- CURRICULUM ---- */
.curriculum__grid { display: grid; gap: 24px; margin-top: 48px; }
.curr__card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; transition: box-shadow .3s ease; }
.curr__card:hover { box-shadow: var(--shadow); }
.curr__num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--green); font-size: .85rem; font-weight: 800; margin-bottom: 16px; }
.curr__card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.curr__card ul { list-style: none; display: grid; gap: 8px; }
.curr__card ul li { position: relative; padding-left: 24px; font-size: .92rem; color: var(--gray-700); }
.curr__card ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.curr__case { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; padding: 6px 14px; border-radius: 50px; background: rgba(0,200,150,.1); font-size: .8rem; font-weight: 600; color: var(--green-dark); }

/* ---- PRICING ---- */
.pricing { background: var(--navy); color: var(--white); }
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; align-items: start; }
.price__card { border-radius: var(--radius-lg); padding: 36px 28px; position: relative; overflow: hidden; transition: transform .3s ease; }
.price__card--base { background: var(--navy-mid); border: 1px solid rgba(255,255,255,.08); }
.price__card--vip { background: linear-gradient(145deg, rgba(245,200,66,.08), rgba(245,200,66,.02)); border: 2px solid var(--gold); transform: scale(1.03); }
.price__card--vip:hover { transform: scale(1.05); }
.price__popular { position: absolute; top: 0; right: 0; background: var(--gold); color: var(--navy); padding: 6px 20px; border-radius: 0 0 0 var(--radius); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.price__name { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.price__name--base { color: var(--green); }
.price__name--gold { color: var(--gold); }
.price__desc { font-size: .85rem; color: var(--gray-500); margin-bottom: 24px; }
.price__lots { display: grid; gap: 10px; margin-bottom: 24px; }
.price__lot { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-radius: 8px; font-size: .9rem; }
.price__lot--active { background: rgba(0,200,150,.12); border: 1px solid rgba(0,200,150,.3); }
.price__lot--active-gold { background: rgba(245,200,66,.1); border: 1px solid rgba(245,200,66,.4); }
.price__lot--inactive { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); color: var(--gray-500); }
.price__lot--active .lot-price { font-weight: 800; color: var(--green-light); font-size: 1.05rem; }
.price__lot--active-gold .lot-price { font-weight: 800; color: var(--gold); font-size: 1.05rem; }
.price__lot--inactive .lot-price { text-decoration: line-through; opacity: .5; }
.price__lot .lot-label { font-weight: 600; }
.price__features { list-style: none; display: grid; gap: 10px; margin-bottom: 28px; }
.price__features li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; }
.price__features li svg { flex-shrink: 0; margin-top: 2px; }
.price__features li.included svg { color: var(--green); }
.price__features li.excluded { color: var(--gray-500); }
.price__features li.excluded svg { color: var(--gray-500); }
.price__features li.included--vip { font-weight: 600; color: var(--gold); }
.price__features li.included--vip svg { color: var(--gold); }

/* ---- URGENCY ---- */
.urgency { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-top: 2px solid var(--green); padding: 40px 0; text-align: center; }
.urgency p { font-size: 1.05rem; color: var(--gray-300); }
.urgency strong { color: var(--gold); }

/* ---- FINAL CTA ---- */
.final-cta { background: var(--navy); padding: 60px 0; text-align: center; }
.final-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.final-cta h2 .highlight { color: var(--green); }
.final-cta p { color: var(--gray-300); margin-bottom: 32px; font-size: 1rem; }
.trust-badges { display: flex; justify-content: center; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--gray-500); }
.trust-badge svg { color: var(--green); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero__grid { padding: 60px 0 50px; min-height: auto; text-align: center; }
  .hero__overlay { background: linear-gradient(to right, rgba(10,22,40,.95) 0%, rgba(10,22,40,.85) 100%); }
  .hero__meta { justify-content: center; flex-direction: column; align-items: center; }
  .hero__tag { margin: 0 auto 24px; }
  .hero__price-tag { margin-left: auto; margin-right: auto; }
  .pricing__grid { grid-template-columns: 1fr; }
  .price__card--vip { transform: none; order: -1; }
  .deliver__grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .btn { padding: 16px 32px; font-size: .95rem; }
  .btn--lg { padding: 18px 40px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .deliver__grid { grid-template-columns: 1fr; }
}
