/* =========================================================
   Mission Hills Dental — Shared Stylesheet
   Brand: Dr. Arash Razi, DDS
   Palette: Navy + Gold + Cream
   ========================================================= */

:root {
  --navy-900: #061829;
  --navy-800: #0A2540;
  --navy-700: #11355C;
  --navy-100: #E5ECF4;
  --gold-600: #B8954A;
  --gold-500: #C9A961;
  --gold-200: #E8D5A3;
  --cream:    #FAF7F0;
  --white:    #FFFFFF;
  --ink:      #1A1A2E;
  --ink-soft: #4B5563;
  --ink-mute: #6B7280;
  --line:     #E5E7EB;
  --success:  #1F8A5B;
  --shadow-sm: 0 2px 8px rgba(10,37,64,0.06);
  --shadow-md: 0 8px 24px rgba(10,37,64,0.10);
  --shadow-lg: 0 20px 50px rgba(10,37,64,0.18);
  --radius:   12px;
  --radius-lg: 18px;
  --max:      1180px;
  --font-head:'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--navy-800); text-decoration: none; }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; }
p  { color: var(--ink-soft); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.78rem; font-weight: 600; color: var(--gold-600); margin-bottom: 12px;
}

/* ----- Top utility bar ----- */
.topbar {
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--gold-200); }
.topbar .pills { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar .pill { display: inline-flex; align-items: center; gap: 6px; }

/* ----- Header / Nav ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img.brand-logo {
  height: 56px; width: auto; display: block;
}
@media (max-width: 540px) {
  .brand img.brand-logo { height: 44px; }
}
/* Footer logo gets a white-tinted background since it sits on navy */
.site-footer .brand img.brand-logo {
  height: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 4px 10px;
}
/* Legacy classes kept in case any page still references them */
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: grid; place-items: center; color: var(--gold-500);
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
}
.brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 700; color: var(--navy-900); line-height: 1.1;
}
.brand-sub { font-size: 0.7rem; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--navy-900);
  position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--gold-600); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--gold-500);
}
.nav .btn { padding: 11px 18px; font-size: 0.92rem; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-900); margin: 5px 0; transition: 0.3s; }

@media (max-width: 880px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 16px 24px; gap: 14px; align-items: flex-start;
    display: none;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav .btn.nav-cta { display: none; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center; letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--gold-500); color: var(--navy-900);
  box-shadow: 0 6px 18px rgba(184,149,74,0.35);
}
.btn-primary:hover { background: var(--gold-600); color: var(--navy-900); transform: translateY(-2px); }
.btn-dark { background: var(--navy-800); color: var(--white); }
.btn-dark:hover { background: var(--navy-700); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { background: var(--white); color: var(--navy-900); }
.btn-ghost { background: transparent; color: var(--navy-800); border: 2px solid var(--navy-800); }
.btn-ghost:hover { background: var(--navy-800); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 9px 16px; font-size: 0.88rem; }

/* ----- Hero ----- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--white);
  padding: 90px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,169,97,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(201,169,97,0.10), transparent 40%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 .accent { color: var(--gold-500); font-style: italic; }
.hero p.lead { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 580px; margin-bottom: 28px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero .trust { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.hero .trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.hero .trust-item svg { width: 18px; height: 18px; color: var(--gold-500); }

.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold-500);
}
.hero-card h3 { color: var(--navy-900); margin-bottom: 6px; font-family: var(--font-body); font-weight: 700; font-size: 1.3rem; }
.hero-card p.sub { color: var(--ink-soft); margin-bottom: 18px; font-size: 0.95rem; }
.hero-card ul { list-style: none; margin: 0 0 22px; }
.hero-card ul li {
  padding: 8px 0 8px 28px; position: relative;
  color: var(--ink-soft); font-size: 0.95rem;
  border-bottom: 1px dashed var(--line);
}
.hero-card ul li:last-child { border-bottom: 0; }
.hero-card ul li::before {
  content: "✓"; position: absolute; left: 0; top: 6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-200); color: var(--navy-900);
  font-size: 0.75rem; font-weight: 700;
  display: grid; place-items: center;
}
.hero-card .btn { width: 100%; }
.hero-card .micro { text-align: center; font-size: 0.8rem; color: var(--ink-mute); margin-top: 10px; }

@media (max-width: 880px) {
  .hero { padding: 60px 0 70px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
}

/* ----- Sections ----- */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head p { font-size: 1.05rem; }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy-900); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.82); }

/* ----- Pain points ----- */
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.pain-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.pain-card .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-500); display: grid; place-items: center;
  margin-bottom: 16px; font-size: 1.4rem;
}
.pain-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; color: var(--navy-900); }
.pain-card p { font-size: 0.95rem; }

