/* =============================================
   LaneFlow — Shared Stylesheet
   Palette B: Wine #6D3C4F · Pink #FDDEFE · Yellow #FFF7B9 · Canvas #FAFAFA
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --wine:      #6D3C4F;
  --wine-dk:   #4A2234;
  --wine-md:   #5C3242;
  --wine-a8:   rgba(109,60,79,0.08);
  --wine-a12:  rgba(109,60,79,0.12);
  --pink:      #FDDEFE;
  --pink-dk:   #F0C8F2;
  --yellow:    #FFF7B9;
  --canvas:    #FAFAFA;
  --white:     #FFFFFF;
  --dark:      #2D1A24;
  --text:      #3D2430;
  --text-md:   #6D4F58;
  --muted:     #9A7A84;
  --border:    #EDE0E4;
  --border-lt: #F7F0F3;

  --font: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1160px;
  --py: 96px;
  --r:   14px;
  --r-sm: 9px;
  --r-lg: 22px;
  --shadow:    0 4px 20px rgba(109,60,79,0.08);
  --shadow-md: 0 8px 32px rgba(109,60,79,0.13);
  --shadow-lg: 0 16px 48px rgba(109,60,79,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ——— Container ——— */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--r-sm);
  font-family: var(--font); font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; transition: all 0.2s ease;
  white-space: nowrap; letter-spacing: -0.01em;
}
.btn-primary { background: var(--wine); color: var(--white); }
.btn-primary:hover { background: var(--wine-md); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 36px; font-size: 16px; border-radius: 12px; }
.btn-ghost { background: transparent; color: var(--wine); border: 2px solid var(--wine); }
.btn-ghost:hover { background: var(--wine-a8); }
.btn-white { background: var(--white); color: var(--wine); }
.btn-white:hover { background: var(--pink); }
.btn-yellow { background: var(--yellow); color: var(--wine-dk); }
.btn-yellow:hover { background: #f5e87a; }

/* ——— Tags / Pills ——— */
.tag {
  display: inline-block; padding: 5px 14px;
  background: var(--pink); color: var(--wine);
  border-radius: 100px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.tag-yellow { background: var(--yellow); color: var(--wine-dk); }
.tag-wine   { background: var(--wine); color: var(--white); }

/* ——— Typography ——— */
h1,h2,h3,h4 { line-height: 1.13; letter-spacing: -0.025em; color: var(--dark); }
h1 { font-size: clamp(38px,5vw,66px); font-weight: 900; }
h2 { font-size: clamp(30px,3.5vw,48px); font-weight: 800; }
h3 { font-size: 21px; font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
p  { font-size: 17px; line-height: 1.7; color: var(--text-md); }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--wine); margin-bottom: 14px;
  display: block;
}
.section-header { max-width: 600px; }
.section-header.center { text-align: center; margin: 0 auto 64px; }
.section-header p { margin-top: 14px; }

/* ——— Nav ——— */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,250,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-lt);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 21px; font-weight: 800; color: var(--wine);
  letter-spacing: -0.025em; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 600;
  color: var(--text-md); transition: all 0.15s;
}
.nav-links a:hover,
.nav-links a.active { background: var(--wine-a8); color: var(--wine); }
.nav-cta { margin-left: auto; }

/* mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--wine); border-radius: 2px; transition: all 0.2s;
}
.nav-mobile {
  display: none; position: absolute; top: 70px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 32px 24px; flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0; font-size: 16px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--border-lt);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ——— Hero ——— */
.hero { padding: 80px 0 96px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
}
.hero-tag  { margin-bottom: 22px; }
.hero h1   { margin-bottom: 22px; }
.hero .sub { margin-bottom: 38px; max-width: 480px; font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--muted); font-weight: 600; }

