/* ══════════════════════════════════════════════════════════
   VRAIMONY — styles-v3.css
   Complete strategic redesign:
   - Decision object in hero
   - 4 questions structure
   - Receiver experience centrepiece
   - 3 families as decision patterns
   - Interactive readiness grader
   - What you get (concrete outputs)
   - What we do not do (brand honesty law)
   - Outcome honesty visible everywhere
   - ERF/.vrm in trust layer, not hero
   ══════════════════════════════════════════════════════════ */

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

body {
  font-family: 'Outfit', system-ui, sans-serif;
}

/* ── Override h2 default border for v3 sections ── */
.v3-four-questions h2,
.v3-demo-header h2,
.v3-families-header h2,
.v3-grader-copy h2,
.v3-outputs-section h2,
.v3-honesty-copy h2,
.v3-pricing-section h2,
.v3-email-h2,
.v3-fc-headline {
  border-left: none !important;
  padding-left: 0 !important;
}

/* ══════════════════════════════════════════
   HERO V3
   ══════════════════════════════════════════ */
.v3-hero {
  padding: clamp(36px, 5vw, 60px) !important;
  background: linear-gradient(145deg,
    rgba(255,255,255,0.99) 0%,
    rgba(251,247,232,0.97) 55%,
    rgba(248,252,255,0.97) 100%) !important;
  animation: v3HeroIn 0.5s ease both;
}
@keyframes v3HeroIn {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

.v3-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

/* Decision badge */
.v3-decision-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,147,23,0.09);
  border: 1px solid rgba(200,147,23,0.26);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #7a4f00;
  margin-bottom: 22px;
}
.v3-decision-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c89317;
  flex: none;
  box-shadow: 0 0 0 3px rgba(200,147,23,0.22);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(200,147,23,0.22); }
  50%      { box-shadow: 0 0 0 6px rgba(200,147,23,0.10); }
}

/* Headline */
.v3-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: #0b1828;
  margin: 0 0 20px;
}
.v3-headline em {
  font-style: italic;
  color: #b07500;
  text-decoration: underline wavy rgba(200,147,23,0.38);
  text-underline-offset: 6px;
}

.v3-sub {
  font-size: 1.06rem;
  line-height: 1.68;
  color: #3a4f68;
  max-width: 54ch;
  margin: 0 0 28px;
}

/* CTA group */
.v3-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}
.v3-btn-primary {
  min-height: 52px !important;
  padding: 14px 26px !important;
  font-size: 1.02rem !important;
  box-shadow: 0 14px 36px rgba(200,147,23,0.30) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.v3-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 44px rgba(200,147,23,0.36) !important;
}
.v3-btn-secondary { font-size: 0.96rem !important; }

