/* LankanTax — marketing styles, split from style.css (v0.9.2). Loaded only where used. */
/* ============================================================
   Pricing-page sections (Phase 5)
   ============================================================ */
:root { --shadow-xl: 0 25px 60px rgba(0,0,0,0.10); }

/* Page hero (sub-pages) */
.page-hero {
  padding: 140px 0 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: -100px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.page-hero .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600; color: var(--slate);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.page-hero .hero-eyebrow::before {
  content: ''; width: 8px; height: 8px;
  background: var(--cyan); border-radius: 50%;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 800; line-height: 1.1;
  color: var(--slate); margin-bottom: 18px; letter-spacing: -0.01em;
}
.page-hero h1 .highlight { color: var(--cyan); position: relative; }
.page-hero h1 .highlight::after {
  content: ''; position: absolute;
  bottom: 4px; left: 0; right: 0; height: 10px;
  background: var(--peach); z-index: -1; border-radius: 4px;
}
.page-hero p {
  font-size: 1.2rem; color: var(--slate-light); line-height: 1.65;
  max-width: 640px; margin: 0 auto 28px;
}
.waitlist-banner {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px; padding: 10px 20px;
  background: var(--peach); border-radius: var(--radius-full);
  font-size: 0.88rem; font-weight: 600; color: #9A3412;
}
.waitlist-banner::before { content: '🎁'; font-size: 1rem; }

/* Pricing tiers */
.pricing-wrap { padding: 64px 0 80px; position: relative; z-index: 2; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; align-items: stretch; }
.pricing-grid.single { grid-template-columns: minmax(0, 520px); justify-content: center; }
.pricing-card { background: white; border-radius: var(--radius-lg); padding: 48px 36px 36px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; position: relative; border: 1px solid rgba(8, 145, 178, 0.08); }
.pricing-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.08) 0%, transparent 45%), radial-gradient(circle at 0% 100%, rgba(249, 115, 22, 0.06) 0%, transparent 45%); z-index: 0; }
.pricing-card > * { position: relative; z-index: 1; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 16px; border-radius: var(--radius-full); background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%); color: white; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35); white-space: nowrap; z-index: 2; }
.pricing-tier { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.pricing-name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--slate); margin-bottom: 18px; letter-spacing: -0.01em; }
.pricing-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.price-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--slate); letter-spacing: -0.02em; line-height: 1; }
.price-per { font-size: 0.9rem; color: var(--slate-light); margin-bottom: 22px; font-weight: 500; }
.pricing-desc { font-size: 0.95rem; color: var(--slate-light); line-height: 1.6; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.pricing-features { list-style: none; margin-bottom: 28px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.94rem; line-height: 1.5; color: var(--slate); }
.pricing-features li .check { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--mint-light); color: var(--mint-text); display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; margin-top: 1px; }
.pricing-cta { width: 100%; justify-content: center; }
.pricing-incentive { display: block; text-align: center; margin-top: 14px; font-size: 0.78rem; color: var(--slate-light); line-height: 1.5; }
.pricing-incentive strong { color: var(--slate); font-weight: 700; }
.pricing-note { max-width: 720px; margin: 40px auto 0; padding: 22px 26px; border-radius: var(--radius); background: white; text-align: center; font-size: 0.95rem; color: var(--slate-light); line-height: 1.55; box-shadow: var(--shadow-sm); }
.pricing-note strong { color: var(--slate); font-weight: 700; }
.pricing-note a { color: var(--cyan); text-decoration: underline; font-weight: 600; }

/* Why-free */
.why-free-section { padding: 80px 0 40px; background: linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, 0.04) 100%); }
.why-free-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.why-free-card { background: white; border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(8, 145, 178, 0.08); display: flex; flex-direction: column; }
.why-free-num { font-family: var(--font-display); font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; }
.why-free-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--slate); margin-bottom: 12px; line-height: 1.3; letter-spacing: -0.01em; }
.why-free-card p { font-size: 0.94rem; color: var(--slate-light); line-height: 1.6; margin: 0; }
.why-free-card p + p { margin-top: 10px; }
.why-free-footnote { max-width: 720px; margin: 32px auto 0; text-align: center; font-size: 0.9rem; color: var(--slate-light); line-height: 1.6; }
.why-free-footnote strong { color: var(--slate); font-weight: 700; }
@media (max-width: 880px) { .why-free-grid { grid-template-columns: 1fr; gap: 16px; } .why-free-section { padding: 56px 0 24px; } }

/* Money flow */
.money-flow-section { padding: 100px 0; background: white; }
.money-flow { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
.flow-node { background: white; border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; position: relative; border: 1px solid rgba(0,0,0,0.04); }
.flow-node .flow-tag { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.flow-node h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--slate); margin-bottom: 14px; letter-spacing: -0.01em; }
.flow-node ul { list-style: none; flex: 1; margin-bottom: 18px; }
.flow-node ul li { font-size: 0.9rem; color: var(--slate-light); line-height: 1.55; padding: 6px 0 6px 18px; position: relative; }
.flow-node ul li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.flow-node .flow-cost { padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.06); font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--slate); }
.flow-node .flow-cost .free-pill { display: inline-block; background: var(--mint-light); color: #065F46; padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3px; }
.flow-node .flow-cost .fee-pill { display: inline-block; background: var(--peach); color: #9A3412; padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3px; }
.flow-arrow { align-self: center; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 4px; color: var(--slate-lighter); }
.flow-arrow .arrow-line { width: 64px; height: 2px; background: linear-gradient(90deg, var(--cyan) 0%, var(--coral) 100%); position: relative; border-radius: 2px; }
.flow-arrow .arrow-line::after { content: ''; position: absolute; right: -2px; top: 50%; width: 0; height: 0; transform: translateY(-50%); border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 8px solid var(--coral); }
.flow-arrow .arrow-label { font-size: 0.72rem; font-weight: 700; font-family: var(--font-display); letter-spacing: 1.2px; text-transform: uppercase; color: var(--slate-light); white-space: nowrap; }

/* Fee tiers */
.fee-section { padding: 100px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); position: relative; overflow: hidden; }
.fee-section::before { content: ''; position: absolute; top: -180px; left: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(8, 145, 178, 0.07) 0%, transparent 70%); border-radius: 50%; }
.fee-section-inner { position: relative; z-index: 1; }
.fee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; align-items: stretch; }
.fee-card { position: relative; background: white; border-radius: var(--radius-lg); padding: 32px 28px 28px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; border: 1px solid rgba(0,0,0,0.04); }
.fee-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.fee-card.popular { border: 1px solid rgba(8, 145, 178, 0.2); box-shadow: 0 12px 36px rgba(8, 145, 178, 0.12); }
.fee-card .fee-tag { display: inline-flex; align-items: center; align-self: flex-start; font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--cyan-dark); background: rgba(8, 145, 178, 0.08); padding: 6px 12px; border-radius: var(--radius-full); margin-bottom: 24px; }
.fee-card.popular .fee-tag { background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%); color: white; }
.fee-card .fee-band { display: flex; align-items: baseline; gap: 6px; font-family: var(--font-display); color: var(--slate); letter-spacing: -0.025em; line-height: 1; margin-bottom: 8px; flex-wrap: wrap; }
.fee-card .fee-band .currency { font-size: 0.95rem; color: var(--slate-light); font-weight: 600; }
.fee-card .fee-band .amount { font-size: 1.85rem; font-weight: 800; white-space: nowrap; }
.fee-card .fee-band .dash { font-size: 1.4rem; color: var(--slate-lighter); font-weight: 600; padding: 0 2px; }
.fee-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--slate); line-height: 1.35; margin-bottom: 6px; letter-spacing: -0.005em; }
.fee-card .fee-meta { font-size: 0.85rem; color: var(--slate-light); margin-bottom: 22px; line-height: 1.5; }
.fee-card ul { list-style: none; flex: 1; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.06); }
.fee-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--slate); line-height: 1.5; padding: 6px 0; }
.fee-card ul li .dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); margin-top: 9px; }
.fee-card .fee-popular-pill { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 5px 14px; border-radius: var(--radius-full); background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%); color: white; font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; box-shadow: 0 4px 14px rgba(249, 115, 22, 0.32); white-space: nowrap; }
.fee-disclaimer { max-width: 720px; margin: 36px auto 0; padding: 18px 24px; border-radius: var(--radius); background: white; text-align: center; font-size: 0.86rem; color: var(--slate-light); line-height: 1.55; box-shadow: var(--shadow-sm); }
.fee-disclaimer strong { color: var(--slate); font-weight: 700; }
.fee-disclaimer a { color: var(--cyan); text-decoration: underline; font-weight: 600; }
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; } .fee-grid { grid-template-columns: 1fr; max-width: 480px; } .money-flow { grid-template-columns: 1fr; max-width: 480px; gap: 8px; } .flow-arrow { padding: 4px 0; } .flow-arrow .arrow-line { width: 2px; height: 48px; background: linear-gradient(180deg, var(--cyan) 0%, var(--coral) 100%); } .flow-arrow .arrow-line::after { right: 50%; top: auto; bottom: -2px; transform: translateX(50%); border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 8px solid var(--coral); border-bottom: none; } }

