/* ── Meditation Coach · Global Stylesheet ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2744;
  --teal:       #2a9d8f;
  --teal-dark:  #1f7a6e;
  --teal-light: #e8f5f4;
  --gold:       #e9c46a;
  --warm-white: #fdfbf8;
  --off-white:  #f5f0ea;
  --text:       #2c2c2c;
  --text-muted: #6b6b6b;
  --border:     #e0d9d0;
  --radius:     12px;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: Georgia, 'Times New Roman', serif; color: var(--text); background: var(--warm-white); line-height: 1.7; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; background: white; border-bottom: 1px solid var(--border); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-size: 1.2rem; font-weight: bold; color: var(--navy); text-decoration: none; }
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { background: var(--teal) !important; color: white !important; padding: 8px 18px !important; border-radius: 100px !important; font-size: 0.85rem !important; }
.nav-cta:hover { background: var(--teal-dark) !important; }
@media (max-width: 680px) { .nav-links { display: none; } }

/* ── BUTTONS ── */
.btn-primary { background: var(--teal); color: white; padding: 14px 32px; border-radius: 100px; text-decoration: none; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.95rem; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: white; padding: 13px 32px; border-radius: 100px; text-decoration: none; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.95rem; border: 1px solid rgba(255,255,255,0.4); cursor: pointer; transition: border-color 0.2s, background 0.2s; display: inline-block; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }
.btn-buy { background: var(--teal); color: white; border: none; padding: 8px 18px; border-radius: 100px; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.82rem; cursor: pointer; text-decoration: none; transition: background 0.2s; display: inline-block; }
.btn-buy:hover { background: var(--teal-dark); }

/* ── LAYOUT ── */
section { padding: 4rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-label { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); margin-bottom: 0.5rem; }
.section-header h2 { font-size: 2rem; font-weight: normal; color: var(--navy); }
.section-header p { color: var(--text-muted); font-size: 1rem; margin-top: 0.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.product-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-thumb { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.product-body { padding: 1rem 1.1rem; display: flex; flex-direction: column; flex: 1; }
.product-duration { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.75rem; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-title { font-size: 1rem; font-weight: bold; color: var(--navy); margin-bottom: 0.4rem; line-height: 1.3; }
.product-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; flex: 1; margin-bottom: 0.9rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 1.1rem; font-weight: bold; color: var(--navy); }

/* ── COURSES ── */
.course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.course-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.course-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.course-banner { padding: 2.5rem 2rem; color: white; text-align: center; }
.course-banner h3 { font-size: 1.4rem; font-weight: normal; margin-bottom: 0.4rem; }
.course-banner p { font-size: 0.9rem; opacity: 0.8; }
.course-body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.course-includes { list-style: none; margin-bottom: 1.25rem; font-size: 0.9rem; color: var(--text-muted); }
.course-includes li::before { content: '✓  '; color: var(--teal); }
.course-includes li { margin-bottom: 4px; }
.course-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.course-price { font-size: 1.35rem; font-weight: bold; color: var(--navy); }
.course-price-note { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.75rem; color: var(--text-muted); }

/* ── FOOTER ── */
footer { background: #111827; color: rgba(255,255,255,0.6); padding: 2.5rem 2rem; text-align: center; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.85rem; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: white; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; list-style: none; flex-wrap: wrap; }

/* ── ZOOM BANNER ── */
.zoom-banner { background: var(--teal-light); border-bottom: 1px solid #c5e3df; padding: 0.85rem 2rem; text-align: center; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 0.9rem; color: var(--teal-dark); }
.zoom-banner a { color: var(--teal-dark); font-weight: bold; }

/* ── THANK YOU PAGE ── */
.thankyou-wrap { max-width: 600px; margin: 4rem auto; padding: 0 2rem; text-align: center; }
.thankyou-wrap .check { font-size: 4rem; margin-bottom: 1rem; }
.thankyou-wrap h1 { font-size: 2rem; font-weight: normal; color: var(--navy); margin-bottom: 0.75rem; }
.thankyou-wrap p { color: var(--text-muted); margin-bottom: 1.5rem; }
.download-box { background: var(--teal-light); border: 1px solid #c5e3df; border-radius: var(--radius); padding: 2rem; margin: 2rem 0; }
.download-box p { color: var(--teal-dark); margin-bottom: 1rem; font-size: 0.95rem; }
