/* ==========================================================================
   Mary Kumba — Premium Professional Stylesheet
   Vibrant, modern, high-impact design
   ========================================================================== */

:root {
  /* Colors - Vibrant Professional */
  --white: #FFFFFF;
  --navy: #1A1F71;
  --navy-dark: #0F1445;
  --coral: #FF6B6B;
  --coral-dark: #E84545;
  --charcoal: #2D3748;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --bg-light: #F8FAFC;
  --bg-lighter: #F1F5F9;
  --whatsapp: #25D366;
  --whatsapp-dark: #1FAE54;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t-med: 300ms var(--ease);
  
  /* Shadows - More prominent */
  --shadow-sm: 0 2px 8px rgba(26, 31, 113, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 31, 113, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 31, 113, 0.16);
  --shadow-xl: 0 24px 64px rgba(26, 31, 113, 0.20);
  
  /* Layout */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all var(--t-fast); }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-sans); color: var(--navy); margin: 0; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.1; }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.15; }
h3 { font-size: 26px; line-height: 1.3; font-weight: 700; }
p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

/* ---------- Container ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  transition: all var(--t-med);
  cursor: pointer;
  text-align: center;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: none;
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 22px 44px; font-size: 18px; }
.btn-link {
  display: inline-flex;
  gap: 8px;
  color: var(--coral);
  font-weight: 700;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 2px;
  box-shadow: none;
}
.btn-link:hover { color: var(--coral-dark); border-color: var(--coral-dark); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-lighter);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 48px; } }
.nav-logo {
  display: flex;
  align-items: center;
  height: 40px;
}
.nav-logo img { height: 100%; width: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--coral);
  transition: width var(--t-med);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: all var(--t-med);
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav-cta::after { display: none; }
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
@media (min-width: 900px) { .nav-burger { display: none; } }
.nav-burger span {
  width: 24px; height: 3px;
  background: var(--navy);
  transition: all var(--t-med);
  border-radius: 2px;
}
.nav-mobile {
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--t-med);
  z-index: 99;
  overflow-y: auto;
}
@media (min-width: 900px) { .nav-mobile { display: none; } }
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  padding: 18px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--bg-lighter);
}
.nav-mobile .btn { margin-top: 24px; }

/* ---------- Section base ---------- */
section { padding: 80px 0; }
@media (min-width: 900px) { section { padding: 120px 0; } }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header p { color: var(--gray); font-size: 20px; margin-top: 20px; line-height: 1.6; }

/* ---------- Hero (homepage) ---------- */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}
@media (min-width: 900px) { .hero { padding: 100px 0 120px; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
.hero h1 { margin-bottom: 24px; color: var(--navy); }
.hero h1 em { color: var(--coral); font-style: normal; font-weight: 800; }
.hero-sub {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.6;
}
@media (min-width: 900px) { .hero-sub { font-size: 21px; } }
.hero-cta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
@media (min-width: 600px) { .hero-cta { flex-direction: row; align-items: center; } }
.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.hero-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- Trust bar ---------- */
.trust {
  background: var(--white);
  border-top: 1px solid var(--bg-lighter);
  border-bottom: 1px solid var(--bg-lighter);
  padding: 32px 0;
}
.trust-inner { text-align: center; }
.trust-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
  margin-bottom: 16px;
}
.trust-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.trust-list li {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
.trust-list li:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -19px; top: 50%;
  transform: translateY(-50%);
  color: var(--coral);
  font-size: 22px;
}

/* ---------- Problem section (dark band) ---------- */
.problem {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.problem h2 { color: var(--white); margin-bottom: 32px; }
.problem-body {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.8;
}
.problem-body strong { color: var(--white); font-weight: 700; }
.problem-pull {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--coral);
  margin: 48px auto;
  max-width: 720px;
  line-height: 1.4;
  padding: 0 24px;
  border-left: 4px solid var(--coral);
  text-align: left;
  font-weight: 600;
}
.problem-transition {
  font-size: 22px;
  color: var(--white);
  margin-top: 28px;
  font-weight: 600;
}

/* ---------- Meet Mary ---------- */
.meet {
  background: var(--white);
}
.meet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .meet-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; } }
.meet-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.meet-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.meet-text h2 { margin-bottom: 24px; }
.meet-text .script {
  font-size: 28px;
  color: var(--coral);
  margin-bottom: 24px;
  font-weight: 700;
  font-style: italic;
}
.meet-text p { color: var(--gray); font-size: 18px; line-height: 1.8; }
.meet-text p strong { color: var(--charcoal); }
.meet-cta { margin-top: 36px; }