/* Versus */
.versus-section { padding: 100px 0; background: white; }
.versus-wrap { max-width: 980px; margin: 0 auto; background: var(--cream); border-radius: var(--radius-lg); padding: 8px; border: 1px solid rgba(0,0,0,0.04); }
.versus-head { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 0; align-items: center; padding: 14px 22px; font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--slate-light); }
.versus-head .col-before { color: #9A3412; text-align: center; }
.versus-head .col-after { color: var(--cyan-dark); text-align: center; }
.versus-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 0; align-items: stretch; background: white; border-radius: var(--radius); margin-bottom: 8px; box-shadow: var(--shadow-sm); overflow: hidden; }
.versus-row:last-child { margin-bottom: 0; }
.versus-row > div { padding: 22px 22px; }
.versus-row .versus-label { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--slate); line-height: 1.35; display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.versus-row .versus-label small { font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: var(--slate-light); line-height: 1.5; }
.versus-row .versus-cell { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--slate); line-height: 1.45; border-left: 1px solid rgba(0,0,0,0.05); }
.versus-row .versus-cell .ico { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; }
.versus-row .versus-cell.before .ico { background: #FED7AA; color: #9A3412; }
.versus-row .versus-cell.after .ico { background: var(--mint-light); color: var(--mint-text); }
.versus-row .versus-cell.after { background: rgba(8, 145, 178, 0.03); }
@media (max-width: 720px) { .versus-head { display: none; } .versus-row { grid-template-columns: 1fr; gap: 0; } .versus-row > div { padding: 16px 18px; } .versus-row .versus-label { padding-bottom: 4px; } .versus-row .versus-cell { border-left: none; border-top: 1px solid rgba(0,0,0,0.05); } .versus-row .versus-cell::before { font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-right: auto; align-self: flex-start; } .versus-row .versus-cell.before::before { content: 'Without'; color: #9A3412; } .versus-row .versus-cell.after::before { content: 'With LankanTax'; color: var(--cyan-dark); } }

/* CTA band (slim dark bar) */
.cta-band { padding: 90px 0; background: linear-gradient(135deg, #1E293B 0%, #334155 100%); color: white; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -120px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(34, 211, 238, 0.18) 0%, transparent 70%); border-radius: 50%; }
.cta-band::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%); border-radius: 50%; }
.cta-band-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: white; line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.01em; }
.cta-band p { font-size: 1.08rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 28px; }
.cta-band .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .microcopy { margin-top: 20px; font-size: 0.84rem; color: rgba(255,255,255,0.6); }
.cta-band .microcopy strong { color: rgba(255,255,255,0.9); }
@media (max-width: 900px) { .page-hero h1 { font-size: 2.4rem; } .cta-band h2 { font-size: 1.9rem; } }
@media (max-width: 640px) { .page-hero { padding-top: 120px; } .page-hero h1 { font-size: 2rem; } .pricing-card { padding: 32px 24px; } .price-amount { font-size: 2rem; } .cta-band h2 { font-size: 1.7rem; } }

/* ============================================================
   How It Works page (Phase 7)
   ============================================================ */
/* Story card */
.story-section { padding: 80px 0; background: white; }
.story-card { max-width: 780px; margin: 0 auto; padding: 40px 44px; background: var(--cream); border-radius: var(--radius-lg); border: 1px solid rgba(0,0,0,0.03); font-size: 1.08rem; line-height: 1.75; color: var(--slate); }
.story-card strong { color: var(--slate-deep); font-weight: 600; }
.story-card p + p { margin-top: 14px; }

/* Side-by-side flow */
.flow-section { padding: 80px 0; background: var(--cream); }
.flow-headers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1080px; margin: 0 auto 16px; padding: 0 4px; }
.flow-col-header { padding: 16px 24px; border-radius: var(--radius); font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 1.5px; display: flex; align-items: center; gap: 10px; }
.flow-col-header.you { background: var(--cyan-dark); color: white; }
.flow-col-header.ca { background: var(--slate-deep); color: white; }
.flow-col-icon { width: 28px; height: 28px; background: rgba(255,255,255,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.flow-step-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1080px; margin: 0 auto 16px; align-items: stretch; position: relative; }
.flow-step-num { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; background: white; border: 2px solid var(--cyan); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--cyan-dark); z-index: 2; box-shadow: var(--shadow-sm); }
.flow-cell { background: white; border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.03); transition: all 0.25s ease; }
.flow-cell:hover { box-shadow: var(--shadow-md); }
.flow-cell h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--slate); margin-bottom: 8px; line-height: 1.3; }
.flow-cell p { font-size: 0.93rem; color: var(--slate-light); line-height: 1.65; }
.flow-cell .flow-time { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--cyan-dark); background: rgba(8, 145, 178, 0.08); padding: 3px 10px; border-radius: var(--radius-full); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.flow-cell.empty { background: transparent; border: 2px dashed rgba(0,0,0,0.08); box-shadow: none; display: flex; align-items: center; justify-content: center; color: var(--slate-lighter); font-size: 0.88rem; font-style: italic; }
@media (max-width: 720px) { .flow-headers, .flow-step-row { grid-template-columns: 1fr; } .flow-step-num { position: static; transform: none; margin: 0 auto 8px; } }

