/* ─── HOME PAGE — Page-Specific Styles ─── */

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 64px);
  background: var(--warm-white);
  display: flex; align-items: center;
  padding: 5rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 50%, rgba(30,43,74,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: 10%; bottom: 10%; left: 52%;
  width: 1px; background: var(--border); pointer-events: none;
}
.hero-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  width: 100%; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red-light); border: 1px solid rgba(192,39,45,0.2);
  border-radius: 100px; padding: 0.35rem 0.9rem;
  font-size: 0.78rem; font-weight: 700; color: var(--red);
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 1.75rem;
}
.eyebrow-dot {
  width: 6px; height: 6px; background: var(--red);
  border-radius: 50%; animation: pulse 2s infinite;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 1.25rem;
}
.hero-sub { font-size: 1.15rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 0.85rem; max-width: 460px; }
.hero-support { font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2.25rem; max-width: 440px; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white;
  padding: 0.9rem 2rem; border-radius: 8px;
  font-size: 1rem; font-weight: 600; text-decoration: none; cursor: pointer;
  border: none; font-family: 'Source Sans 3', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(192,39,45,0.28);
}
.hero-cta:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,39,45,0.35); }
.hero-cta svg { width: 16px; height: 16px; }
.hero-subtext { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.75rem; }
.hero-right { position: relative; }
.hero-image-frame {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/5;
  background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem; padding: 2rem; text-align: center;
  background: linear-gradient(145deg, #EEF0F6 0%, #E8E4DE 100%);
}
.hero-placeholder-icon {
  width: 64px; height: 64px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(30,43,74,0.1);
}
.hero-placeholder p { font-size: 0.82rem; color: var(--text-muted); max-width: 180px; line-height: 1.5; }
.hero-placeholder strong { display: block; font-size: 0.88rem; color: var(--text-mid); margin-bottom: 0.25rem; }
.hero-stat-card {
  position: absolute; bottom: -1.5rem; left: -1.75rem;
  background: white; border-radius: 14px; padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(30,43,74,0.12); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.85rem; min-width: 200px;
}
.stat-card-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--red-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.stat-card-num { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-card-label { font-size: 0.75rem; color: var(--text-muted); line-height: 1.3; }

/* ─── PROBLEM ─── */
.problem { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.problem-inner h2 { font-family: 'Lora', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 2rem; }
.problem-body { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }
.problem-body p { font-size: 1.08rem; color: var(--text-mid); line-height: 1.8; max-width: 600px; margin: 0 auto; }
.problem-trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-top: 3rem; }
.problem-item { background: var(--warm-white); padding: 1.75rem 1.5rem; text-align: left; transition: background 0.2s; }
.problem-item:hover { background: var(--white); }
.problem-item-icon { font-size: 1.5rem; margin-bottom: 0.85rem; display: block; }
.problem-item h4 { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; line-height: 1.3; }
.problem-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ─── SHIFT ─── */
.shift { background: var(--navy); text-align: center; padding: 5rem 2rem; position: relative; overflow: hidden; }
.shift::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(192,39,45,0.1) 0%, transparent 65%); pointer-events: none; }
.shift-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.shift h2 { font-family: 'Lora', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: white; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.shift h2 em { font-style: italic; color: #F2979A; }
.shift p { font-size: 1.1rem; color: rgba(255,255,255,0.68); line-height: 1.85; margin-bottom: 1rem; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ─── HOW IT WORKS (home section) ─── */
.how { background: var(--warm-white); }
.how-header { text-align: center; margin-bottom: 4rem; }
.how-header .section-sub { margin: 0 auto; text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 2.1rem; left: calc(16.6% + 1rem); right: calc(16.6% + 1rem); height: 1px; background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent); pointer-events: none; }
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 1.75rem; text-align: left; position: relative; transition: box-shadow 0.25s, transform 0.25s; }
.step-card:hover { box-shadow: 0 10px 36px rgba(30,43,74,0.08); transform: translateY(-3px); }
.step-num { width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.step-card h3 { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.3; }
.step-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* ─── WHAT YOU GET ─── */
.what { background: var(--white); border-top: 1px solid var(--border); }
.what-header { margin-bottom: 3.5rem; }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.what-block { padding: 2rem 2.25rem; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); transition: background 0.2s; }
.what-block:hover { background: var(--warm-white); }
.what-block:nth-child(even) { border-right: none; }
.what-block:nth-last-child(-n+2) { border-bottom: none; }
.what-block-header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.what-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.what-block h3 { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.what-block ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.what-block ul li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.what-block ul li::before { content: '→'; color: var(--red); font-size: 0.78rem; flex-shrink: 0; margin-top: 3px; font-weight: 700; }

/* ─── MID CTA ─── */
.mid-cta { text-align: center; padding: 3.5rem 2rem; background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mid-cta p { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.mid-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: white; padding: 0.85rem 1.85rem; border-radius: 8px; font-size: 0.97rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; font-family: 'Source Sans 3', sans-serif; transition: background 0.2s, transform 0.15s; }
.mid-cta-btn:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ─── WHY THIS MATTERS ─── */
.why { background: var(--warm-white); text-align: center; padding: 6rem 2rem; }
.why-inner { max-width: 640px; margin: 0 auto; }
.why-inner h2 { font-family: 'Lora', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 2rem; }
.why-inner p { font-size: 1.1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }
.why-inner p:last-child { margin-bottom: 0; }
.why-rule { width: 40px; height: 3px; background: var(--red); margin: 2rem auto; }

/* ─── PRICING STRIP ─── */
.pricing-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 2rem; }
.pricing-intro { text-align: center; margin-bottom: 2.5rem; }
.pricing-intro p { font-size: 1rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.pricing-intro strong { font-family: 'Lora', serif; font-size: 1.35rem; color: var(--navy); display: block; margin-bottom: 0.5rem; }
.pricing-intro a { font-size: 0.9rem; color: var(--red); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(192,39,45,0.3); transition: border-color 0.2s; }
.pricing-intro a:hover { border-color: var(--red); }
.pricing-tiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; max-width: 900px; margin: 0 auto; }
.pricing-tile { border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem 1.25rem; text-align: center; background: var(--warm-white); transition: box-shadow 0.2s, transform 0.2s; }
.pricing-tile:hover { box-shadow: 0 6px 24px rgba(30,43,74,0.08); transform: translateY(-2px); }
.pricing-tile.featured { background: var(--navy); border-color: var(--navy); }
.price-tier { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.pricing-tile.featured .price-tier { color: rgba(255,255,255,0.5); }
.price-amount { font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.2rem; }
.pricing-tile.featured .price-amount { color: white; }
.price-sub { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.pricing-tile.featured .price-sub { color: rgba(255,255,255,0.5); }
.pricing-note { text-align: center; margin-top: 1.75rem; font-size: 0.88rem; color: var(--text-muted); }
.pricing-note a { color: var(--red); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(192,39,45,0.3); }
.pricing-note a:hover { border-color: var(--red); }

/* ─── TRUST + STORY ─── */
.trust { background: var(--warm-white); }
.trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.trust-story h2 { font-family: 'Lora', serif; font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 700; color: var(--navy); line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.trust-story p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.trust-story a { font-size: 0.95rem; color: var(--red); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(192,39,45,0.3); transition: gap 0.2s, border-color 0.2s; }
.trust-story a:hover { gap: 10px; border-color: var(--red); }
.leadership-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 2rem; }
.leader-item { display: flex; gap: 1rem; align-items: center; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); background: var(--white); transition: background 0.15s; }
.leader-item:last-child { border-bottom: none; }
.leader-item:hover { background: var(--warm-white); }
.leader-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; letter-spacing: 0.03em; }
.leader-info { line-height: 1.35; }
.leader-name { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.leader-title { font-size: 0.82rem; color: var(--text-muted); }
.pbc-strip { background: var(--navy); border-radius: 12px; padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.pbc-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pbc-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: white; margin-bottom: 0.3rem; letter-spacing: 0.02em; }
.pbc-text p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero::after { display: none; }
  .hero-right { max-width: 420px; }
  .trust-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-tiles { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .problem-trio { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .what-grid { grid-template-columns: 1fr; }
  .what-block { border-right: none !important; }
  .what-block:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .what-block:last-child { border-bottom: none; }
  .pricing-tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pricing-tiles { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
}
