/* ========================================================================
   BDTF Credit Monitoring, Variation 2: COACH
   Warm authority. Wellness app meets accountant's Sunday afternoon.
   Palette: White 50%, Navy 30%, Gold 15%, Black 5%
   ======================================================================== */

:root {
  --navy: #060a5b;
  --navy-soft: #1a1f6e;
  --navy-tint: #f3f4fb;
  --navy-panel: #0d1170;
  --gold: #edc131;
  --gold-soft: #fff4cc;
  --gold-deep: #c69a14;
  --white: #ffffff;
  --cream: #fbfaf6;
  --ink: #111111;
  --ink-soft: #3a3a3a;
  --line: #e4e6f0;
  --shadow-card: 0 8px 30px rgba(6, 10, 91, 0.08);
  --shadow-card-hover: 0 14px 44px rgba(6, 10, 91, 0.14);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1180px;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-accent: "Bebas Neue", "Oswald", Impact, sans-serif;
  --font-quote: "Open Sans", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  line-height: 1.18;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  letter-spacing: .14em;
  color: var(--navy);
  background: var(--gold);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eyebrow.muted {
  background: var(--navy-tint);
  color: var(--navy);
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link img {
  height: 38px;
  width: auto;
}

.logo-fallback {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  letter-spacing: -.01em;
}

.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  font-weight: 500;
  font-size: .98rem;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--navy);
}
.nav a:hover { background: var(--navy-tint); color: var(--navy); }
.nav a.active { color: var(--gold-deep); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--navy-panel); color: var(--white) !important; }

.menu-toggle {
  display: none;
  background: var(--navy);
  border: 0;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-panel);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(6,10,91,.25);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============ BADGES / DOTS ============ */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-accent);
  letter-spacing: .12em;
  border-radius: 999px;
  font-size: 1rem;
  margin-bottom: 18px;
}
.guarantee-badge::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--navy);
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%23edc131' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4 4 10-10'/></svg>");
  background-size: 70% 70%;
  background-repeat: no-repeat;
  background-position: center;
}

/* signature move: gold progress dots */
.progress-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.progress-dots .dot {
  width: 10px; height: 10px;
  background: var(--line);
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}
.progress-dots .dot.active { background: var(--gold); transform: scale(1.25); }
.progress-dots .dot.done   { background: var(--gold-deep); }

/* ============ HERO (Home) ============ */
.hero {
  padding: 56px 0 80px;
  background: var(--white);
}

.hero-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 56px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.hero-portrait-panel {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.hero-portrait-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.portrait-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  color: var(--gold);
  background: var(--navy);
  border-radius: 14px;
  padding: 24px;
  font-family: var(--font-accent);
  letter-spacing: .12em;
}

.portrait-fallback .ring {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: rgba(255,255,255,.08);
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: var(--gold);
}

.hero-portrait-panel::after {
  content: "";
  position: absolute;
  inset: auto -12px -12px auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  z-index: 2;
}

.hero-content h1 { margin-top: 12px; }
.hero-lede { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 28px; }

.hero-meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-size: .92rem;
}
.hero-meta .progress-dots { margin: 0; }