/* Honest answers */
.honest-section { padding: 80px 0; background: white; }
.honest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.honest-card { padding: 32px 30px; border-radius: var(--radius-lg); background: var(--cream); border: 1px solid rgba(0,0,0,0.04); }
.honest-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--slate); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.honest-card h3 .icon { width: 32px; height: 32px; background: var(--mint-light); color: var(--mint-text); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.honest-list { list-style: none; }
.honest-list li { font-size: 0.95rem; color: var(--slate); padding: 10px 0; line-height: 1.6; border-bottom: 1px solid rgba(0,0,0,0.05); }
.honest-list li:last-child { border-bottom: none; }
.honest-list li strong { color: var(--slate); font-weight: 700; }
@media (max-width: 720px) { .honest-grid { grid-template-columns: 1fr; } }

/* Notifications */
.notifications-section { padding: 80px 0; background: var(--cream); }
.notifications-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1000px; margin: 0 auto; }
.notif-card { background: white; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.03); transition: all 0.25s ease; }
.notif-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.notif-icon { font-size: 1.6rem; margin-bottom: 12px; }
.notif-card h4 { font-family: var(--font-display); font-size: 0.98rem; font-weight: 700; color: var(--slate); margin-bottom: 8px; }
.notif-card p { font-size: 0.88rem; color: var(--slate-light); line-height: 1.6; margin-bottom: 12px; }
.notif-message { background: var(--cream); padding: 12px 14px; border-radius: var(--radius); border-left: 3px solid var(--cyan); font-size: 0.85rem; color: var(--slate); font-style: italic; }
@media (max-width: 720px) { .notifications-grid { grid-template-columns: 1fr; } }

/* Concerns (tagged accordion) */
.concerns-section { padding: 80px 0; background: white; }
.concerns-list { max-width: 820px; margin: 0 auto; }
.concern-item { background: var(--cream); border-radius: var(--radius); margin-bottom: 12px; border: 1px solid rgba(0,0,0,0.03); overflow: hidden; transition: all 0.25s ease; }
.concern-item:hover { box-shadow: var(--shadow-sm); }
.concern-question { padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--slate); gap: 16px; }
.concern-toggle { color: var(--cyan); font-size: 1.4rem; font-weight: 400; transition: transform 0.2s ease; flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.concern-item.open .concern-toggle { transform: rotate(45deg); }
.concern-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 28px; }
.concern-item.open .concern-answer { max-height: 600px; padding: 0 28px 22px; }
.concern-answer p { font-size: 0.95rem; color: var(--slate-light); line-height: 1.7; margin-bottom: 10px; }
.concern-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 10px; border-radius: var(--radius-full); margin-right: 10px; }
.concern-tag.you { background: rgba(8, 145, 178, 0.12); color: var(--cyan-dark); }
.concern-tag.ca { background: rgba(15, 23, 42, 0.08); color: var(--slate); }

/* ============================================================
   Features page (Phase 7 part 2)
   ============================================================ */
/* Hero pill tabs (extension to page-hero) */
.hero-pill-tabs { display: inline-flex; gap: 6px; background: white; padding: 6px; border-radius: var(--radius-full); box-shadow: var(--shadow-sm); margin-top: 10px; flex-wrap: wrap; }
.hero-pill-tabs a { padding: 10px 20px; border-radius: var(--radius-full); font-size: 0.88rem; font-weight: 600; color: var(--slate-light); text-decoration: none; transition: all 0.2s; }
.hero-pill-tabs a:hover { color: var(--cyan); }
.hero-pill-tabs a.active { background: var(--slate); color: white; }

/* Group section */
.group-section { padding: 100px 0; background: white; }
.group-section.alt { background: var(--cream); }
.group-section + .group-section { padding-top: 0; }
.group-header { display: flex; align-items: center; gap: 18px; max-width: 960px; margin: 0 auto 40px; }
.group-badge { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 16px; font-size: 1.7rem; background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%); color: white; box-shadow: 0 8px 24px rgba(8, 145, 178, 0.25); }
.group-badge.coral { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%); box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25); }
.group-badge.mint { background: linear-gradient(135deg, #059669 0%, var(--mint) 100%); box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25); }
.group-header h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--slate); line-height: 1.2; letter-spacing: -0.01em; }
.group-header p { color: var(--slate-light); font-size: 0.98rem; margin-top: 4px; }

/* Feature block */
.feature-block { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; max-width: 960px; margin: 0 auto 72px; }
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { grid-template-columns: 1.1fr 0.9fr; }
.feature-block.reverse .feature-text { order: 2; }
.feature-block.reverse .feature-mock { order: 1; }
.feature-text .feature-num { display: inline-block; font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; color: var(--cyan); text-transform: uppercase; margin-bottom: 10px; }
.feature-text h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; line-height: 1.2; color: var(--slate); margin-bottom: 14px; letter-spacing: -0.01em; }
.feature-text p { font-size: 1.02rem; color: var(--slate-light); line-height: 1.65; margin-bottom: 18px; }
.feature-text ul { list-style: none; }
.feature-text ul li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 0.97rem; color: var(--slate); line-height: 1.55; }
.feature-text ul li::before { content: '✓'; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--mint-text); width: 20px; height: 20px; border-radius: 50%; background: var(--mint-light); display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; }

/* Feature mock backgrounds */
.feature-mock { background: linear-gradient(135deg, var(--cream-dark) 0%, #FEF8EE 100%); border-radius: var(--radius-lg); padding: 32px; position: relative; min-height: 320px; overflow: hidden; box-shadow: var(--shadow-md); }
.feature-mock::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(8, 145, 178, 0.1) 0%, transparent 70%); border-radius: 50%; }