/* right dark panel */
.hero-panel {
  background: var(--wine-dk); border-radius: var(--r-lg);
  padding: 32px; position: relative; overflow: hidden;
}
.hero-panel::before {
  content:''; position:absolute; top:-60px; right:-60px;
  width:200px; height:200px; border-radius:50%;
  background: rgba(253,222,254,0.06);
}
.panel-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(253,222,254,0.55); margin-bottom: 20px;
}
.appt-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 11px; padding: 16px; margin-bottom: 10px;
}
.appt-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.appt-name { font-size: 14px; font-weight: 700; color: #FAFAFA; }
.appt-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
}
.badge-confirmed { background: rgba(134,239,172,0.15); color: #86EFAC; }
.badge-pending   { background: rgba(255,247,185,0.15); color: var(--yellow); }
.appt-detail { font-size: 13px; color: rgba(253,222,254,0.65); }
.panel-footer {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px; padding: 14px 16px;
  background: rgba(255,247,185,0.07); border-radius: 10px;
  border: 1px solid rgba(255,247,185,0.14);
}
.panel-num { font-size: 30px; font-weight: 900; color: var(--yellow); line-height: 1; }
.panel-meta { font-size: 12px; font-weight: 600; color: rgba(255,247,185,0.75); line-height: 1.5; }

/* ——— Challenges ——— */
.challenges { padding: var(--py) 0; background: var(--white); }
.challenges-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
  margin-top: 64px;
}
.challenge-card {
  padding: 30px; border-radius: var(--r); border: 1px solid var(--border);
  transition: all 0.2s;
}
.challenge-card:hover { border-color: var(--pink-dk); box-shadow: var(--shadow); transform: translateY(-2px); }
.c-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--pink); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.c-icon svg { width: 22px; height: 22px; color: var(--wine); }
.challenge-card h3 { font-size: 17px; margin-bottom: 10px; }
.challenge-card p  { font-size: 14px; line-height: 1.65; }

/* ——— 4 Pillars ——— */
.pillars { padding: var(--py) 0; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 22px;
  margin-top: 64px;
}
.pillar-card {
  padding: 40px; border-radius: var(--r-lg); border: 1px solid var(--border);
  background: var(--white); position: relative; overflow: hidden;
  transition: all 0.2s;
}
.pillar-card:hover { border-color: var(--wine); box-shadow: var(--shadow-md); }
.p-num {
  font-size: 80px; font-weight: 900; color: var(--border-lt);
  position: absolute; top: 16px; right: 24px;
  line-height: 1; letter-spacing: -0.05em; user-select: none;
}
.p-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--wine); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.p-icon svg { width: 26px; height: 26px; color: white; }
.pillar-card h3 { font-size: 20px; margin-bottom: 12px; }
.pillar-card p  { font-size: 15px; line-height: 1.68; }
.pillar-card ul { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.pillar-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-md);
}
.pillar-card li::before { content:'→'; color: var(--wine); font-weight: 800; flex-shrink: 0; }