/* Honesty line */
.v3-honesty-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #5a7080;
  font-weight: 500;
}
.v3-honesty-icon { color: #c89317; font-size: 1rem; }

/* Hero visual — readiness widget */
.v3-hero-visual {
  position: sticky;
  top: 80px;
}
.v3-readiness-widget {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid rgba(15,29,52,0.12);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 24px 52px rgba(15,29,52,0.10);
  margin-bottom: 10px;
}
.v3-rw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15,29,52,0.09);
}
.v3-rw-title { font-weight: 700; color: #0b1828; font-size: 0.9rem; }
.v3-rw-tag {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.v3-rw-tag.partial {
  background: rgba(200,147,23,0.12);
  color: #8a5e00;
  border: 1px solid rgba(200,147,23,0.26);
}
.v3-rw-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.v3-rw-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #3a4f68;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(247,250,254,0.8);
  border: 1px solid rgba(15,29,52,0.07);
}
.v3-rw-item.ok { background: rgba(24,168,112,0.06); border-color: rgba(24,168,112,0.16); }
.v3-rw-item.warn { background: rgba(220,100,30,0.06); border-color: rgba(220,100,30,0.16); }
.v3-rw-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
}
.v3-rw-dot.ok   { background: #18a870; }
.v3-rw-dot.warn { background: #e06020; }
.v3-rw-status { margin-left: auto; font-weight: 800; font-size: 0.82rem; }
.v3-rw-status.warn { color: #e06020; }
.v3-rw-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #5a7080;
  padding-top: 12px;
  border-top: 1px solid rgba(15,29,52,0.09);
}
.v3-rw-cta {
  font-weight: 800;
  color: #c89317 !important;
  font-size: 0.84rem;
}
.v3-hero-visual-note {
  font-size: 0.78rem;
  color: #7a90a0;
  text-align: center;
  font-style: italic;
  margin: 0;
}

/* ══════════════════════════════════════════
   PROOF BAR
   ══════════════════════════════════════════ */
.v3-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(15,29,52,0.10);
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 8px 24px rgba(15,29,52,0.06);
}
.v3-pb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 28px;
  text-align: center;
}
.v3-pb-item strong { font-size: 1rem; color: #0b1828; }
.v3-pb-item span   { font-size: 0.78rem; color: #5a7080; }
.v3-pb-sep { width: 1px; height: 34px; background: rgba(15,29,52,0.10); flex: none; }

/* ══════════════════════════════════════════
   4 QUESTIONS
   ══════════════════════════════════════════ */
.v3-four-questions { padding: 36px !important; }
.v3-fq-header { margin-bottom: 28px; }
.v3-fq-header h2 { font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(1.4rem,2.4vw,1.9rem); }
.v3-fq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.v3-fq-card {
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(15,29,52,0.09);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(15,29,52,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.v3-fq-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(15,29,52,0.10); }
.v3-fq-honesty { border-color: rgba(200,147,23,0.22); background: linear-gradient(180deg,rgba(255,255,255,0.98),rgba(255,248,225,0.94)); }
.v3-fq-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(200,147,23,0.25);
  line-height: 1;
  font-family: 'Instrument Serif', Georgia, serif;
}
.v3-fq-card h3 { font-size: 0.96rem; color: #0b1828; margin: 0; line-height: 1.4; }
.v3-fq-btn { margin-top: auto; width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   REVIEW DEMO
   ══════════════════════════════════════════ */
.v3-demo-section { padding: 40px !important; }
.v3-demo-header { margin-bottom: 32px; }
.v3-demo-header h2 { font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(1.4rem,2.2vw,1.9rem); }

.v3-demo-flow {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 32px;
}
.v3-demo-step { flex: 1; }
.v3-demo-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200,147,23,0.12);
  border: 1px solid rgba(200,147,23,0.28);
  color: #c89317;
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.v3-demo-step-card {
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(15,29,52,0.10);
  border-radius: 18px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 8px 22px rgba(15,29,52,0.06);
}
.v3-demo-arrow {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: rgba(200,147,23,0.50);
  font-weight: 300;
  flex: none;
  padding-top: 40px;
}
.v3-demo-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15,29,52,0.08);
}
.v3-demo-mock-title { font-size: 0.86rem; font-weight: 700; color: #0b1828; }
.v3-status-badge {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.v3-status-badge.ready {
  background: rgba(24,168,112,0.12);
  color: #0e7a52;
  border: 1px solid rgba(24,168,112,0.24);
}
.v3-demo-mock-summary p { font-size: 0.84rem; color: #5a7080; margin: 6px 0 0; }
.v3-demo-mock-label {
  font-size: 0.74rem;
  color: #8a9aaa;
  font-style: italic;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(15,29,52,0.07);
}
.v3-demo-mock-states { display: flex; flex-direction: column; gap: 8px; }
.v3-state-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #3a4f68;
}
.v3-state-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
}
.v3-state-dot.pass     { background: #18a870; }
.v3-state-dot.declared { background: #c89317; }
.v3-state-dot.unverified { background: #8a9aaa; }
.v3-demo-mock-actions { display: flex; flex-direction: column; gap: 8px; }
.v3-mock-btn {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,29,52,0.12);
  background: rgba(247,250,254,0.9);
  font-size: 0.86rem;
  font-weight: 600;
  color: #1a2d47;
  cursor: default;
  text-align: left;
}
.v3-mock-btn.ack   { background: rgba(24,168,112,0.08); border-color: rgba(24,168,112,0.22); color: #0a6b46; }
.v3-mock-btn.mer   { background: rgba(200,147,23,0.08); border-color: rgba(200,147,23,0.22); color: #7a4f00; }
.v3-mock-btn.export{ background: rgba(60,100,180,0.06); border-color: rgba(60,100,180,0.18); color: #1a3a70; }

/* Both sides section */
.v3-demo-footer { border-top: 1px solid rgba(15,29,52,0.09); padding-top: 24px; }
.v3-demo-both-sides {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.v3-side { padding: 20px; }
.v3-side strong { display: block; margin-bottom: 12px; font-size: 0.96rem; color: #0b1828; }
.v3-side ul { list-style: none; padding: 0; margin: 0; }
.v3-side ul li { font-size: 0.88rem; color: #5a7080; padding: 5px 0; }
.v3-side ul li::before { content: "✓ "; color: #18a870; font-weight: 800; }
.v3-sides-divider { width: 1px; background: rgba(15,29,52,0.10); margin: 20px 0; }
.v3-demo-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   THREE FAMILIES
   ══════════════════════════════════════════ */
.v3-families-header { margin-bottom: 28px; }
.v3-families-header h2 { font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(1.4rem,2.2vw,1.9rem); }
.v3-families-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-bottom: 20px;
}
.v3-family-card {
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(15,29,52,0.10);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(15,29,52,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease;
}
.v3-family-card:hover { transform: translateY(-4px); }
.v3-family-primary {
  border-color: rgba(200,147,23,0.26);
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(255,248,225,0.93) 100%);
  box-shadow: 0 18px 44px rgba(200,147,23,0.10);
}
.v3-family-icon { font-size: 1.8rem; }
.v3-family-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.70rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}
.primary-label   { background: rgba(200,147,23,0.12); color: #8a5e00; border: 1px solid rgba(200,147,23,0.24); }
.secondary-label { background: rgba(60,100,180,0.10); color: #2a4a90; border: 1px solid rgba(60,100,180,0.20); }
.tertiary-label  { background: rgba(100,60,180,0.09); color: #4a2a80; border: 1px solid rgba(100,60,180,0.18); }
.v3-family-card h3 { font-size: 1.12rem; color: #0b1828; margin: 0; }
.v3-family-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.v3-family-list li { font-size: 0.86rem; color: #5a7080; }
.v3-family-list li::before { content: "→ "; color: #c89317; font-weight: 800; }
.v3-family-btn { margin-top: auto; }
.v3-families-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,147,23,0.07);
  border: 1px solid rgba(200,147,23,0.18);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #5a4000;
}
.v3-families-note-icon { color: #c89317; font-size: 1rem; flex: none; }

/* ══════════════════════════════════════════
   READINESS GRADER
   ══════════════════════════════════════════ */
.v3-grader-section {
  background: linear-gradient(145deg,
    rgba(18,38,66,0.97) 0%,
    rgba(10,22,42,0.99) 100%) !important;
  border-color: rgba(200,147,23,0.22) !important;
  padding: 40px !important;
}
.v3-grader-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.v3-grader-copy .kicker { color: #e8a820 !important; }
.v3-grader-copy h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.4rem,2.2vw,1.9rem);
  color: #fff !important;
  margin-bottom: 14px;
}
.v3-grader-copy .muted { color: rgba(200,220,250,0.75) !important; margin-bottom: 22px; }
.v3-grader-outcomes { display: flex; flex-direction: column; gap: 10px; }
.v3-outcome {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.v3-outcome strong { color: #fff; min-width: 80px; }
.v3-outcome span   { color: rgba(200,220,250,0.70); }
.v3-outcome-dot {
  width: 10px; height: 10px; border-radius: 50%; flex: none;
}
.v3-outcome-dot.weak    { background: #e05050; }
.v3-outcome-dot.partial { background: #c89317; }
.v3-outcome-dot.ready   { background: #18a870; }

/* Grader widget */
.v3-grader-widget {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 28px;
}
.v3-grader-progress {
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  margin-bottom: 24px;
  overflow: hidden;
}
.v3-grader-bar {
  height: 100%;
  background: linear-gradient(90deg, #c89317, #e8a820);
  border-radius: 99px;
  transition: width 0.35s ease;
}
.v3-grader-q { display: none; }
.v3-grader-q.active { display: block; animation: fadeQ 0.25s ease; }
@keyframes fadeQ { from{opacity:0;transform:translateX(8px)} to{opacity:1;transform:translateX(0)} }
.v3-q-text { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 16px; line-height: 1.5; }
.v3-q-options { display: flex; flex-direction: column; gap: 8px; }
.v3-q-btn {
  text-align: left;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  color: rgba(220,235,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.v3-q-btn:hover {
  background: rgba(200,147,23,0.18);
  border-color: rgba(200,147,23,0.36);
  color: #fff;
}

/* Grader result */
.v3-grader-result {
  text-align: center;
  animation: fadeQ 0.3s ease;
}
.v3-result-icon { font-size: 2.4rem; margin-bottom: 10px; }
.v3-result-label {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.v3-result-label.result-weak    { color: #f08080; }
.v3-result-label.result-partial { color: #e8a820; }
.v3-result-label.result-ready   { color: #5ee0a0; }
.v3-result-text { color: rgba(200,220,250,0.78); font-size: 0.9rem; margin-bottom: 18px; }
.v3-result-cta { width: 100%; justify-content: center; margin-bottom: 10px; }
.v3-result-retry { width: 100%; justify-content: center; color: rgba(200,220,250,0.60) !important; }

/* ══════════════════════════════════════════
   OUTPUTS SECTION
   ══════════════════════════════════════════ */
.v3-outputs-sub { margin-bottom: 24px; max-width: 60ch; }
.v3-outputs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.v3-output-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,29,52,0.09);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(15,29,52,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.18s ease;
}
.v3-output-card:hover { transform: translateY(-3px); }
.v3-output-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(200,147,23,0.22);
  font-family: 'Instrument Serif', Georgia, serif;
  line-height: 1;
}
.v3-output-icon { font-size: 1.6rem; }
.v3-output-card h3 { font-size: 0.96rem; color: #0b1828; margin: 0; }
.v3-output-formats { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 8px; }
.v3-fmt {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(200,147,23,0.09);
  border: 1px solid rgba(200,147,23,0.20);
  font-size: 0.70rem;
  font-weight: 800;
  color: #8a5e00;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.v3-outputs-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   WHAT WE DO NOT DO
   ══════════════════════════════════════════ */
.v3-honesty-section {
  background: linear-gradient(145deg,
    rgba(8,18,36,0.98) 0%,
    rgba(14,28,52,0.97) 100%) !important;
  border-color: rgba(200,147,23,0.20) !important;
  padding: 44px !important;
}
.v3-honesty-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 44px;
  align-items: start;
}
.v3-honesty-copy .kicker { color: #e8a820 !important; }
.v3-honesty-copy h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.4rem,2.2vw,1.9rem);
  color: #fff !important;
  margin-bottom: 14px;
}
.v3-honesty-copy .muted { color: rgba(200,220,250,0.72) !important; margin-bottom: 22px; }
.v3-honesty-core {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(200,147,23,0.12);
  border: 1px solid rgba(200,147,23,0.26);
  border-radius: 14px;
  padding: 16px 18px;
}
.v3-hc-icon { color: #e8a820; font-size: 1.1rem; flex: none; margin-top: 1px; }
.v3-honesty-core p { color: rgba(255,240,200,0.90) !important; font-size: 0.94rem; margin: 0; font-style: italic; }
.v3-honesty-list-wrap { display: flex; flex-direction: column; gap: 18px; }
.v3-dont-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
}
.v3-dont-x {
  font-size: 1.1rem;
  color: rgba(240,120,120,0.80);
  font-weight: 800;
  flex: none;
  width: 24px;
  text-align: center;
  margin-top: 1px;
}
.v3-dont-item strong { display: block; color: #fff; font-size: 0.92rem; margin-bottom: 5px; }
.v3-dont-item .muted { color: rgba(180,200,230,0.65) !important; font-size: 0.84rem; margin: 0; }

/* ══════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════ */
.v3-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  align-items: start;
}
.v3-price-card {
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(15,29,52,0.10);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(15,29,52,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.v3-price-featured {
  border-color: rgba(200,147,23,0.30);
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,248,225,0.94));
  box-shadow: 0 20px 48px rgba(200,147,23,0.12);
  transform: scale(1.02);
}
.v3-price-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(200,147,23,0.14);
  border: 1px solid rgba(200,147,23,0.28);
  font-size: 0.70rem;
  font-weight: 800;
  color: #8a5e00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-bottom: 2px;
}
.v3-price-tier { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: #c89317; }
.v3-price-card h3 { font-size: 1.1rem; color: #0b1828; margin: 0; }
.v3-price-amount { font-size: 1.5rem; font-weight: 800; color: #0b1828; }
.v3-price-list { list-style: none; padding: 0; margin: 0; }
.v3-price-list li { font-size: 0.86rem; color: #3a4f68; padding: 4px 0; }

/* ══════════════════════════════════════════
   EMAIL SECTION
   ══════════════════════════════════════════ */
.v3-email-section {
  background: linear-gradient(145deg, rgba(18,38,66,0.97), rgba(10,22,42,0.99)) !important;
  border-color: rgba(200,147,23,0.22) !important;
  padding: 44px !important;
}
.v3-email-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.v3-email-kicker { color: #e8a820 !important; }
.v3-email-h2 {
  font-family: 'Instrument Serif', Georgia, serif !important;
  font-size: clamp(1.4rem,2.2vw,1.9rem) !important;
  color: #fff !important;
  margin-bottom: 12px;
}
.v3-email-bullets { list-style: none; padding: 0; margin: 14px 0 0; }
.v3-email-bullets li { color: rgba(210,230,255,0.82); font-size: 0.88rem; padding: 5px 0; font-weight: 500; }
.v3-email-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
}
.v3-email-success {
  background: rgba(24,168,112,0.14);
  border: 1px solid rgba(24,168,112,0.28);
  border-radius: 12px;
  color: #7ee8ba;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* ══════════════════════════════════════════
   TRUST GRID
   ══════════════════════════════════════════ */
.v3-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.v3-trust-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,29,52,0.09);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(15,29,52,0.06);
  transition: transform 0.18s ease;
}
.v3-trust-card:hover { transform: translateY(-3px); }
.v3-trust-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.v3-trust-card h3 { font-size: 0.94rem; margin-bottom: 8px; }

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.v3-faq-list { display: flex; flex-direction: column; gap: 2px; }
.v3-faq-item {
  border-radius: 14px;
  overflow: hidden;
  border-top: 1px solid rgba(15,29,52,0.09) !important;
}
.v3-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #0b1828;
  padding: 16px 18px;
  font-size: 0.97rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.v3-faq-item summary::-webkit-details-marker { display: none; }
.v3-faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: #c89317;
  flex: none;
  transition: transform 0.2s ease;
}
.v3-faq-item[open] summary::after { transform: rotate(45deg); }
.v3-faq-item[open] summary { background: rgba(200,147,23,0.06); }
.v3-faq-answer {
  padding: 0 18px 18px;
  color: #3a4f68;
  font-size: 0.94rem;
  line-height: 1.66;
  animation: v3FaqOpen 0.2s ease;
}
@keyframes v3FaqOpen {
  from { opacity:0; transform:translateY(-4px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ══════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════ */
.v3-final-cta {
  text-align: center;
  background: linear-gradient(145deg,
    rgba(200,147,23,0.09) 0%,
    rgba(255,255,255,0.98) 50%,
    rgba(200,147,23,0.06) 100%) !important;
  border-color: rgba(200,147,23,0.24) !important;
  padding: clamp(44px,6vw,72px) clamp(24px,5vw,64px) !important;
}
.v3-fc-inner { max-width: 620px; margin: 0 auto; }
.v3-fc-headline {
  font-family: 'Instrument Serif', Georgia, serif !important;
  font-size: clamp(1.9rem,3.8vw,3rem) !important;
  color: #0b1828 !important;
  line-height: 1.12 !important;
  margin-bottom: 16px !important;
}
.v3-fc-sub { font-size: 1.06rem; color: #3a4f68; margin-bottom: 28px; }
.v3-fc-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.v3-fc-main { min-width: 260px; }
.v3-fc-honesty {
  font-size: 0.80rem;
  color: #7a9090;
  margin-bottom: 16px;
}
.v3-fc-honesty a { color: #c89317; text-decoration: underline; }
.v3-fc-trust-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.80rem;
  color: #8a9aaa;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.v3-footer {
  margin-top: 60px;
  border-top: 1px solid rgba(15,29,52,0.10);
  background: linear-gradient(180deg, rgba(247,250,254,0.99), rgba(240,246,255,0.97));
}
.v3-footer-inner {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 44px;
  padding: 52px clamp(24px,5vw,64px) 40px;
  max-width: 1180px;
  margin: 0 auto;
}
.v3-footer-brand .brand { font-size: 1.2rem; font-weight: 800; color: #0b1828 !important; }
.v3-footer-tag { font-size: 0.86rem; color: #5a7080; margin: 8px 0 6px; }
.v3-footer-philosophy { font-size: 0.80rem; color: #8a9aaa; font-style: italic; line-height: 1.5; margin: 0; }
.v3-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.v3-footer-col { display: flex; flex-direction: column; gap: 7px; }
.v3-footer-col strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #0b1828; margin-bottom: 4px; }
.v3-footer-col a { font-size: 0.86rem; color: #5a7080 !important; transition: color 0.14s ease; }
.v3-footer-col a:hover { color: #c89317 !important; }
.v3-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px clamp(24px,5vw,64px);
  border-top: 1px solid rgba(15,29,52,0.09);
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.v3-footer-bottom span { font-size: 0.80rem; color: #8a9aaa; }
.v3-footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.v3-footer-badges span {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,29,52,0.10);
  font-size: 0.74rem;
  font-weight: 700;
  color: #3a4f68;
}

/* ══════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════ */
.hidden { display: none !important; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1060px) {
  .v3-fq-grid       { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .v3-outputs-grid  { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .v3-trust-grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .v3-hero-inner      { grid-template-columns: 1fr; }
  .v3-hero-visual     { position: static; }
  .v3-grader-inner    { grid-template-columns: 1fr; }
  .v3-honesty-inner   { grid-template-columns: 1fr; }
  .v3-email-inner     { grid-template-columns: 1fr; }
  .v3-families-grid   { grid-template-columns: 1fr; }
  .v3-pricing-grid    { grid-template-columns: 1fr; }
  .v3-price-featured  { transform: scale(1); }
  .v3-demo-flow       { flex-direction: column; }
  .v3-demo-arrow      { transform: rotate(90deg); align-self: center; padding: 0; }
  .v3-demo-both-sides { grid-template-columns: 1fr; }
  .v3-sides-divider   { height: 1px; width: 100%; margin: 0; }
  .v3-footer-inner    { grid-template-columns: 1fr; }
  .v3-footer-cols     { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .v3-pb-sep          { display: none; }
}

@media (max-width: 640px) {
  .v3-fq-grid     { grid-template-columns: 1fr; }
  .v3-outputs-grid{ grid-template-columns: 1fr; }
  .v3-trust-grid  { grid-template-columns: 1fr; }
  .v3-cta-group   { flex-direction: column; align-items: stretch; }
  .v3-cta-group .btn { width: 100%; justify-content: center; }
  .v3-fc-buttons  { flex-direction: column; align-items: stretch; }
  .v3-fc-buttons .btn { width: 100%; justify-content: center; }
  .v3-proof-bar   { flex-direction: column; gap: 6px; }
  .v3-footer-cols { grid-template-columns: 1fr 1fr; }
  .v3-footer-bottom { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 420px) {
  .v3-headline    { font-size: 2rem; }
  .v3-footer-cols { grid-template-columns: 1fr; }
}