/* mock-dash */
.feature-mock.mock-dash .mock-row { display: grid; grid-template-columns: 1fr 80px 80px 50px; gap: 10px; align-items: center; padding: 12px 16px; background: white; border-radius: 10px; margin-bottom: 8px; font-size: 0.82rem; color: var(--slate); box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.feature-mock.mock-dash .mock-row .client { font-weight: 600; }
.feature-mock.mock-dash .mock-row .status { font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); text-align: center; letter-spacing: 0.3px; }
.s-pending { background: #FFF7ED; color: #9A3412; }
.s-ready { background: var(--mint-light); color: #065F46; }
.s-review { background: #E0F7FA; color: var(--cyan-dark); }
.s-sent { background: #EEF2FF; color: #3730A3; }
.feature-mock.mock-dash .mock-row .due { font-size: 0.78rem; color: var(--slate-lighter); text-align: right; }
.feature-mock.mock-dash .mock-row .bar { height: 6px; background: #F1F5F9; border-radius: 10px; overflow: hidden; }
.feature-mock.mock-dash .mock-row .bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-light) 100%); }

/* mock-msg */
.feature-mock.mock-msg { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.feature-mock.mock-msg .msg { background: white; border-radius: 14px; padding: 14px 18px; max-width: 82%; box-shadow: var(--shadow-sm); font-size: 0.9rem; color: var(--slate); line-height: 1.5; position: relative; z-index: 1; }
.feature-mock.mock-msg .msg.sent { align-self: flex-end; background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%); color: white; }
.feature-mock.mock-msg .msg .time { display: block; font-size: 0.72rem; color: var(--slate-lighter); margin-top: 4px; }
.feature-mock.mock-msg .msg.sent .time { color: rgba(255,255,255,0.7); }
.feature-mock.mock-msg .msg strong { font-weight: 600; }

/* mock-upload */
.feature-mock.mock-upload { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.feature-mock.mock-upload .file { display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center; padding: 12px 14px; background: white; border-radius: 12px; box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.feature-mock.mock-upload .file .icon { width: 36px; height: 36px; border-radius: 10px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.feature-mock.mock-upload .file .info { display: flex; flex-direction: column; }
.feature-mock.mock-upload .file .info .name { font-weight: 600; font-size: 0.88rem; color: var(--slate); }
.feature-mock.mock-upload .file .info .meta { font-size: 0.72rem; color: var(--slate-lighter); }
.feature-mock.mock-upload .file .check { width: 22px; height: 22px; border-radius: 50%; background: var(--mint); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.72rem; }
.feature-mock.mock-upload .file.prog .check { background: var(--cream-dark); color: var(--coral); }

/* mock-review */
.feature-mock.mock-review { display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.feature-mock.mock-review .field-row { display: grid; grid-template-columns: 1fr 120px 28px; gap: 12px; align-items: center; padding: 12px 14px; background: white; border-radius: 12px; box-shadow: var(--shadow-sm); font-size: 0.88rem; position: relative; z-index: 1; }
.feature-mock.mock-review .field-row .label { color: var(--slate-light); }
.feature-mock.mock-review .field-row .val { font-weight: 600; color: var(--slate); text-align: right; }
.feature-mock.mock-review .field-row .edit { color: var(--cyan); cursor: pointer; font-size: 0.9rem; text-align: center; }
.feature-mock.mock-review .field-row.flag { border: 2px solid rgba(249, 115, 22, 0.25); background: #FFF7ED; }

/* mock-pdf */
.feature-mock.mock-pdf { display: flex; align-items: center; justify-content: center; }
.feature-mock.mock-pdf .pdf-doc { width: 190px; padding: 24px 20px; background: white; border-radius: 8px; box-shadow: var(--shadow-lg); transform: rotate(-3deg); font-size: 0.72rem; color: var(--slate); line-height: 1.4; position: relative; z-index: 1; }
.feature-mock.mock-pdf .pdf-doc h5 { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; color: var(--slate); padding-bottom: 8px; border-bottom: 2px solid var(--cyan); margin-bottom: 10px; }
.feature-mock.mock-pdf .pdf-doc .pdf-line { display: flex; justify-content: space-between; margin-bottom: 6px; }
.feature-mock.mock-pdf .pdf-doc .pdf-line .k { color: var(--slate-lighter); }
.feature-mock.mock-pdf .pdf-doc .pdf-total { display: flex; justify-content: space-between; padding-top: 8px; margin-top: 8px; border-top: 1px solid rgba(0,0,0,0.08); font-weight: 700; color: var(--slate); }

/* mock-ext (browser extension) */
.feature-mock.mock-ext { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); padding: 22px; }
.feature-mock.mock-ext::before { display: none; }
.feature-mock.mock-ext .browser-bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(255,255,255,0.08); border-radius: 10px 10px 0 0; }
.feature-mock.mock-ext .browser-bar .dots { display: flex; gap: 5px; }
.feature-mock.mock-ext .browser-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.feature-mock.mock-ext .browser-bar .url { flex: 1; padding: 5px 12px; background: rgba(255,255,255,0.1); border-radius: 6px; font-size: 0.72rem; color: rgba(255,255,255,0.7); font-family: 'SF Mono', Menlo, monospace; }
.feature-mock.mock-ext .browser-bar .pin { font-size: 0.95rem; }
.feature-mock.mock-ext .browser-body { background: white; border-radius: 0 0 10px 10px; padding: 16px; }
.feature-mock.mock-ext .ext-field { display: grid; grid-template-columns: 1fr auto 24px; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.85rem; }
.feature-mock.mock-ext .ext-field:last-child { border-bottom: none; }
.feature-mock.mock-ext .ext-field .l { color: var(--slate-light); }
.feature-mock.mock-ext .ext-field .v { font-weight: 600; color: var(--slate); }
.feature-mock.mock-ext .ext-field .ok { width: 20px; height: 20px; border-radius: 50%; background: var(--mint); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; }

/* Security grid */
.security-section { padding: 100px 0; background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%); position: relative; overflow: hidden; }
.security-section::before { content: ''; position: absolute; top: -150px; left: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(8, 145, 178, 0.06) 0%, transparent 70%); border-radius: 50%; }
.security-inner { position: relative; z-index: 1; }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.security-card { background: white; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; }
.security-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.security-card .security-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.security-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--slate); margin-bottom: 10px; line-height: 1.3; }
.security-card p { font-size: 0.9rem; color: var(--slate-light); line-height: 1.6; }

/* Stats band */
.stats-band { padding: 72px 0; background: linear-gradient(135deg, #1E293B 0%, #334155 100%); color: white; position: relative; overflow: hidden; }
.stats-band::before { content: ''; position: absolute; top: -120px; right: -100px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%); border-radius: 50%; }
.stats-band::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%); border-radius: 50%; }
.stats-inner { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 8px; }
.stat-item .num .accent { color: var(--cyan-light); }
.stat-item .lbl { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.4; }

/* Testimonial */
.testimonial-section { padding: 100px 0; background: var(--cream); }
.testimonial-card { max-width: 900px; margin: 0 auto; background: white; border-radius: var(--radius-lg); padding: 56px 60px; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; left: 40px; font-family: Georgia, serif; font-size: 8rem; line-height: 1; color: var(--peach); opacity: 0.6; }
.testimonial-label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 20px; position: relative; }
.testimonial-quote { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; line-height: 1.5; color: var(--slate); margin-bottom: 32px; position: relative; }
.testimonial-quote .em { color: var(--cyan); font-weight: 600; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.testimonial-info h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--slate); }
.testimonial-info p { font-size: 0.88rem; color: var(--slate-light); }

@media (max-width: 1024px) { .security-grid { grid-template-columns: repeat(2, 1fr); } .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; } .feature-block, .feature-block.reverse { grid-template-columns: 1fr; gap: 32px; } .feature-block.reverse .feature-text { order: 1; } .feature-block.reverse .feature-mock { order: 2; } }
@media (max-width: 640px) { .group-header { flex-direction: column; align-items: flex-start; gap: 14px; } .stats-inner { grid-template-columns: 1fr 1fr; gap: 28px; } .stat-item .num { font-size: 2.1rem; } .security-grid { grid-template-columns: 1fr; } .testimonial-card { padding: 40px 32px; } .testimonial-quote { font-size: 1.2rem; } }