/* ---------- Path cards ---------- */
.path { background: var(--bg-light); }
.path-alt { background: var(--white); }
.step-label {
  text-align: center;
  color: var(--coral);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
}
.path-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .path-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .path-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.path-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .path-grid-2 { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--white);
  border: 2px solid var(--bg-lighter);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--t-med);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--coral);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
  margin-bottom: 8px;
}
.card-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; }
.card h3 { margin: 0; color: var(--navy); }
.card p { color: var(--gray); font-size: 15px; line-height: 1.7; flex-grow: 1; margin: 0; }
.card-tag {
  margin-top: auto;
  font-size: 13px;
  color: var(--coral);
  font-weight: 700;
  padding-top: 16px;
  border-top: 2px solid var(--bg-lighter);
}

/* Big coaching cards */
.card-big {
  padding: 48px 40px;
  background: var(--white);
  border: 2px solid var(--bg-lighter);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--t-med);
  box-shadow: var(--shadow-md);
  position: relative;
}
.card-big:hover { transform: translateY(-6px); border-color: var(--coral); box-shadow: var(--shadow-xl); }
.card-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 24px;
  z-index: 2;
}
.card-big h3 { font-size: 34px; color: var(--navy); }
.card-big .sub {
  color: var(--coral);
  font-size: 17px;
  font-weight: 600;
}
.card-big p { color: var(--gray); font-size: 17px; line-height: 1.7; }
.card-big ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-big ul li {
  padding-left: 32px;
  position: relative;
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 500;
}
.card-big ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--coral);
  font-weight: 800;
  font-size: 20px;
}
.card-big .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Programs ---------- */
.programs { background: var(--bg-light); }
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .programs-grid { grid-template-columns: repeat(3, 1fr); gap: 56px; } }
.program-item .num {
  font-size: 64px;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 800;
}
.program-item h3 { margin-bottom: 16px; color: var(--navy); }
.program-item p { color: var(--gray); font-size: 16px; line-height: 1.7; }
.programs-cta { text-align: center; margin-top: 64px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.testimonial {
  background: var(--white);
  border: 2px solid var(--bg-lighter);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-med);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial .stars {
  color: var(--coral);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 16px;
}
.testimonial blockquote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  font-weight: 500;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 2px solid var(--bg-lighter);
  padding-top: 20px;
}
.testimonial .avatar {
  width: 44px; height: 44px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial .name { font-weight: 700; color: var(--navy); font-size: 15px; }
.testimonial .loc { color: var(--gray); font-size: 14px; }

/* ---------- Shop preview ---------- */
.shop-preview { background: var(--bg-light); }
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 56px;
}
@media (min-width: 700px) { .shop-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.product {
  background: var(--white);
  border: 2px solid var(--bg-lighter);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t-med);
  box-shadow: var(--shadow-sm);
}
.product:hover { transform: translateY(-6px); border-color: var(--coral); box-shadow: var(--shadow-lg); }
.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 2px;
}
.product-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-cat {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
}
.product h3 { font-size: 22px; color: var(--navy); }
.product p { color: var(--gray); font-size: 15px; line-height: 1.6; margin: 0; }
.product-price {
  font-size: 32px;
  color: var(--navy);
  font-weight: 800;
  margin-top: auto;
  padding-top: 12px;
}
.product .btn { margin-top: 12px; }
.shop-cta-center { text-align: center; }

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 24px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: 20px; margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .cta-band-actions { flex-direction: row; } }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 64px; } }
.footer-brand {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 800;
}
.footer-tag { color: var(--coral); font-size: 16px; font-weight: 600; }
footer h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
footer a { color: rgba(255, 255, 255, 0.8); font-size: 15px; font-weight: 500; }
footer a:hover { color: var(--coral); }
.footer-socials { display: flex; gap: 16px; margin-top: 20px; }
.footer-socials a {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 107, 107, 0.4);
  border-radius: 50%;
  transition: all var(--t-med);
}
.footer-socials a:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
}
.footer-socials a:hover svg { color: var(--white); }
.footer-socials svg { width: 18px; height: 18px; color: var(--coral); transition: color var(--t-med); }
.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 64px; height: 64px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: all var(--t-med);
  animation: pulse 3s infinite;
}
.fab-whatsapp:hover { transform: scale(1.1); color: var(--white); }
.fab-whatsapp svg { width: 32px; height: 32px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
  background: var(--navy);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/about-hero.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero .eyebrow { color: var(--coral); }
.about-hero h1 { color: var(--white); max-width: 700px; }
.about-hero p { color: rgba(255, 255, 255, 0.9); max-width: 560px; font-size: 21px; margin-top: 28px; }

.about-story {
  background: var(--white);
}
.about-story-inner {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  color: var(--charcoal);
}
.about-story-inner p:first-of-type::first-letter {
  font-size: 84px;
  float: left;
  line-height: 0.85;
  padding: 8px 16px 0 0;
  color: var(--coral);
  font-weight: 800;
}
.about-pull {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--coral);
  border-left: 4px solid var(--coral);
  padding: 0 28px;
  margin: 52px 0;
  line-height: 1.5;
  font-weight: 700;
}