/* ----- Services grid ----- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.svc-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; border: 1px solid var(--line);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.svc-card .ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--navy-100); color: var(--navy-800);
  display: grid; place-items: center; margin-bottom: 18px;
  font-size: 1.6rem;
}
.svc-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.95rem; flex-grow: 1; margin-bottom: 16px; }
.svc-card .arrow {
  font-weight: 600; color: var(--navy-800); font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.svc-card .arrow:hover { color: var(--gold-600); }

/* ----- "Why us" / 3-column ----- */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.feat-item { padding: 16px; }
.feat-item .num {
  font-family: var(--font-head); font-size: 2.2rem; color: var(--gold-500);
  font-weight: 700; line-height: 1; margin-bottom: 8px;
}
.feat-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; color: var(--navy-900); }

/* ----- Testimonials ----- */
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.test-card {
  background: var(--white); border-radius: var(--radius); padding: 30px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.test-card .stars { color: var(--gold-500); margin-bottom: 12px; letter-spacing: 2px; }
.test-card blockquote {
  font-style: italic; color: var(--ink); margin-bottom: 18px; flex-grow: 1;
  font-size: 1rem; line-height: 1.7;
}
.test-card .who { display: flex; align-items: center; gap: 12px; }
.test-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-200), var(--gold-500));
  color: var(--navy-900); display: grid; place-items: center;
  font-weight: 700; font-size: 1rem;
}
.test-card .who strong { display: block; color: var(--navy-900); font-size: 0.95rem; }
.test-card .who span { font-size: 0.82rem; color: var(--ink-mute); }

/* ----- Stats strip ----- */
.stats-strip {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white); padding: 50px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px; text-align: center;
}
.stat .num {
  font-family: var(--font-head); font-size: 2.6rem; color: var(--gold-500);
  font-weight: 700; line-height: 1; margin-bottom: 6px;
}
.stat .label { font-size: 0.92rem; color: rgba(255,255,255,0.78); letter-spacing: 0.04em; }

/* ----- Final CTA strip ----- */
.cta-strip {
  background:
    radial-gradient(circle at 80% 30%, rgba(201,169,97,0.18), transparent 45%),
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,0.82); max-width: 640px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-strip .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----- Two-column content blocks ----- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.split.reverse > div:first-child { order: 2; }
@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > div:first-child { order: 0; }
}
.split ul.checklist { list-style: none; margin: 22px 0; }
.split ul.checklist li {
  padding: 10px 0 10px 34px; position: relative;
  color: var(--ink-soft); font-size: 1rem;
}
.split ul.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-500); color: var(--navy-900);
  font-size: 0.85rem; font-weight: 700;
  display: grid; place-items: center;
}
.split .visual {
  background: linear-gradient(135deg, var(--navy-100), var(--cream));
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  display: grid; place-items: center; padding: 30px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.split .visual .badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold-500); color: var(--navy-900);
  padding: 6px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.split .visual svg { width: 70%; max-width: 280px; }

/* ----- Footer ----- */
.site-footer {
  background: var(--navy-900); color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 {
  color: var(--white); font-family: var(--font-body); font-weight: 700;
  font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 0.04em;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-500); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: rgba(255,255,255,0.5); }
.footer-bottom {
  padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* ----- Page sub-hero (interior pages) ----- */
.subhero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white); padding: 70px 0 80px; text-align: center;
}
.subhero h1 { color: var(--white); margin-bottom: 14px; }
.subhero p { color: rgba(255,255,255,0.82); max-width: 700px; margin: 0 auto 24px; font-size: 1.1rem; }
.subhero .crumbs {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  margin-bottom: 18px; letter-spacing: 0.04em;
}
.subhero .crumbs a { color: var(--gold-200); }

/* ----- FAQ ----- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 14px; transition: box-shadow 0.2s ease;
}
.faq details[open] { box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--navy-900); font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-500); font-size: 1.6rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 14px; line-height: 1.7; }

/* ----- Pricing / financing cards ----- */
.fin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.fin-card {
  background: var(--white); border-radius: var(--radius); padding: 30px;
  border: 2px solid var(--line); position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.fin-card.featured { border-color: var(--gold-500); box-shadow: var(--shadow-md); }
.fin-card.featured::before {
  content: "Most Popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold-500); color: var(--navy-900); padding: 5px 14px;
  border-radius: 999px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.fin-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; margin-bottom: 6px; }
.fin-card .price {
  font-family: var(--font-head); font-size: 2.2rem; color: var(--navy-900);
  margin: 14px 0 4px; font-weight: 700;
}
.fin-card .price small { font-size: 1rem; color: var(--ink-mute); font-family: var(--font-body); font-weight: 400; }
.fin-card .price-sub { font-size: 0.85rem; color: var(--ink-mute); margin-bottom: 18px; }
.fin-card ul { list-style: none; margin-bottom: 22px; }
.fin-card ul li {
  padding: 8px 0 8px 24px; position: relative;
  color: var(--ink-soft); font-size: 0.93rem;
}
.fin-card ul li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  color: var(--gold-500); font-weight: 700;
}