/* ===== Benefits grid (For You page) ===== */
.benefits-section { background: white; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
.benefit-card { background: var(--cream); border-radius: var(--radius-lg); padding: 30px 26px; border: 1px solid rgba(0,0,0,0.03); transition: all 0.25s ease; }
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.benefit-icon.coral { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%); }
.benefit-icon.mint { background: linear-gradient(135deg, var(--mint) 0%, #34D399 100%); }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--slate); margin-bottom: 10px; line-height: 1.3; }
.benefit-card p { font-size: 0.93rem; color: var(--slate-light); line-height: 1.65; }

/* ===== For You feature rows ===== */
.features-section { background: var(--cream); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1080px; margin: 0 auto 80px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-row .feature-text h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 800; color: var(--slate); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 14px; }
.feature-row .feature-text p { font-size: 1rem; color: var(--slate-light); line-height: 1.7; margin-bottom: 18px; }
.feature-bullets { list-style: none; }
.feature-bullets li { font-size: 0.95rem; color: var(--slate); padding: 8px 0 8px 28px; position: relative; line-height: 1.55; }
.feature-bullets li::before { content: '\2713'; position: absolute; left: 0; top: 8px; width: 20px; height: 20px; background: var(--mint-light); color: var(--mint-text); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; }
.feature-row .feature-visual { background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.04); }
.mock-screen { background: var(--cream); border-radius: var(--radius); padding: 22px; font-family: var(--font-body); }
.mock-screen .mock-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: white; border-radius: 10px; margin-bottom: 10px; border: 1px solid rgba(0,0,0,0.04); font-size: 0.88rem; }
.mock-screen .mock-row:last-child { margin-bottom: 0; }
.mock-screen .mock-row .label { color: var(--slate-light); }
.mock-screen .mock-row .value { color: var(--slate); font-weight: 600; }
.mock-screen .mock-row .pill { font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); background: var(--mint-light); color: var(--mint-text); text-transform: uppercase; letter-spacing: 0.4px; }
.mock-bilingual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-bilingual .lang { background: white; border-radius: 10px; padding: 16px; border: 1px solid rgba(0,0,0,0.04); }
.mock-bilingual .lang.active { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(8,145,178,0.1); }
.mock-bilingual .lang-tag { font-size: 0.72rem; font-weight: 700; color: var(--cyan-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.mock-bilingual .lang-text { font-size: 0.9rem; color: var(--slate); line-height: 1.45; }
.mock-screen .mock-notif { background: white; border-left: 3px solid var(--cyan); border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; box-shadow: var(--shadow-sm); }
.mock-screen .mock-notif:last-child { margin-bottom: 0; }
.mock-screen .mock-notif .notif-title { font-size: 0.88rem; font-weight: 700; color: var(--slate); margin-bottom: 4px; }
.mock-screen .mock-notif .notif-body { font-size: 0.82rem; color: var(--slate-light); }

/* ===== Before / After comparison ===== */
.compare-section { background: white; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.compare-card { padding: 32px 30px; border-radius: var(--radius-lg); border: 1px solid rgba(0,0,0,0.04); }
.compare-card.before { background: var(--cream); }
.compare-card.after { background: linear-gradient(135deg, rgba(8,145,178,0.06) 0%, rgba(34,211,238,0.04) 100%); border-color: rgba(8,145,178,0.15); }
.compare-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--slate); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.compare-card.after h3 { color: var(--cyan-dark); }
.compare-list { list-style: none; }
.compare-list li { font-size: 0.95rem; color: var(--slate); padding: 10px 0 10px 26px; position: relative; line-height: 1.55; border-bottom: 1px solid rgba(0,0,0,0.05); }
.compare-list li:last-child { border-bottom: none; }
.compare-card.before .compare-list li::before { content: '\2715'; position: absolute; left: 0; top: 12px; color: var(--coral); font-weight: 700; }
.compare-card.after .compare-list li::before { content: '\2713'; position: absolute; left: 0; top: 12px; color: var(--mint-text); font-weight: 700; }

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .feature-row.reverse .feature-text { order: 1; }
  .feature-row.reverse .feature-visual { order: 2; }
}
@media (max-width: 760px) {
  .benefits-grid { grid-template-columns: 1fr; max-width: 460px; }
  .compare-grid { grid-template-columns: 1fr; max-width: 460px; }
}

/* ===== Partners page sections ===== */

/* Section 1 -- Position */
    .position-section {
      background: white;
    }

    .position-intro {
      max-width: 760px;
      margin: 0 auto 48px;
      text-align: center;
      font-size: 1.08rem;
      color: var(--slate-light);
      line-height: 1.75;
    }

    .position-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      max-width: 1080px;
      margin: 0 auto 40px;
    }

    .position-card {
      background: var(--cream);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      border: 1px solid rgba(0,0,0,0.03);
      transition: all 0.3s ease;
    }

    .position-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .position-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
      color: white;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      border-radius: 10px;
      margin-bottom: 18px;
    }

    .position-card h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--slate);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .position-card p {
      font-size: 0.95rem;
      color: var(--slate-light);
      line-height: 1.65;
    }

    .position-pull {
      max-width: 760px;
      margin: 0 auto;
      padding: 28px 32px;
      background: linear-gradient(135deg, rgba(8, 145, 178, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
      border-left: 4px solid var(--cyan);
      border-radius: var(--radius);
      font-size: 1rem;
      color: var(--slate);
      line-height: 1.7;
    }

    .position-pull strong { color: var(--cyan-dark); }

/* Section 2 -- Pain */
    .pain-section {
      background: var(--cream);
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 960px;
      margin: 0 auto 40px;
    }

    .pain-card {
      background: white;
      border-radius: var(--radius);
      padding: 26px 28px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0,0,0,0.03);
      transition: all 0.25s ease;
    }

    .pain-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .pain-icon {
      font-size: 1.8rem;
      margin-bottom: 12px;
    }

    .pain-card h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--slate);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .pain-card p {
      font-size: 0.93rem;
      color: var(--slate-light);
      line-height: 1.6;
    }

    .pain-closing {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--slate);
      line-height: 1.6;
      padding: 0 20px;
    }

/* Section 3 -- How CTA trailing line */
    .how-cta {
      text-align: center;
      margin-top: 12px;
      font-size: 0.98rem;
      color: var(--slate);
    }

    .how-cta a {
      color: var(--cyan-dark);
      font-weight: 600;
      border-bottom: 2px solid var(--peach);
    }