.about-now { background: var(--bg-light); }
.about-now-inner { max-width: 720px; margin: 0 auto; }
.about-now h2 { margin-bottom: 32px; }
.about-now ul {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
  color: var(--charcoal);
}
.about-now ul li {
  padding-left: 36px;
  position: relative;
}
.about-now ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--coral);
  font-weight: 800;
  font-size: 22px;
}

.about-pillars { background: var(--white); }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.pillar {
  background: var(--white);
  border: 2px solid var(--bg-lighter);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--t-med);
  box-shadow: var(--shadow-sm);
}
.pillar:hover { transform: translateY(-6px); border-color: var(--coral); box-shadow: var(--shadow-md); }
.pillar-num {
  font-size: 40px;
  color: var(--coral);
  margin-bottom: 16px;
  font-weight: 800;
}
.pillar h3 { font-size: 22px; margin-bottom: 12px; color: var(--navy); }
.pillar p { color: var(--gray); font-size: 15px; line-height: 1.7; }

.stats { background: var(--bg-light); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  text-align: center;
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.stat .num {
  font-size: clamp(52px, 6vw, 72px);
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}
.stat .label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
}

.lifestyle { background: var(--white); }
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 700px) { .lifestyle-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.lifestyle-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  transition: all var(--t-med);
  box-shadow: var(--shadow-md);
}
.lifestyle-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.lifestyle-caption {
  text-align: center;
  font-size: 22px;
  color: var(--charcoal);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 600;
}
.lifestyle-caption span { display: block; color: var(--coral); margin-top: 12px; font-size: 16px; font-weight: 700; letter-spacing: 1px; }

/* ==========================================================================
   APPLY PAGE
   ========================================================================== */
.apply-hero {
  padding: 100px 0 56px;
  text-align: center;
  background: var(--bg-light);
}
.apply-hero h1 { margin-bottom: 20px; }
.apply-hero p { color: var(--gray); font-size: 20px; max-width: 600px; margin: 0 auto; }

.apply-steps {
  background: var(--white);
  padding: 80px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 900px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 56px; } }
.step {
  text-align: center;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
}
.step h3 { font-size: 22px; margin-bottom: 12px; color: var(--navy); }
.step p { color: var(--gray); font-size: 16px; line-height: 1.7; }

.apply-form-section { background: var(--bg-light); padding: 80px 0; }
@media (min-width: 900px) { .apply-form-section { padding: 100px 0; } }
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--bg-lighter);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 700px) { .form-wrapper { padding: 64px 56px; } }
.form-title {
  text-align: center;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 800;
}
.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 40px;
}
.form-privacy svg { width: 16px; height: 16px; color: var(--coral); }
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--bg-light);
  border: 2px solid var(--bg-lighter);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='none' stroke='%2364748B' stroke-width='2' d='M1 1l5 5 5-5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
}
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit {
  width: 100%;
  margin-top: 16px;
  padding: 20px;
  font-size: 17px;
}
.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin-top: 20px;
}