/* ============ INNER HERO (other pages) ============ */
.page-hero {
  padding: 56px 0 36px;
  background: var(--cream);
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.page-hero h1 { margin-top: 8px; }
.page-hero .portrait-mini {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 14px;
  aspect-ratio: 4/5;
  max-width: 360px;
  margin-left: auto;
  overflow: hidden;
}
.page-hero .portrait-mini img,
.page-hero .portrait-mini .portrait-fallback { border-radius: 12px; width: 100%; height: 100%; object-fit: cover; }

/* ============ SECTIONS ============ */
section { padding: 72px 0; }
section.tight { padding: 48px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p { font-size: 1.08rem; color: var(--ink-soft); }

/* ============ CARD GRIDS ============ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid var(--line);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card .step-num {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-accent);
  font-size: 1.4rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; }

/* How it works section */
.howitworks .card-row-dots {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ============ MEET DIANA STRIP ============ */
.diana-strip {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
  border-radius: 0;
}
.promise-quote { padding: 56px 0; background: #faf6e6; }
.promise-quote__card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(237,193,49,.6);
  border-left: 6px solid var(--gold);
  border-radius: 14px;
  padding: 40px 48px;
  box-shadow: 0 18px 40px -28px rgba(6,10,91,.35);
}
.promise-quote__card .eyebrow { display:inline-block; margin-bottom: 16px; }
.promise-quote__card blockquote { margin: 0; }
.promise-quote__card blockquote p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 18px;
}
.promise-quote__card blockquote cite {
  font-style: normal;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep, #b08a18);
  font-weight: 600;
}
.community-card-section { padding: 56px 0; }
.community-card-section .community-card {
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
.community-card-section .community-card::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at top right, rgba(237,193,49,.18), transparent 60%);
  pointer-events:none;
}
.community-card-section .community-card .badge {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  padding: 32px 28px;
  text-align:center;
  border-radius: 12px;
  letter-spacing: .04em;
  position:relative;z-index:1;
}
.community-card-section .community-card .badge small { display:block; font-family:'Poppins',sans-serif; font-size:11px; letter-spacing:.18em; margin-top:8px; font-weight:600; }
.community-card-section .community-card .body { position:relative;z-index:1; }
.community-card-section .community-card h2 { color: var(--white); margin: 8px 0 14px; }
.community-card-section .community-card p { color: rgba(255,255,255,.85); margin-bottom: 22px; }
@media (max-width: 720px) {
  .community-card-section .community-card { grid-template-columns: 1fr; padding: 32px; }
  .promise-quote__card { padding: 32px 28px; }
}
.diana-strip .container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}
.diana-strip h2 { color: var(--white); }
.diana-strip p { color: rgba(255,255,255,.85); font-size: 1.08rem; }
.diana-strip .portrait-mini {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 12px;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.diana-strip .portrait-mini img { border-radius: 12px; width: 100%; height: 100%; object-fit: cover; }
.diana-strip .portrait-mini .portrait-fallback { background: var(--cream); color: var(--navy); border-radius: 12px; }
.diana-strip .portrait-mini .ring { border-color: var(--navy); color: var(--navy); }
.diana-strip .btn-secondary { color: var(--gold); border-color: var(--gold); }
.diana-strip .btn-secondary:hover { background: var(--gold); color: var(--navy); }

/* ============ GUARANTEE CARD ============ */
.guarantee-card {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--white) 70%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
}
.guarantee-card .seal {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-accent);
  letter-spacing: .04em;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1;
  padding: 12px;
}
.guarantee-card .seal strong { display: block; font-size: 2.2rem; color: var(--gold); }
.guarantee-card h3 { margin-bottom: 6px; }
.guarantee-card p { margin: 0; color: var(--ink-soft); }

/* ============ TIER CARDS ============ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tier.recommended {
  border: 2px solid var(--gold);
  position: relative;
  transform: translateY(-6px);
}
.tier.recommended::before {
  content: "Most chosen";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-accent);
  letter-spacing: .12em;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: .92rem;
}
.tier h3 { margin: 0; }
.tier .price {
  font-family: var(--font-accent);
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
}
.tier .price small { font-size: 1rem; color: var(--ink-soft); display: block; margin-top: 6px; letter-spacing: 0; font-family: var(--font-body); }
.tier ul { list-style: none; padding: 0; margin: 0; }
.tier ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink-soft);
  font-size: .98rem;
  border-bottom: 1px solid var(--line);
}
.tier ul li:last-child { border-bottom: 0; }
.tier ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%23060a5b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4 4 10-10'/></svg>");
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: center;
}
.tier .btn { margin-top: auto; }

/* ============ TESTIMONIAL ============ */
.testimonials {
  background: var(--navy-tint);
  border-radius: var(--radius-lg);
  padding: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.testimonial-card .quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 18px;
}
.testimonial-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card .who .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-accent);
  font-size: 1.2rem;
}
.testimonial-card .who strong { display: block; color: var(--navy); }
.testimonial-card .who small { color: var(--ink-soft); }

/* ============ EDUCATION / BLOG CARDS ============ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.blog-card .thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  position: relative;
  overflow: hidden;
}
.blog-card .thumb::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .9;
}
.blog-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card .pill {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-accent);
  letter-spacing: .12em;
  padding: 2px 12px;
  border-radius: 999px;
  font-size: .85rem;
  align-self: flex-start;
}
.blog-card h3 { font-size: 1.15rem; margin: 0; }
.blog-card .meta { color: var(--ink-soft); font-size: .9rem; }
.blog-card .read-more { color: var(--navy); font-weight: 600; margin-top: auto; }

/* topic filter pills */
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.topic-pills .pill {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
  font-size: .95rem;
  font-family: var(--font-display);
}
.topic-pills .pill.active,
.topic-pills .pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ============ FAQ ============ */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
}
.faq details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 32px;
  font-size: 1.05rem;
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--gold-deep);
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 14px 0 0; }

/* ============ ABOUT / TIMELINE ============ */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px; top: 6px; bottom: 6px;
  width: 3px;
  background: var(--gold);
  border-radius: 999px;
}
.timeline-item {
  padding: 16px 0 24px 50px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 6px; top: 24px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--gold);
}
.timeline-item h4 {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: .04em;
}
.timeline-item p { margin: 0; }

/* ============ VALUES GRID (About) ============ */
.values-grid .card .step-num { background: var(--navy); color: var(--gold); }