/* Features bridge */
    .features-bridge {
      background: white;
      padding-top: 0;
    }

    .features-bridge-inner {
      max-width: 1080px;
      margin: 0 auto;
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
      border-radius: var(--radius-lg);
      padding: 56px 48px;
      position: relative;
      overflow: hidden;
      color: white;
    }

    .features-bridge-inner::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
      border-radius: 50%;
    }

    .features-bridge-head {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 36px;
      position: relative;
      z-index: 1;
    }

    .features-bridge-eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--cyan-light);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 14px;
    }

    .features-bridge-head h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.015em;
      margin-bottom: 14px;
    }

    .features-bridge-head h2 em {
      color: var(--cyan-light);
      font-style: normal;
    }

    .features-bridge-head p {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
    }

    .features-bridge-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
    }

    .features-bridge-tile {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 22px 22px;
      transition: all 0.25s ease;
    }

    .features-bridge-tile:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(34, 211, 238, 0.3);
      transform: translateY(-2px);
    }

    .features-bridge-tile-icon {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }

    .features-bridge-tile h3 {
      font-family: var(--font-display);
      font-size: 0.98rem;
      font-weight: 700;
      color: white;
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .features-bridge-tile p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.5;
    }

    .features-bridge-cta {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .features-bridge-cta .btn {
      background: var(--cyan-light);
      color: #0F172A;
    }

    .features-bridge-cta .btn:hover {
      background: white;
      transform: translateY(-2px);
    }

    .features-bridge-sub {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      margin-top: 14px;
    }


/* Section 4 -- Pricing */
    .pricing-section {
      background: var(--cream);
    }

    .pricing-callout {
      max-width: 920px;
      margin: 0 auto 36px;
      background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
      border-radius: var(--radius-lg);
      padding: 26px 30px;
      display: flex;
      align-items: center;
      gap: 20px;
      border: 1px solid rgba(217, 119, 6, 0.15);
    }

    .pricing-callout-icon {
      font-size: 2rem;
      flex-shrink: 0;
    }

    .pricing-callout-text {
      font-size: 0.98rem;
      color: #78350F;
      line-height: 1.6;
      flex: 1;
    }

    .pricing-callout-text strong {
      color: #92400E;
      font-weight: 700;
    }

    .pricing-callout-link {
      color: #92400E;
      font-weight: 700;
      border-bottom: 2px solid #D97706;
      white-space: nowrap;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      max-width: 1180px;
      margin: 0 auto 32px;
    }

    .price-card.sovereign {
      background: linear-gradient(135deg, #FFFBF7 0%, #FEF3E2 100%);
      border: 2px solid rgba(8, 145, 178, 0.2);
      position: relative;
    }

    .price-card.sovereign::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-light) 100%);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .sovereign-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
      color: white;
      padding: 6px 16px;
      border-radius: var(--radius-full);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
      white-space: nowrap;
    }

    .price-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      border: 2px solid transparent;
      transition: all 0.3s ease;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .price-card:hover {
      transform: translateY(-3px);
      border-color: var(--cyan);
      box-shadow: var(--shadow-md);
    }

    .price-card.featured {
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
      color: white;
      border-color: transparent;
    }

    .price-card.featured:hover {
      border-color: var(--cyan-light);
    }

    .price-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
      color: white;
      padding: 6px 16px;
      border-radius: var(--radius-full);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    }

    .price-name {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--slate);
      margin-bottom: 8px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .price-card.featured .price-name { color: var(--cyan-light); }

    .price-tagline {
      font-size: 0.88rem;
      color: var(--slate-light);
      margin-bottom: 20px;
      min-height: 38px;
    }

    .price-card.featured .price-tagline { color: rgba(255,255,255,0.6); }

    .price-amount {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--slate);
      line-height: 1;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    .price-card.featured .price-amount { color: white; }

    .price-period {
      font-size: 0.85rem;
      color: var(--slate-light);
      margin-bottom: 22px;
    }

    .price-card.featured .price-period { color: rgba(255,255,255,0.5); }

    .price-features {
      list-style: none;
      margin-bottom: 26px;
      flex: 1;
    }

    .price-features li {
      font-size: 0.92rem;
      color: var(--slate);
      padding: 8px 0;
      padding-left: 26px;
      position: relative;
      line-height: 1.5;
    }

    .price-card.featured .price-features li { color: rgba(255,255,255,0.85); }

    .price-features li::before {
      content: '\2713';
      position: absolute;
      left: 0;
      top: 8px;
      width: 18px;
      height: 18px;
      background: var(--mint-light);
      color: var(--mint-text);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .price-card.featured .price-features li::before {
      background: rgba(34, 211, 238, 0.15);
      color: var(--cyan-light);
    }

    .price-cta {
      width: 100%;
      justify-content: center;
    }

    .pricing-fineprint {
      max-width: 920px;
      margin: 0 auto 40px;
      padding: 22px 28px;
      background: white;
      border-radius: var(--radius);
      border: 1px solid rgba(0,0,0,0.04);
      font-size: 0.9rem;
      color: var(--slate-light);
      line-height: 1.7;
    }

    .pricing-fineprint p { margin-bottom: 6px; }
    .pricing-fineprint p:last-child { margin-bottom: 0; }
    .pricing-fineprint strong { color: var(--slate); }

    .pricing-faqs {
      max-width: 920px;
      margin: 0 auto 36px;
    }

    .pricing-faq {
      padding: 18px 4px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .pricing-faq:last-child { border-bottom: none; }

    .pricing-faq h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--slate);
      margin-bottom: 6px;
    }

    .pricing-faq p {
      font-size: 0.93rem;
      color: var(--slate-light);
      line-height: 1.6;
    }

    .pricing-cta-row {
      text-align: center;
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

/* Section 5 -- Founding Partner */
    .founding-section {
      background: white;
      position: relative;
      overflow: hidden;
    }

    .founding-section::before {
      content: '';
      position: absolute;
      top: 80px;
      right: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
      border-radius: 50%;
    }

    .founding-inner {
      max-width: 980px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .founding-intro {
      max-width: 720px;
      margin: 0 auto 40px;
      text-align: center;
      font-size: 1.05rem;
      color: var(--slate);
      line-height: 1.7;
    }

    .founding-intro strong { color: var(--coral); font-weight: 700; }

    .founding-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 40px;
    }

    .founding-col {
      background: var(--cream);
      border-radius: var(--radius-lg);
      padding: 32px 30px;
      border: 1px solid rgba(0,0,0,0.03);
    }

    .founding-col-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .founding-col-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .founding-col-icon.give {
      background: linear-gradient(135deg, var(--mint) 0%, #34D399 100%);
      color: white;
    }

    .founding-col-icon.ask {
      background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
      color: white;
    }

    .founding-col h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--slate);
    }

    .founding-list {
      list-style: none;
    }

    .founding-list li {
      font-size: 0.95rem;
      color: var(--slate);
      padding: 10px 0;
      padding-left: 28px;
      position: relative;
      line-height: 1.55;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .founding-list li:last-child { border-bottom: none; }

    .founding-list li::before {
      content: '\2713';
      position: absolute;
      left: 0;
      top: 12px;
      width: 18px;
      height: 18px;
      background: var(--mint-light);
      color: var(--mint-text);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .founding-list li strong {
      color: var(--slate);
      font-weight: 700;
    }

    .founding-cta-block {
      text-align: center;
    }

    .founding-cta-line {
      font-size: 1.05rem;
      color: var(--slate);
      margin-bottom: 22px;
      font-weight: 500;
    }

    .founding-sub {
      font-size: 0.85rem;
      color: var(--slate-light);
      margin-top: 14px;
    }

/* Final-sub microcopy */
    .final-sub {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.5);
    }

    .final-sub a {
      color: var(--cyan-light);
      border-bottom: 1px solid rgba(34, 211, 238, 0.4);
    }

/* Partners responsive */
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; } }
@media (max-width: 980px) {
  .position-grid { grid-template-columns: 1fr; max-width: 560px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .founding-grid { grid-template-columns: 1fr; gap: 22px; }
  .features-bridge-grid { grid-template-columns: 1fr 1fr; }
  .features-bridge-inner { padding: 44px 32px; }
}
@media (max-width: 700px) {
  .pain-grid { grid-template-columns: 1fr; max-width: 460px; }
  .pricing-callout { flex-direction: column; text-align: center; gap: 14px; }
  .features-bridge-grid { grid-template-columns: 1fr; }
  .features-bridge-inner { padding: 40px 24px; }
}

/* ===== What You Need page ===== */
:root { --cyan-tint: #E0F7FA; --coral-tint: #FFF1E6; }

/* Hero (scoped under .wyn-hero so it does NOT collide with home .hero) */
.wyn-hero { padding: 140px 0 56px; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); position: relative; overflow: hidden; }
.wyn-hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(8,145,178,0.08) 0%, transparent 70%); border-radius: 50%; }
.wyn-hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%); border-radius: 50%; }
.wyn-hero .hero-inner { max-width: 880px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.wyn-hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; background: white; padding: 6px 16px 6px 6px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; color: var(--slate); margin-bottom: 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04); font-family: var(--font-body); }
.wyn-hero .eyebrow-tag { background: var(--mint); color: white; padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.wyn-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -0.02em; color: var(--slate); margin-bottom: 22px; }
.wyn-hero h1 em { font-style: normal; font-weight: 800; color: var(--cyan); position: relative; }
.wyn-hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px; background: var(--peach, #FED7AA); z-index: -1; border-radius: 4px; }
.wyn-hero .hero-lead { font-size: 1.18rem; color: var(--slate-light); line-height: 1.65; max-width: 660px; margin-bottom: 28px; }
.wyn-hero .hero-lead strong { color: var(--slate); font-weight: 600; }
.wyn-hero .hero-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.wyn-hero .meta-pill { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid rgba(0,0,0,0.06); padding: 9px 16px; border-radius: var(--radius-full); font-size: 0.86rem; font-weight: 500; color: var(--slate-light); box-shadow: var(--shadow-sm); }
.wyn-hero .meta-pill strong { color: var(--slate); font-weight: 700; }
.wyn-hero .meta-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }

