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

body {
  font-family: 'Segoe UI', 'Noto Sans', sans-serif;
  color: var(--brand-ink);
  background: var(--brand-cream);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- Header: pill button row (non-traditional nav) ---- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--brand-line);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 24px;
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-indigo);
  white-space: nowrap;
}
.logo-badge {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brand-indigo);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  border: 3px solid var(--brand-coral);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand-cream-soft);
  color: var(--brand-indigo);
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: var(--brand-indigo); color: #fff; }
.header-cta {
  background: var(--brand-coral);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 22px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---- Hero: centered with badge icon ---- */
.hero {
  text-align: center;
  padding: 76px 24px 60px;
  max-width: 880px;
  margin: 0 auto;
}
.hero-badge-icon {
  width: 130px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 14px 26px rgba(47,61,107,0.22));
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--brand-indigo);
  margin-bottom: 22px;
  line-height: 1.35;
}
.hero p {
  font-size: 1.05rem;
  color: #58596b;
  max-width: 680px;
  margin: 0 auto 30px;
}
.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--brand-indigo); color: #fff; box-shadow: 0 12px 26px rgba(47,61,107,0.28); }
.btn-coral { background: var(--brand-coral); color: #fff; box-shadow: 0 12px 26px rgba(209,106,81,0.32); }
.btn-outline { background: #fff; color: var(--brand-indigo); border: 2px solid var(--brand-indigo); }

/* ---- Split: text + phone mockup steps ---- */
.steps-section { padding: 70px 24px; background: var(--brand-cream-soft); }
.steps-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.steps-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--brand-indigo); margin-bottom: 18px; }
.steps-text p { color: #58596b; margin-bottom: 26px; }
.steps-cta-list { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.phone-mock {
  background: var(--brand-indigo);
  border-radius: 34px;
  padding: 18px;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(47,61,107,0.25);
}
.phone-mock-inner { background: #fff; border-radius: 20px; padding: 24px 20px; }
.phone-mock-title { color: var(--brand-coral); font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px; }
.phone-step { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.phone-step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand-coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; flex-shrink: 0;
}
.phone-step-text { font-size: 0.86rem; color: var(--brand-ink); }

/* ---- Section heading ---- */
.section-heading { text-align: center; max-width: 660px; margin: 0 auto 50px; }
.section-heading .kicker { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 800; color: var(--brand-coral); margin-bottom: 12px; }
.section-heading h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); color: var(--brand-indigo); }

/* ---- Video embed ---- */
.video-section { padding: 76px 24px; }
.video-frame {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(47,61,107,0.14);
}
.video-frame img { width: 100%; height: 420px; object-fit: cover; }

/* ---- Plan rows (stacked, matches reference site's long-card layout) ---- */
.plans-section { padding: 76px 24px; background: var(--brand-cream-soft); }
.plans-stack { max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.plan-row {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--brand-line);
  box-shadow: 0 18px 40px rgba(47,61,107,0.1);
  padding: 38px 40px;
  position: relative;
}
.plan-row.featured { border: 2px solid var(--brand-coral); }
.plan-featured-tag {
  position: absolute; top: -14px; left: 40px;
  background: var(--brand-coral); color: #fff;
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(209,106,81,0.4);
}
.plan-row h3 { color: var(--brand-indigo); font-size: 1.3rem; margin-bottom: 10px; }
.plan-row-desc-lead { font-weight: 700; color: var(--brand-coral-dark); margin-bottom: 12px; font-size: 1.02rem; }
.plan-price { font-size: 1.7rem; font-weight: 800; color: var(--brand-indigo); margin-bottom: 14px; }
.plan-price span { font-size: 0.85rem; font-weight: 400; color: #8a8a9a; }
.plan-row-desc { color: #58596b; margin-bottom: 22px; max-width: 720px; }
.plan-check-list { margin-bottom: 26px; }
.plan-check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: #4a4a5a; margin-bottom: 12px; }
.plan-check-list li::before { content: '✓'; color: var(--brand-coral); font-weight: 800; flex-shrink: 0; }
.plan-check-list-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }
.plan-row-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Blog cards 2-col ---- */
.blog-preview-section { padding: 76px 24px; }
.blog-preview-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.blog-preview-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 14px; margin-bottom: 18px; }
.blog-preview-byline { font-size: 0.8rem; color: var(--brand-coral); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px; }
.blog-preview-card h3 { color: var(--brand-indigo); font-size: 1.15rem; margin-bottom: 10px; }
.blog-preview-card p { color: #58596b; font-size: 0.92rem; }

/* ---- Newsletter ---- */
.newsletter-section { padding: 60px 24px; background: var(--brand-indigo); }
.newsletter-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--brand-cream-soft);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.newsletter-inner h2 { color: var(--brand-indigo); font-size: 1.35rem; margin-bottom: 8px; }
.newsletter-inner p { color: #58596b; font-size: 0.92rem; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { padding: 13px 16px; border: 1px solid var(--brand-line); border-radius: 999px; font-family: inherit; min-width: 220px; }
.newsletter-form button { padding: 13px 26px; background: var(--brand-coral); color: #fff; border: none; border-radius: 999px; font-weight: 700; cursor: pointer; }

/* ---- Stats strip ---- */
.stats-section { padding: 60px 24px; }
.stats-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-card { background: #fff; border-radius: 18px; padding: 30px 20px; box-shadow: 0 16px 34px rgba(47,61,107,0.09); border: 1px solid var(--brand-line); }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--brand-coral); }
.stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: .04em; color: #8a8a9a; margin-top: 6px; }

/* ---- Text + illustration split ---- */
.illus-section { padding: 76px 24px; background: var(--brand-cream-soft); }
.illus-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.illus-grid img { width: 100%; height: 380px; object-fit: cover; border-radius: 18px; }
.illus-text h2 { color: var(--brand-indigo); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.illus-text p { color: #58596b; margin-bottom: 22px; }

/* ---- Footer ---- */
.site-footer { background: var(--brand-indigo-dark); color: #c3c7de; padding: 60px 24px 26px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 34px; }
.footer-mission h3 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-mission p { font-size: 0.9rem; color: #a7abc6; margin-bottom: 16px; }
.footer-mission a { color: var(--brand-coral); }
.footer-col h3 { color: var(--brand-coral); font-size: 0.85rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  display: inline-block;
  font-size: 0.86rem;
  color: #c3c7de;
  border: 1px solid #3f4a75;
  border-radius: 8px;
  padding: 8px 12px;
}
.footer-col a:hover { border-color: var(--brand-coral); color: #fff; }
.footer-bottom { max-width: 1180px; margin: 0 auto; padding-top: 22px; border-top: 1px solid #3f4a75; font-size: 0.8rem; color: #7c81a3; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---- Inner page hero ---- */
.page-hero { background: var(--brand-indigo); color: #fff; padding: 64px 24px; text-align: center; }
.page-hero .kicker { text-transform: uppercase; letter-spacing: .12em; font-size: 0.78rem; color: #f0b09e; font-weight: 800; margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); }
.breadcrumb-inline { font-size: 0.85rem; color: #c3c7de; margin-top: 14px; }
.breadcrumb-inline a { color: #f0b09e; }

.content-section { padding: 76px 24px; }
.content-narrow { max-width: 800px; margin: 0 auto; }
.content-narrow h2 { color: var(--brand-indigo); font-size: 1.4rem; margin: 32px 0 14px; }
.content-narrow h2:first-child { margin-top: 0; }
.content-narrow p { color: #4a4a5a; margin-bottom: 15px; }
.content-narrow ul { margin: 0 0 15px 0; }
.content-narrow ul li { color: #4a4a5a; margin-bottom: 8px; padding-left: 22px; position: relative; }
.content-narrow ul li::before { content: '✓'; position: absolute; left: 0; color: var(--brand-coral); }

/* ---- Contact ---- */
.contact-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { color: var(--brand-indigo); margin-bottom: 12px; font-size: 1.05rem; }
.contact-info p { color: #58596b; margin-bottom: 20px; }
.contact-form label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--brand-indigo); margin-bottom: 8px; }
.contact-form .form-row { margin-bottom: 18px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--brand-line); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { background: var(--brand-coral); color: #fff; border: none; padding: 14px 30px; border-radius: 999px; font-weight: 700; cursor: pointer; }

/* ---- Instructor cards ---- */
.instructor-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.instructor-card { text-align: center; background: #fff; border-radius: 16px; padding: 24px; border: 1px solid var(--brand-line); }
.instructor-card img { width: 100%; height: 240px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
.instructor-card h3 { color: var(--brand-indigo); margin-bottom: 4px; }
.instructor-card .role { color: var(--brand-coral); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 10px; }
.instructor-card p { color: #58596b; font-size: 0.9rem; }

@media (max-width: 900px) {
  .steps-grid, .illus-grid, .contact-grid { grid-template-columns: 1fr; }
  .plan-check-list-cols { grid-template-columns: 1fr; }
  .plan-row { padding: 28px 24px; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .instructor-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
}