/* ============ DISPUTE STEPS (Services) ============ */
.dispute-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.dispute-steps .step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.dispute-steps .step .num {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-accent);
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.dispute-steps .step h4 { margin-bottom: 6px; }
.dispute-steps .step p { margin: 0; font-size: .95rem; }

/* ============ SHOP / INTAKE FORM ============ */
.intake-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: flex-start;
}

.intake-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px;
}

.intake-progress {
  background: var(--navy-tint);
  border-radius: 999px;
  height: 10px;
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}
.intake-progress-bar {
  background: var(--gold);
  height: 100%;
  width: 33%;
  transition: width .35s ease;
  border-radius: 999px;
}

.step-indicators {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  font-size: .9rem;
  color: var(--ink-soft);
}
.step-indicators span { font-weight: 500; }
.step-indicators span.active { color: var(--navy); }
.step-indicators span.done { color: var(--gold-deep); }

.form-step { display: none; }
.form-step.active { display: block; animation: fadein .25s ease; }

@keyframes fadein {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step h2 { margin-bottom: 6px; }
.form-step .micro {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.form-row.single { grid-template-columns: 1fr; }

label {
  display: block;
  font-weight: 500;
  color: var(--navy);
  font-size: .95rem;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="file"],
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(237,193,49,.25);
}

input[type="file"] {
  padding: 10px;
  border-style: dashed;
  border-color: var(--navy);
  background: var(--navy-tint);
  cursor: pointer;
}

.upload-card {
  margin-bottom: 18px;
}
.upload-card label { margin-bottom: 8px; }

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}
.form-nav .btn { padding: 12px 26px; }

.intake-side .card {
  background: var(--cream);
  border: 1px solid var(--line);
}
.intake-side h3 { font-size: 1.1rem; margin-bottom: 8px; }
.intake-side ul { padding-left: 18px; margin: 0; color: var(--ink-soft); font-size: .95rem; }
.intake-side ul li { margin-bottom: 6px; }

/* success state */
.intake-success {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 48px;
  text-align: center;
}
.intake-success.shown { display: block; }
.intake-success .portrait-circle {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--navy);
  border: 4px solid var(--gold);
  overflow: hidden;
}
.intake-success .portrait-circle img,
.intake-success .portrait-circle .portrait-fallback {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.intake-success blockquote {
  font-family: var(--font-quote);
  font-style: italic;
  color: var(--navy);
  font-size: 1.2rem;
  margin: 18px auto 24px;
  max-width: 480px;
}

/* payment block */
.payment-card {
  background: var(--cream);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 32px;
}
.payment-card h3 { margin-bottom: 6px; }
.payment-card .row {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ============ CTA STRIP ============ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-panel) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  border-radius: var(--radius-lg);
}
.cta-strip h2 { color: var(--white); }
.cta-strip p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.cta-strip .btn-secondary { color: var(--gold); border-color: var(--gold); }
.cta-strip .btn-secondary:hover { background: var(--gold); color: var(--navy); }

/* ============ FOOTER ============ */
.guarantee-strip {
  background: var(--gold);
  padding: 18px 0;
  text-align: center;
  font-family: var(--font-accent);
  color: var(--navy);
  letter-spacing: .12em;
  font-size: 1.05rem;
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 56px 0 28px;
}
.site-footer h4 { color: var(--white); margin-bottom: 14px; font-size: 1rem; letter-spacing: .04em; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-grid a { color: rgba(255,255,255,.8); display: block; padding: 4px 0; font-size: .95rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid .mark img { height: 48px; }
.footer-grid .mark p { color: rgba(255,255,255,.65); margin-top: 14px; font-size: .92rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: var(--gold); }

/* ============ MOBILE NAV ============ */
@media (max-width: 880px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 22px rgba(6,10,91,.08);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; border-radius: 12px; }
  .nav-cta { text-align: center; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 32px;
  }
  .hero-portrait-panel { max-width: 360px; aspect-ratio: 4/5; margin: 0 auto; }
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero .portrait-mini { margin: 0 auto; }
  .grid-3, .tier-grid, .dispute-steps { grid-template-columns: 1fr; }
  .diana-strip .container { grid-template-columns: 1fr; }
  .diana-strip .portrait-mini { max-width: 280px; margin: 0 auto; }
  .intake-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px;
  }
  .guarantee-card .seal { margin: 0 auto; }
  .tier.recommended { transform: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero { padding: 32px 0 48px; }
  .hero-card { padding: 24px; }
  .testimonials { padding: 32px 20px; }
  section { padding: 48px 0; }
  .intake-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .btn { padding: 12px 22px; }
}

/* ============ UTIL ============ */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.lede { font-size: 1.15rem; color: var(--ink-soft); }
.pull-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.5;
}