.wyn-deadline-bar { max-width: 880px; margin: 12px auto 0; padding: 0 28px; }
.wyn-deadline-bar-inner { background: linear-gradient(135deg, #FFF8EC 0%, #FFEFD3 100%); border: 1px solid #F5DEB3; border-radius: var(--radius); padding: 18px 22px; display: flex; gap: 16px; align-items: flex-start; }
.wyn-deadline-icon { width: 38px; height: 38px; border-radius: 10px; background: #D97706; color: white; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1rem; flex-shrink: 0; box-shadow: 0 4px 10px rgba(217,119,6,0.25); }
.wyn-deadline-text { font-size: 0.95rem; color: #78350F; }
.wyn-deadline-text strong { color: #5C2C0A; }

/* Gate */
.gate { max-width: 980px; margin: 56px auto 0; padding: 0 28px; }
.gate-card { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; background: white; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04); }
.gate-col h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }
.gate-col.must h3 { color: var(--coral); }
.gate-col.maybe h3 { color: var(--cyan); }
.gate-col ul { list-style: none; }
.gate-col li { padding: 8px 0 8px 22px; position: relative; font-size: 0.95rem; color: var(--slate); line-height: 1.55; border-bottom: 1px solid rgba(0,0,0,0.05); }
.gate-col li:last-child { border-bottom: none; }
.gate-col li::before { position: absolute; left: 0; top: 8px; font-weight: 700; }
.gate-col.must li::before { content: "\203A"; color: var(--coral); }
.gate-col.maybe li::before { content: "\203A"; color: var(--cyan); }
.gate-foot { max-width: 720px; margin: 24px auto 0; text-align: center; color: var(--slate-light); font-size: 0.95rem; }

/* WYN sections (scoped under .wyn-section to avoid collision with theme .section) */
.wyn-section { max-width: 980px; margin: 56px auto 0; padding: 0 28px; }
.wyn-section .section-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.06); flex-wrap: wrap; }
.wyn-section .wyn-section-num { font-size: 0.78rem; font-weight: 700; color: var(--cyan); letter-spacing: 1.5px; text-transform: uppercase; font-feature-settings: "tnum" 1; }
.wyn-section h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2rem); line-height: 1.15; letter-spacing: -0.01em; color: var(--slate); }
.wyn-section h2 em { font-style: normal; color: var(--cyan); }
.wyn-section .section-lede { font-size: 1rem; color: var(--slate-light); line-height: 1.65; margin-bottom: 24px; max-width: 720px; }

/* Items (accordion details) */
.wyn-section .items { display: grid; gap: 14px; }
.wyn-section .item { background: white; border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius); transition: border-color 0.2s, box-shadow 0.2s; overflow: hidden; }
.wyn-section .item:hover { border-color: var(--cyan); box-shadow: var(--shadow-md); }
.wyn-section .item summary { display: flex; align-items: center; gap: 14px; padding: 18px 22px; cursor: pointer; list-style: none; }
.wyn-section .item summary::-webkit-details-marker { display: none; }
.wyn-section .item-emoji { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; background: var(--cream-dark); }
.wyn-section .item[data-tone="ind"] .item-emoji { background: var(--cyan-tint); }
.wyn-section .item[data-tone="rev"] .item-emoji { background: var(--mint-light); }
.wyn-section .item[data-tone="warn"] .item-emoji { background: var(--coral-tint); }
.wyn-section .item-text { flex: 1; min-width: 0; }
.wyn-section .item-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--slate); }
.wyn-section .item-sub { font-size: 0.86rem; color: var(--slate-light); margin-top: 2px; }
.wyn-section .item-chev { font-size: 1.6rem; color: var(--slate-lighter); transition: transform 0.2s; }
.wyn-section .item[open] .item-chev { transform: rotate(90deg); color: var(--cyan); }
.wyn-section .item-body { padding: 0 22px 22px; color: var(--slate); font-size: 0.95rem; line-height: 1.7; border-top: 1px solid rgba(0,0,0,0.04); }
.wyn-section .item-body p { margin: 14px 0; }
.wyn-section .item-body p:first-child { margin-top: 14px; }

/* Bring callout */
.wyn-section .bring { margin-top: 16px; background: var(--cream); border-radius: var(--radius); padding: 16px 18px; }
.wyn-section .bring-label { font-family: var(--font-display); font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan-dark); margin-bottom: 8px; }
.wyn-section .bring ul { list-style: none; }
.wyn-section .bring li { font-size: 0.92rem; color: var(--slate-light); line-height: 1.55; padding: 4px 0 4px 18px; position: relative; }
.wyn-section .bring li::before { content: "•"; position: absolute; left: 4px; top: 4px; color: var(--cyan); font-weight: 700; }
.wyn-section .bring li strong { color: var(--slate); font-weight: 700; }

/* Next-steps section */
.next { max-width: 1080px; margin: 80px auto 0; padding: 0 28px 80px; }
.next-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.next-head .next-eyebrow { font-family: var(--font-display); font-size: 0.78rem; font-weight: 800; color: var(--cyan); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.next-head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.4rem); line-height: 1.15; color: var(--slate); margin-bottom: 12px; }
.next-head h2 em { color: var(--cyan); font-style: normal; }
.next-head p { color: var(--slate-light); font-size: 1.05rem; line-height: 1.65; }
.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.path { background: white; border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius-lg); padding: 28px 26px; display: flex; flex-direction: column; gap: 12px; transition: transform 0.2s, box-shadow 0.2s; }
.path:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.path-tag { display: inline-block; align-self: flex-start; font-size: 0.7rem; font-weight: 800; padding: 4px 10px; border-radius: var(--radius-full); letter-spacing: 0.5px; text-transform: uppercase; background: var(--cream); color: var(--slate-light); }
.path-tag.fast { background: var(--mint-light); color: var(--mint-text); }
.path-tag.full-service { background: var(--coral-tint); color: var(--coral); }
.path-tag.simple { background: rgba(8,145,178,0.08); color: var(--cyan-dark); }
.path-emoji { font-size: 2rem; }
.path h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--slate); }
.path p { color: var(--slate-light); font-size: 0.95rem; line-height: 1.6; flex: 1; }
.email-form { display: flex; gap: 6px; margin-top: auto; }
.email-form input { flex: 1; padding: 10px 14px; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius); font-size: 0.9rem; font-family: var(--font-body); }
.email-form input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(8,145,178,0.1); }
.email-form button { background: var(--slate); color: white; border: none; padding: 10px 18px; border-radius: var(--radius); font-size: 0.88rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); }
.email-form button:hover { background: var(--cyan-dark); }

@media (max-width: 880px) {
  .gate-card { grid-template-columns: 1fr; gap: 20px; }
  .paths { grid-template-columns: 1fr; }
}