/* ——— Timeline (How It Works) ——— */
.timeline-section { padding: var(--py) 0; background: var(--wine-dk); }
.timeline-section .section-label { color: var(--yellow); }
.timeline-section h2 { color: var(--white); }
.timeline-section > .container > p { color: rgba(253,222,254,0.7); margin-top: 12px; }
.timeline-header { margin-bottom: 56px; }
.timeline {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  border-top: 2px solid rgba(255,255,255,0.08);
  margin-top: 56px;
}
.t-step {
  padding: 28px 20px 20px; position: relative;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.t-step:last-child { border-right: none; }
.t-step:hover { background: rgba(255,255,255,0.03); }
.t-step::before {
  content:''; position:absolute; top:-2px; left:0; right:0; height:2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.t-step:hover::before { transform: scaleX(1); }
.t-day {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.t-day-circle {
  width: 6px; height: 6px; border-radius: 50%; background: var(--yellow);
}
.t-step h4 { font-size: 14px; color: var(--white); margin-bottom: 8px; font-weight: 700; }
.t-step p  { font-size: 13px; color: rgba(253,222,254,0.6); line-height: 1.6; }

/* ——— Stat Banner ——— */
.stat-banner { padding: 60px 0; background: var(--pink); }
.stats-row { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.big-num { font-size: 54px; font-weight: 900; color: var(--wine); line-height: 1; letter-spacing: -0.04em; }
.big-label { font-size: 14px; color: var(--wine-md); margin-top: 8px; font-weight: 600; max-width: 160px; margin-left: auto; margin-right: auto; }

/* ——— Instagram Section ——— */
.ig-section { padding: var(--py) 0; }
.ig-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ig-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; border-radius: var(--r); overflow: hidden; }
.ig-post {
  aspect-ratio: 1; position: relative; overflow: hidden; cursor: pointer;
}
.ig-post:hover .ig-overlay { opacity: 1; }
.ig-bg { width: 100%; height: 100%; }
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(74,34,52,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.ig-overlay svg { width: 28px; height: 28px; color: white; }
.ig-cta-content {}
.ig-header { display: flex; align-items: center; gap: 14px; margin: 24px 0; }
.ig-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg,var(--pink),var(--yellow));
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--wine);
}
.ig-avatar svg { width: 24px; height: 24px; }
.ig-handle-name { font-size: 15px; font-weight: 800; color: var(--wine); }
.ig-handle-sub  { font-size: 13px; color: var(--muted); }
.ig-quote {
  padding: 20px 24px; background: var(--border-lt);
  border-radius: var(--r); border-left: 3px solid var(--wine);
  font-size: 15px; color: var(--text); line-height: 1.65; font-style: italic;
  margin-bottom: 24px;
}

/* ——— Pricing ——— */
.pricing { padding: var(--py) 0; background: var(--white); }
.pricing-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pricing-card {
  background: var(--wine); border-radius: var(--r-lg); padding: 48px;
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content:''; position:absolute; bottom:-50px; right:-50px;
  width:200px; height:200px; border-radius:50%;
  background: rgba(253,222,254,0.05);
}
.pricing-badge {
  display: inline-block; padding: 6px 16px;
  background: var(--yellow); color: var(--wine-dk);
  border-radius: 100px; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px;
}
.pricing-card h3 { font-size: 24px; color: var(--white); margin-bottom: 8px; }
.pricing-card > p { font-size: 15px; color: rgba(253,222,254,0.7); margin-bottom: 28px; }
.price-main { font-size: 58px; font-weight: 900; color: var(--yellow); line-height: 1; letter-spacing: -0.04em; }
.price-sub  { font-size: 15px; color: rgba(253,222,254,0.75); margin-top: 6px; }
.pricing-feats { margin: 28px 0; display: flex; flex-direction: column; gap: 13px; }
.pricing-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: rgba(253,222,254,0.88);
}
.pricing-feats li::before { content:'✓'; color: var(--yellow); font-weight: 900; flex-shrink: 0; }
.pricing-note { font-size: 13px; color: rgba(253,222,254,0.5); margin-top: 16px; }
.pricing-copy { }
.pricing-copy h2 { margin-bottom: 20px; }
.pricing-copy p  { margin-bottom: 20px; }
.guarantee {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--pink); border-radius: var(--r);
  margin-top: 28px;
}
.guarantee-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--wine); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.guarantee-icon svg { width: 22px; height: 22px; color: white; }
.guarantee-text h4 { font-size: 15px; color: var(--wine); margin-bottom: 4px; }
.guarantee-text p  { font-size: 14px; color: var(--text-md); }

/* ——— Territory ——— */
.territory { padding: 56px 0; background: var(--yellow); }
.territory-inner { display: flex; align-items: center; gap: 40px; }
.territory-icon { width: 60px; height: 60px; flex-shrink: 0; background: var(--wine); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.territory-icon svg { width: 30px; height: 30px; color: white; }
.territory-text h3 { font-size: 22px; color: var(--wine-dk); margin-bottom: 6px; }
.territory-text p  { font-size: 15px; color: var(--wine-md); max-width: 520px; }
.territory-cta { margin-left: auto; flex-shrink: 0; }

/* ——— Final CTA ——— */
.final-cta { padding: var(--py) 0; background: var(--wine-dk); text-align: center; }
.final-cta h2 { color: var(--white); margin-bottom: 18px; }
.final-cta > .container > p { color: rgba(253,222,254,0.72); max-width: 500px; margin: 0 auto 40px; font-size: 18px; }
.cta-note { font-size: 13px; color: rgba(253,222,254,0.42); margin-top: 16px !important; }

/* ——— Footer ——— */
.footer { background: var(--dark); padding: 64px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(253,222,254,0.48); max-width: 260px; line-height: 1.7; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(253,222,254,0.35); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(253,222,254,0.6); transition: color 0.15s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(253,222,254,0.07); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: rgba(253,222,254,0.28); }
.footer-bottom a { color: rgba(253,222,254,0.42); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--pink); }