/* ----- Forms ----- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--navy-900); margin-bottom: 6px;
}
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 14px; font-size: 1rem; font-family: var(--font-body);
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--white);
  color: var(--ink); transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201,169,97,0.15);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .consent { font-size: 0.82rem; color: var(--ink-mute); display: flex; gap: 8px; align-items: flex-start; }
.form .consent input { width: 16px; height: 16px; margin-top: 3px; }

/* ----- Quiz ----- */
.quiz-shell {
  background: linear-gradient(135deg, var(--cream), var(--white));
  min-height: 100vh; padding: 40px 0 80px;
}
.quiz-card {
  background: var(--white); max-width: 720px; margin: 0 auto;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 0; overflow: hidden;
}
.quiz-header {
  background: var(--navy-900); color: var(--white);
  padding: 24px 32px;
}
.quiz-header h2 {
  color: var(--white); font-family: var(--font-body); font-weight: 700;
  font-size: 1.15rem; margin-bottom: 12px;
}
.progress {
  height: 6px; background: rgba(255,255,255,0.15); border-radius: 999px; overflow: hidden;
}
.progress-bar {
  height: 100%; background: var(--gold-500); width: 0;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.progress-meta { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.quiz-body { padding: 40px 32px; }
.quiz-step { display: none; animation: fadeIn 0.35s ease; }
.quiz-step.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quiz-step h3 {
  font-family: var(--font-head); font-size: 1.7rem; margin-bottom: 8px; color: var(--navy-900);
}
.quiz-step p.helper { color: var(--ink-mute); margin-bottom: 24px; font-size: 0.95rem; }
.quiz-options { display: grid; gap: 12px; margin-bottom: 24px; }
.quiz-options label {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border: 2px solid var(--line); border-radius: 12px;
  cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease;
  font-size: 1rem; color: var(--ink);
}
.quiz-options label:hover { border-color: var(--gold-200); background: var(--cream); }
.quiz-options input[type="radio"], .quiz-options input[type="checkbox"] {
  width: 20px; height: 20px; accent-color: var(--gold-500); flex-shrink: 0;
}
.quiz-options input:checked + span { color: var(--navy-900); font-weight: 600; }
.quiz-options label:has(input:checked) { border-color: var(--gold-500); background: rgba(232,213,163,0.18); }
.quiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.quiz-nav .btn-back { background: transparent; color: var(--ink-mute); padding: 10px 0; }
.quiz-nav .btn-back:hover { color: var(--navy-900); }
.quiz-nav .btn-next { min-width: 160px; }
.quiz-result-card {
  background: linear-gradient(135deg, var(--cream), var(--white));
  border: 1px solid var(--gold-200); border-radius: var(--radius);
  padding: 24px; margin-bottom: 24px;
}
.quiz-result-card h4 {
  font-family: var(--font-body); font-weight: 700; color: var(--navy-900);
  font-size: 1.1rem; margin-bottom: 8px;
}
.quiz-trust-bar {
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
  padding: 18px 0; font-size: 0.82rem; color: var(--ink-mute);
}
.quiz-trust-bar span { display: inline-flex; align-items: center; gap: 6px; }
.quiz-trust-bar svg { width: 14px; height: 14px; color: var(--gold-500); }

/* ----- Video testimonials ----- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
@media (min-width: 1024px) {
  .video-grid { grid-template-columns: repeat(4, 1fr); }
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex; flex-direction: column;
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.video-card .video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--navy-900);
  cursor: pointer;
  overflow: hidden;
}
.video-card .video-wrap video,
.video-card .video-wrap img.poster {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-card .video-wrap .play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  background: rgba(201, 169, 97, 0.95);
  color: var(--navy-900);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, background 0.15s ease;
  pointer-events: none;
  padding-left: 4px;
}
.video-card .video-wrap:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold-500);
}
.video-card .video-wrap.playing .play-btn,
.video-card .video-wrap.playing img.poster { display: none; }
.video-card .video-meta { padding: 16px 18px 18px; }
.video-card .video-meta .stars { color: var(--gold-500); letter-spacing: 2px; font-size: 0.88rem; margin-bottom: 6px; }
.video-card .video-meta .name { font-family: var(--font-body); font-weight: 700; color: var(--navy-900); font-size: 1.02rem; }
.video-card .video-meta .who { font-size: 0.82rem; color: var(--ink-mute); margin-top: 2px; }
.video-card .video-meta .quote { font-size: 0.88rem; color: var(--ink-soft); margin-top: 10px; font-style: italic; line-height: 1.5; }

/* ----- Misc ----- */
.tag {
  display: inline-block; padding: 4px 12px; background: var(--gold-200);
  color: var(--navy-900); font-size: 0.78rem; font-weight: 600;
  border-radius: 999px; letter-spacing: 0.04em;
}
.callout {
  background: var(--cream); border-left: 4px solid var(--gold-500);
  padding: 22px 24px; border-radius: 8px; margin: 28px 