/* ===== Waitlist page ===== */
    /* Hero strip */
    .hero-strip {
      padding: 60px 0 40px;
      background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-strip::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(8, 145, 178, 0.07) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-strip-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #064E3B 0%, #065F46 100%);
      padding: 8px 16px;
      border-radius: var(--radius-full);
      font-size: 0.78rem;
      font-weight: 700;
      color: #A7F3D0;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 18px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #34D399;
      border-radius: 50%;
      box-shadow: 0 0 8px #34D399;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.5;
      }
    }

    .hero-strip h1 {
      font-family: var(--font-display);
      font-size: 2.6rem;
      font-weight: 800;
      line-height: 1.15;
      color: var(--slate);
      margin-bottom: 14px;
    }

    .hero-strip h1 span {
      color: var(--cyan);
    }

    .hero-strip p {
      font-size: 1.1rem;
      color: var(--slate-light);
      line-height: 1.6;
      max-width: 580px;
      margin: 0 auto;
    }

    /* Main split */
    .main {
      padding: 60px 0 100px;
    }

    .split {
      display: grid;
      grid-template-columns: 1.35fr 1fr;
      gap: 48px;
      align-items: start;
    }

    /* Form card */
    .form-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 44px 44px 36px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .form-section {
      margin-bottom: 36px;
    }

    .form-section:last-of-type {
      margin-bottom: 28px;
    }

    .form-section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }

    .form-section-num {
      width: 28px;
      height: 28px;
      background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 0.82rem;
      color: white;
      flex-shrink: 0;
    }

    .form-section-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--slate);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .field {
      display: flex;
      flex-direction: column;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--slate);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .field label .optional {
      font-weight: 500;
      color: var(--slate-lighter);
      font-size: 0.78rem;
    }

    .field label .req {
      color: var(--coral);
      font-weight: 700;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 13px 16px;
      border-radius: var(--radius);
      border: 1.5px solid var(--border);
      background: var(--cream);
      font-family: var(--font-body);
      font-size: 16px;
      color: var(--slate);
      transition: all 0.2s ease;
      appearance: none;
      -webkit-appearance: none;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: var(--slate-lighter);
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--cyan);
      background: white;
      box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
    }

    .field textarea {
      resize: vertical;
      min-height: 100px;
      font-family: var(--font-body);
    }

    .field select {
      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' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 18px center;
      padding-right: 44px;
    }

    .field-hint {
      font-size: 0.78rem;
      color: var(--slate-lighter);
      margin-top: 6px;
      line-height: 1.5;
    }

    /* Radio group */
    .radio-group {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .radio-card {
      position: relative;
    }

    .radio-card input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .radio-card label {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 16px 12px;
      background: var(--cream);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--slate);
      gap: 4px;
      margin-bottom: 0;
    }

    .radio-card label .emoji {
      font-size: 1.4rem;
      margin-bottom: 4px;
    }

    .radio-card label:hover {
      border-color: var(--cyan);
      background: white;
    }

    .radio-card input:checked+label {
      border-color: var(--cyan);
      background: white;
      box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
      color: var(--cyan-dark);
    }

    .radio-group.group-error {
      outline: 2px solid #EF4444;
      outline-offset: 4px;
      border-radius: var(--radius);
    }

    /* Submit */
    .form-submit {
      margin-top: 8px;
    }

    .submit-btn {
      width: 100%;
      padding: 18px 24px;
      background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
      color: white;
      border: none;
      border-radius: var(--radius-full);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1.05rem;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(249, 115, 22, 0.42);
    }

    .submit-microcopy {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      font-size: 0.82rem;
      color: var(--slate-lighter);
      line-height: 1.5;
      text-align: center;
    }

    .submit-microcopy svg {
      flex-shrink: 0;
    }

    /* Sidebar */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: sticky;
      top: 100px;
    }

    .sidebar-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 28px 28px 26px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .sidebar-card-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 12px;
    }

    .sidebar-card h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--slate);
      margin-bottom: 18px;
      line-height: 1.3;
    }

    /* Perks list */
    .perks-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .perks-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.92rem;
      color: var(--slate);
      line-height: 1.5;
    }

    .perks-list li strong {
      display: block;
      font-weight: 700;
      color: var(--slate);
      margin-bottom: 2px;
    }

    .perks-list li span {
      color: var(--slate-light);
      font-weight: 500;
    }

    .perk-check {
      width: 22px;
      height: 22px;
      background: linear-gradient(135deg, var(--mint) 0%, var(--mint-dark) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
      color: white;
      font-size: 0.75rem;
      font-weight: 800;
      box-shadow: 0 3px 8px rgba(16, 185, 129, 0.3);
    }

    /* Security strip */
    .security-card {
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
      color: white;
    }

    .security-card .sidebar-card-eyebrow {
      color: var(--cyan-light);
    }

    .security-card h3 {
      color: white;
    }

    .security-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .security-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.4;
    }

    .security-list li strong {
      display: block;
      color: white;
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 2px;
    }

    .security-icon {
      width: 28px;
      height: 28px;
      background: rgba(34, 211, 238, 0.12);
      border: 1px solid rgba(34, 211, 238, 0.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.85rem;
    }

    /* What happens next */
    .timeline {
      list-style: none;
      position: relative;
      padding-left: 8px;
    }

    .timeline li {
      position: relative;
      padding-left: 36px;
      padding-bottom: 22px;
    }

    .timeline li:last-child {
      padding-bottom: 0;
    }

    .timeline li::before {
      content: '';
      position: absolute;
      left: 11px;
      top: 26px;
      bottom: -4px;
      width: 2px;
      background: var(--border);
    }

    .timeline li:last-child::before {
      display: none;
    }

    .timeline-dot {
      position: absolute;
      left: 0;
      top: 2px;
      width: 24px;
      height: 24px;
      background: white;
      border: 2px solid var(--cyan);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 0.72rem;
      color: var(--cyan);
      z-index: 1;
    }

    .timeline-title {
      font-weight: 700;
      font-size: 0.93rem;
      color: var(--slate);
      margin-bottom: 4px;
      display: block;
    }

    .timeline-meta {
      font-size: 0.82rem;
      color: var(--slate-light);
      line-height: 1.5;
    }

    /* Quote */
    .quote-card {
      background: linear-gradient(135deg, #F0FDFA 0%, #ECFEFF 100%);
      border: 1px solid rgba(8, 145, 178, 0.12);
    }

    .quote-text {
      font-family: var(--font-display);
      font-size: 1rem;
      line-height: 1.5;
      font-weight: 600;
      color: var(--slate);
      margin-bottom: 16px;
    }

    .quote-text::before {
      content: '"';
      font-size: 2.4rem;
      color: var(--cyan);
      line-height: 0;
      vertical-align: -0.4em;
      margin-right: 4px;
    }

    .quote-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .quote-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 0.78rem;
      color: white;
      flex-shrink: 0;
    }

    .quote-author-info {
      font-size: 0.82rem;
      line-height: 1.4;
    }

    .quote-author-info strong {
      display: block;
      font-weight: 700;
      color: var(--slate);
    }

    .quote-author-info span {
      color: var(--slate-light);
    }

    /* Footer */
    .footer {
      background: #0A0F1C;
      padding: 60px 0 36px;
      color: white;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand .logo {
      color: white;
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.65;
      max-width: 280px;
    }

    .footer-col h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: white;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col ul a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 0.92rem;
      transition: color 0.2s;
    }

    .footer-col ul a:hover {
      color: var(--cyan-light);
    }

    .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.78);
    }

    /* Responsive */
    @media (max-width: 980px) {
      .split {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .sidebar {
        position: static;
      }

      .form-card {
        padding: 32px 28px 28px;
      }

      .hero-strip h1 {
        font-size: 2.1rem;
      }
    }

    @media (max-width: 600px) {
      .form-grid {
        grid-template-columns: 1fr;
      }

      .radio-group {
        grid-template-columns: 1fr;
      }

      .security-list {
        grid-template-columns: 1fr;
      }

      .form-card {
        padding: 28px 22px 24px;
      }

      .hero-strip {
        padding: 40px 0 30px;
      }

      .hero-strip h1 {
        font-size: 1.75rem;
      }

      .hero-strip p {
        font-size: 1rem;
      }

      .main {
        padding: 40px 0 60px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      .form-section-num {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
      }

      .submit-btn {
        min-height: 52px;
      }
    }

    @media (max-width: 380px) {
      .container {
        padding: 0 16px;
      }

      .form-card {
        padding: 22px 16px 20px;
      }

      .hero-strip h1 {
        font-size: 1.55rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 2px;
    }

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