/* ——— Blog page ——— */
.page-hero { padding: 72px 0 60px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(34px,4vw,54px); }
.page-hero p  { margin-top: 16px; max-width: 520px; }
.blog-grid { padding: 64px 0 var(--py); }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post-card {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  transition: all 0.2s; display: flex; flex-direction: column;
}
.post-card:hover { border-color: var(--wine); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-thumb { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.thumb-bg  { width: 100%; height: 100%; }
.thumb-tag { position: absolute; top: 16px; left: 16px; }
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-meta { font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.post-body h3 { font-size: 18px; line-height: 1.35; margin-bottom: 10px; }
.post-body p  { font-size: 14px; color: var(--text-md); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.read-more { font-size: 14px; font-weight: 700; color: var(--wine); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.read-more:hover { gap: 10px; }

/* ——— Services page ——— */
.services-hero { padding: 80px 0 64px; }
.services-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.services-hero .sub { font-size: 18px; margin-top: 20px; max-width: 460px; }
.services-hero .hero-actions { margin-top: 36px; }
.pillars-detail { padding: var(--py) 0; }
.pillar-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 72px 0; border-top: 1px solid var(--border);
}
.pillar-detail:first-child { border-top: none; padding-top: 0; }
.pillar-detail.flip { }
.pillar-visual {
  background: var(--wine-a8); border-radius: var(--r-lg);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pillar-visual::before {
  content:''; position:absolute; top:-40px; left:-40px;
  width:160px; height:160px; border-radius:50%; background: var(--pink); opacity: 0.4;
}
.pillar-visual svg { width: 80px; height: 80px; color: var(--wine); opacity: 0.4; position: relative; }
.pillar-detail .p-num-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--wine); margin-bottom: 12px;
}
.pillar-detail h2 { font-size: clamp(26px,3vw,38px); margin-bottom: 16px; }
.pillar-detail p  { margin-bottom: 16px; }
.pillar-detail ul { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.pillar-detail li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-md);
}
.pillar-detail li::before { content:'→'; color: var(--wine); font-weight: 800; flex-shrink: 0; }

/* ——— Pricing tiers (services) ——— */
.pricing-tiers { padding: var(--py) 0; background: var(--canvas); }
.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.tier-card {
  padding: 36px; border-radius: var(--r-lg); border: 1px solid var(--border);
  background: var(--white); position: relative; transition: all 0.2s;
}
.tier-card:hover { border-color: var(--wine); box-shadow: var(--shadow); }
.tier-card.featured {
  background: var(--wine); border-color: var(--wine);
}
.tier-card.featured h3,
.tier-card.featured .tier-price,
.tier-card.featured .tier-desc { color: var(--white); }
.tier-card.featured .tier-desc { color: rgba(253,222,254,0.72); }
.tier-card.featured .tier-feats li { color: rgba(253,222,254,0.88); }
.tier-card.featured .tier-feats li::before { color: var(--yellow); }
.tier-name { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--wine); margin-bottom: 12px; }
.tier-card.featured .tier-name { color: var(--yellow); }
.tier-card h3 { font-size: 22px; margin-bottom: 8px; }
.tier-price { font-size: 40px; font-weight: 900; letter-spacing: -0.04em; color: var(--wine); line-height: 1; margin: 18px 0 6px; }
.tier-card.featured .tier-price { color: var(--yellow); }
.tier-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.tier-feats { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--border); padding-top: 24px; }
.tier-card.featured .tier-feats { border-color: rgba(255,255,255,0.12); }
.tier-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-md); }
.tier-feats li::before { content:'✓'; color: var(--wine); font-weight: 800; flex-shrink: 0; }

/* who it's for section */
.fit-section { padding: var(--py) 0; background: var(--white); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.fit-card { padding: 36px; border-radius: var(--r-lg); }
.fit-card.good { background: var(--pink); }
.fit-card.bad  { background: var(--border-lt); border: 1px solid var(--border); }
.fit-card h3   { font-size: 19px; margin-bottom: 20px; }
.fit-card.good h3 { color: var(--wine); }
.fit-card ul   { display: flex; flex-direction: column; gap: 10px; }
.fit-card li   { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-md); }
.fit-card.good li::before { content:'✓'; color: var(--wine); font-weight: 800; flex-shrink: 0; }
.fit-card.bad  li::before { content:'✗'; color: var(--muted); font-weight: 800; flex-shrink: 0; }

/* ——— Responsive ——— */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pricing-inner { grid-template-columns: 1fr; }
  .ig-inner { grid-template-columns: 1fr; }
  .services-hero-inner { grid-template-columns: 1fr; }
  .pillar-detail { grid-template-columns: 1fr; }
  .pillar-visual { aspect-ratio: 16/7; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  :root { --py: 64px; }
  .container { padding: 0 20px; }
  .challenges-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 40px; }
  .territory-inner { flex-direction: column; align-items: flex-start; }
  .territory-cta { margin-left: 0; }
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .ig-posts-grid { grid-template-columns: repeat(2,1fr); }
}