.apply-alt {
  background: var(--white);
  text-align: center;
  padding: 80px 0;
}
.apply-alt h3 { font-size: 28px; margin-bottom: 16px; color: var(--navy); }
.apply-alt p { color: var(--gray); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   SHOP PAGE
   ========================================================================== */
.shop-hero { padding: 100px 0 56px; background: var(--bg-light); text-align: center; }
.shop-hero h1 { margin-bottom: 20px; }
.shop-hero p { color: var(--gray); font-size: 20px; max-width: 640px; margin: 0 auto; }

.shop-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 40px 0 0;
  background: var(--bg-light);
}
.shop-filter {
  padding: 12px 28px;
  background: var(--white);
  color: var(--gray);
  border: 2px solid var(--bg-lighter);
  border-radius: 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t-fast);
}
.shop-filter:hover { border-color: var(--coral); color: var(--navy); }
.shop-filter.active {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.shop-main { padding: 64px 0 120px; background: var(--bg-light); }
.shop-main .shop-grid { margin-bottom: 0; }

.bundle-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}
.bundle-save {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: 24px;
  margin-bottom: 20px;
}
.bundle-band h2 { color: var(--white); margin-bottom: 16px; }
.bundle-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; font-size: 19px; }
.bundle-price {
  margin-bottom: 40px;
}
.bundle-price .old {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  font-size: 24px;
  margin-right: 16px;
  font-weight: 600;
}
.bundle-price .new {
  color: var(--coral);
  font-size: 56px;
  font-weight: 800;
}

.shop-upsell { background: var(--white); padding: 120px 0; }
.upsell-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 900px) { .upsell-grid { grid-template-columns: 1fr 1.2fr; gap: 72px; } }
.upsell-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.upsell-img img { width: 100%; height: 100%; object-fit: cover; }
.upsell-text h2 { margin-bottom: 24px; }
.upsell-text p { color: var(--gray); font-size: 18px; margin-bottom: 32px; }

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */
.ty {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: var(--bg-light);
}
.ty-inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
  padding: 0 24px;
}
.ty-check {
  width: 140px; height: 140px;
  margin: 0 auto 40px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: check-in 600ms var(--ease) backwards;
  box-shadow: var(--shadow-xl);
}
@keyframes check-in {
  from { transform: scale(0.3); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.ty-check svg {
  width: 64px; height: 64px;
  stroke: var(--white);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: draw 800ms var(--ease) 300ms forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.ty h1 { margin-bottom: 24px; color: var(--navy); }
.ty p { font-size: 20px; color: var(--gray); margin-bottom: 56px; }
.ty-next { background: var(--white); border: 2px solid var(--bg-lighter); border-radius: var(--radius); padding: 48px 40px; margin-bottom: 48px; box-shadow: var(--shadow-md); }
.ty-next h2 { font-size: 28px; margin-bottom: 16px; color: var(--navy); }
.ty-next p { font-size: 17px; margin-bottom: 32px; color: var(--gray); }
.ty-next .btn { padding: 20px 40px; font-size: 18px; }
.ty-next .tiny { font-size: 12px; color: var(--gray); margin-top: 16px; margin-bottom: 0; letter-spacing: 1.5px; font-weight: 700; }
.ty-social h3 { font-size: 22px; margin-bottom: 12px; color: var(--navy); }
.ty-social p { font-size: 16px; margin-bottom: 28px; }
.ty-social-icons { display: flex; justify-content: center; gap: 16px; margin-bottom: 48px; }
.ty-social-icons a {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--bg-lighter);
  border-radius: 50%;
  transition: all var(--t-med);
  color: var(--navy);
}
.ty-social-icons a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}
.ty-social-icons svg { width: 20px; height: 20px; }
.ty-back { color: var(--gray); font-size: 15px; font-weight: 600; }
.ty-back:hover { color: var(--coral); }

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.reveal { opacity: 1; transform: none; transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.js-enabled .reveal { opacity: 0; transform: translateY(20px); }
.js-enabled .reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
