/* ============================================
   COLD CASE CLUB — Dark Detective Noir Design
   ============================================ */

/* --- Tokens --- */
:root {
  --bg:          #0a0a0f;
  --bg-card:     #12121a;
  --bg-elevated: #1a1a26;
  --gold:        #c9a84c;
  --gold-dim:    #a08732;
  --red:         #8b2020;
  --red-bright:  #c62828;
  --text:        #e2e2e8;
  --text-muted:  #9494a8;
  --text-dim:    #4a4a5e;
  --border:      #2a2a3a;
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:   'Courier Prime', 'Courier New', Courier, monospace;
  --max-w:       1140px;
  --radius:      8px;
  --shadow:      0 4px 24px rgba(0,0,0,.4);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: #e6c45a; }
ul { list-style: none; }

/* --- Utilities --- */
.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; }
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: .3rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--gold);
  color: #0a0a0f;
}
.btn-primary:hover {
  background: #e6c45a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-dim);
}
.btn-outline:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
}
.btn-large { padding: 1rem 2.8rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  backdrop-filter: blur(12px);
  background: rgba(10,10,15,.85);
  border-bottom: 1px solid rgba(42,42,58,.4);
  transition: all .3s;
}
.nav.scrolled {
  padding: .7rem 0;
  background: rgba(10,10,15,.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  width: 92%;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-muted); font-size: .9rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: .5rem; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* --- Hero --- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,32,32,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red-bright);
  background: rgba(198,40,40,.1);
  border: 1px solid rgba(198,40,40,.3);
  padding: .4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-meta-item { text-align: center; }
.hero-meta-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-meta-label {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Hero visual */
.hero-visual { position: relative; z-index: 1; }
.evidence-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}
.evidence-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .5s ease;
}
.evidence-card:nth-child(1) {
  width: 75%;
  top: 5%;
  left: 0;
  transform: rotate(-3deg);
  z-index: 3;
}
.evidence-card:nth-child(2) {
  width: 70%;
  top: 15%;
  right: 0;
  transform: rotate(2deg);
  z-index: 2;
  background: var(--bg-elevated);
}
.evidence-card:nth-child(3) {
  width: 65%;
  bottom: 5%;
  left: 10%;
  transform: rotate(-1deg);
  z-index: 1;
}
.evidence-card-label {
  font-family: var(--font-mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--red-bright);
  margin-bottom: .8rem;
}
.evidence-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.evidence-card-text {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.evidence-stamp {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--red-bright);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: .3rem .7rem;
  border-radius: 2px;
  transform: rotate(3deg);
}

/* --- Social Proof Bar --- */
.proof-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-item {
  text-align: center;
  padding: 0 1rem;
}
.proof-value {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}
.proof-label {
  font-size: .8rem;
  color: var(--text-muted);
}

/* --- How It Works --- */
.how-it-works {
  padding: 6rem 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
}
.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-elevated);
  -webkit-text-stroke: 1px var(--gold-dim);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.step-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.step-card h3 { margin-bottom: .6rem; }
.step-card p { color: var(--text-muted); font-size: .95rem; }

/* --- Evidence Section --- */
.evidence-section {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.evidence-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: border-color .3s;
}
.evidence-item:hover { border-color: var(--gold-dim); }

/* Evidence Photo Gallery */
.evidence-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.evidence-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.evidence-photo:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold-dim);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 20px rgba(201,168,76,.08);
}
.evidence-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(.85) contrast(1.05);
  transition: filter .4s ease;
}
.evidence-photo:hover img {
  filter: saturate(1) contrast(1.1);
}
.evidence-photo-caption {
  display: block;
  padding: .8rem 1rem;
  font-family: var(--font-mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  background: var(--bg-card);
}
@media (max-width: 900px) {
  .evidence-photos { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .evidence-photo img { height: 200px; }
}

.evidence-item-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(201,168,76,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.evidence-item h4 { font-family: var(--font-body); font-weight: 600; font-size: .95rem; margin-bottom: .3rem; }
.evidence-item p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* --- Pricing --- */
.pricing {
  padding: 6rem 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.price-card:hover {
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201,168,76,.1);
}
.price-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0a0f;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  padding: .35rem 1rem;
  border-radius: 2px;
}
.price-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: .3rem;
}
.price-desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .3rem;
}
.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.price-save {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  padding: .2rem .6rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.price-features {
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.price-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-muted);
  padding: .45rem 0;
}
.price-features li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  font-size: .8rem;
}

/* --- Price Anchoring & Guarantee --- */
.price-strike {
  font-size: 1.4rem;
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: .4rem;
}
.price-guarantee {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  opacity: .8;
}

/* --- Urgency Bar --- */
.urgency-bar {
  background: var(--red);
  padding: .65rem 0;
  text-align: center;
  position: relative;
  z-index: 101;
}
.urgency-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.urgency-bar p {
  font-size: .85rem;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
.urgency-bar strong { color: #fff; }
.urgency-countdown {
  font-family: var(--font-mono);
  font-weight: 700;
  background: rgba(0,0,0,.25);
  padding: .15rem .5rem;
  border-radius: 3px;
  margin: 0 .3rem;
  font-size: .8rem;
}
.urgency-link {
  color: #fff !important;
  text-decoration: underline;
  font-weight: 600;
  margin-left: .3rem;
}
.urgency-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: .2rem .4rem;
}
.urgency-close:hover { color: #fff; }

/* --- Guarantee Section --- */
.guarantee-section {
  padding: 4rem 0;
}
.guarantee-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.guarantee-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.guarantee-box h3 {
  margin-bottom: .8rem;
}
.guarantee-box p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* --- Stripe Embedded Checkout Modal --- */
.checkout-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.checkout-overlay.show { display: flex; }
.checkout-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.checkout-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  background: #fafafa;
  border-radius: 12px 12px 0 0;
}
.checkout-modal-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0f;
}
.checkout-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: .2rem .5rem;
  line-height: 1;
}
.checkout-modal-close:hover { color: #000; }
#checkout-container {
  min-height: 400px;
}
.checkout-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  gap: 1rem;
}
.checkout-loading.hidden { display: none; }
.checkout-loading p {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.checkout-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e5e5;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Sticky Mobile CTA --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10,10,15,.95);
  backdrop-filter: blur(8px);
  padding: .8rem 1rem;
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.mobile-cta.visible {
  transform: translateY(0);
}

/* --- Exit Intent Popup --- */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.exit-popup-overlay.show { display: flex; }
.exit-popup {
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 460px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.exit-popup-close {
  position: absolute;
  top: .8rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
}
.exit-popup h3 {
  font-size: 1.4rem;
  margin-bottom: .6rem;
}
.exit-popup p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .mobile-cta { display: block; }
  .urgency-bar p { font-size: .75rem; }
  .urgency-close { right: .3rem; }
}
@media (max-width: 600px) {
  .urgency-countdown { display: block; margin: .3rem auto; }
}

/* --- Testimonials --- */
.testimonials {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-author {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial-role {
  font-size: .75rem;
  color: var(--text-dim);
}

/* --- FAQ --- */
.faq { padding: 6rem 0; }
.faq-list { max-width: 720px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.3rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  color: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.3rem;
}
.faq-answer p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-content h2 { margin-bottom: 1rem; }
.cta-content p { color: var(--text-muted); margin-bottom: 2rem; }

/* Email capture */
.email-form {
  display: flex;
  gap: .75rem;
  max-width: 480px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  padding: .85rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
.email-form input::placeholder { color: var(--text-dim); }
.email-form input:focus { border-color: var(--gold-dim); }
.email-note {
  font-size: .75rem;
  color: var(--text-dim);
  margin-top: .6rem;
}

/* --- Footer --- */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-text {
  font-size: .85rem;
  color: var(--text-dim);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: .8rem;
}
.footer-links a {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ============================================
   ANIMATION SYSTEM — Dark Detective Noir
   ============================================ */

/* --- Reduced Motion: respect accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .particles-canvas { display: none !important; }
}

/* --- Keyframes --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideReveal {
  from { opacity: 0; transform: translateY(60px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes stampSlam {
  0%   { opacity: 0; transform: rotate(12deg) scale(3); }
  60%  { opacity: 1; transform: rotate(-2deg) scale(.95); }
  80%  { transform: rotate(1deg) scale(1.02); }
  100% { transform: rotate(3deg) scale(1); }
}
@keyframes typewriterCursor {
  0%, 100% { border-color: var(--gold); }
  50%      { border-color: transparent; }
}
@keyframes shimmerGold {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,.05); }
  50%      { box-shadow: 0 0 40px rgba(201,168,76,.15); }
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes evidenceShuffle1 {
  0%   { transform: rotate(-3deg) translateY(0); }
  50%  { transform: rotate(-1deg) translateY(-6px); }
  100% { transform: rotate(-3deg) translateY(0); }
}
@keyframes evidenceShuffle2 {
  0%   { transform: rotate(2deg) translateY(0); }
  50%  { transform: rotate(3deg) translateY(-4px); }
  100% { transform: rotate(2deg) translateY(0); }
}
@keyframes evidenceShuffle3 {
  0%   { transform: rotate(-1deg) translateY(0); }
  50%  { transform: rotate(0deg) translateY(-5px); }
  100% { transform: rotate(-1deg) translateY(0); }
}
@keyframes countFlicker {
  0%, 100% { opacity: 1; }
  92%      { opacity: 1; }
  93%      { opacity: .4; }
  94%      { opacity: 1; }
  96%      { opacity: .6; }
  97%      { opacity: 1; }
}
@keyframes scanline {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes borderGlow {
  0%, 100% { border-color: var(--border); }
  50%      { border-color: var(--gold-dim); }
}
@keyframes revealLine {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-1%, -1%); }
  30% { transform: translate(1%, 2%); }
  50% { transform: translate(-2%, 1%); }
  70% { transform: translate(2%, -1%); }
  90% { transform: translate(1%, 1%); }
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .1s linear;
  pointer-events: none;
}

/* --- Film Grain Overlay --- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grainShift 8s steps(10) infinite;
}

/* --- Particle Canvas --- */
.particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* --- Core Fade-In (enhanced with stagger support) --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays via CSS custom property */
.fade-in[data-delay="1"] { transition-delay: .1s; }
.fade-in[data-delay="2"] { transition-delay: .2s; }
.fade-in[data-delay="3"] { transition-delay: .3s; }
.fade-in[data-delay="4"] { transition-delay: .4s; }
.fade-in[data-delay="5"] { transition-delay: .5s; }

/* Slide-in variants */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* Scale reveal */
.scale-in {
  opacity: 0;
  transform: scale(.85);
  transition: opacity .6s ease, transform .6s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* --- Hero Typewriter Effect --- */
.hero-typewriter {
  display: inline;
}
.hero-typewriter .typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--gold);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: typewriterCursor 1s step-end infinite;
}
.hero h1 .typewriter-line {
  display: block;
  overflow: hidden;
}

/* --- Shimmer Gold Text --- */
.shimmer-gold {
  background: linear-gradient(
    90deg,
    var(--gold-dim) 0%,
    #e6c45a 25%,
    var(--gold) 50%,
    #e6c45a 75%,
    var(--gold-dim) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 4s linear infinite;
}

/* --- Evidence Card Animations --- */
.evidence-card {
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s ease;
}
.evidence-stack .evidence-card:nth-child(1) {
  animation: evidenceShuffle1 6s ease-in-out infinite;
}
.evidence-stack .evidence-card:nth-child(2) {
  animation: evidenceShuffle2 7s ease-in-out infinite;
  animation-delay: .5s;
}
.evidence-stack .evidence-card:nth-child(3) {
  animation: evidenceShuffle3 8s ease-in-out infinite;
  animation-delay: 1s;
}

/* Evidence stamp slam animation */
.evidence-stamp {
  animation: stampSlam .6s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: 1.2s;
}

/* --- 3D Card Tilt --- */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform .4s ease, box-shadow .4s ease;
}
.tilt-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 30px rgba(201,168,76,.08);
}

/* --- Proof Bar Count Animation --- */
.proof-value {
  transition: color .3s ease;
}
.proof-value.counting {
  animation: countFlicker 2s ease-in-out;
}

/* --- Glow Pulse on Featured Card --- */
.price-card.featured {
  animation: glowPulse 4s ease-in-out infinite;
}

/* --- Guarantee Box Glow --- */
.guarantee-box {
  transition: box-shadow .4s ease, border-color .4s ease;
}
.guarantee-box:hover {
  box-shadow: 0 0 40px rgba(201,168,76,.1);
  border-color: var(--gold);
}

/* --- Nav Link Animated Underline --- */
.nav-links a:not(.btn) {
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s cubic-bezier(.22,.61,.36,1);
}
.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* --- Section Divider Reveal --- */
.section-divider {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 0 auto;
  transition: width 1.2s cubic-bezier(.22,.61,.36,1);
}
.section-divider.visible {
  width: 120px;
}

/* --- Step Card Hover Lift --- */
.step-card {
  transition: transform .4s cubic-bezier(.22,.61,.36,1), border-color .4s ease, box-shadow .4s ease;
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dim);
  box-shadow: 0 16px 48px rgba(0,0,0,.3), 0 0 20px rgba(201,168,76,.06);
}

/* --- Step Icon Bounce on Card Hover --- */
.step-card:hover .step-icon {
  animation: floatUpDown 1.5s ease-in-out infinite;
}

/* --- Testimonial Card Subtle Float --- */
.testimonial-card {
  transition: transform .4s ease, box-shadow .4s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

/* --- Evidence Item Hover Glow --- */
.evidence-item {
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.evidence-item:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  transform: translateY(-3px);
}

/* --- Button Press Effect --- */
.btn {
  transition: all .25s cubic-bezier(.22,.61,.36,1);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.btn:active {
  transform: translateY(1px) scale(.98);
}
.btn:active::after {
  opacity: 1;
}

/* --- FAQ Question Hover Arrow --- */
.faq-question {
  transition: color .2s ease, padding-left .3s ease;
}
.faq-question:hover {
  padding-left: .5rem;
}

/* --- Hero Badge Glow Pulse --- */
.hero-badge {
  animation: glowPulse 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(198,40,40,.1);
}

/* --- CTA Section Ambient Glow --- */
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.04) 0%, transparent 70%);
  pointer-events: none;
  animation: floatUpDown 8s ease-in-out infinite;
}

/* --- Email Input Focus Glow --- */
.email-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,.1);
}

/* --- Blog Card Hover Border Trace --- */
.blog-card {
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: left .6s ease;
}
.blog-card:hover::before {
  left: 100%;
}

/* --- Mobile Nav Overlay --- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,10,15,.96);
  backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
}
.nav-overlay a:hover { color: var(--gold); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .evidence-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .email-form { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero-meta { gap: 1.5rem; }
  .proof-bar-inner { gap: 1.5rem; }
}

/* --- Blog / Article Pages --- */
.blog-hero {
  padding: 8rem 0 3rem;
  text-align: center;
  position: relative;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.05) 0%, transparent 60%);
  pointer-events: none;
}
.blog-hero h1 {
  max-width: 800px;
  margin: 0 auto 1rem;
}
.blog-hero .blog-meta {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.blog-hero .blog-meta span + span::before {
  content: ' · ';
  margin: 0 .4rem;
}

/* Breadcrumbs */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--text-muted);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  margin: 0 .4rem;
  color: var(--text-dim);
}

/* Related posts */
.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.related-posts h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.related-posts ul {
  margin: 0;
}
.related-posts li {
  list-style: none;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(42,42,58,.3);
}
.related-posts li:last-child { border-bottom: none; }
.related-posts a {
  font-size: .9rem;
  font-weight: 500;
}

/* Blog index grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
}
.blog-card .blog-card-tag {
  font-family: var(--font-mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: .8rem;
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
  line-height: 1.35;
}
.blog-card h3 a {
  color: var(--text);
  transition: color .2s;
}
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.blog-card .blog-card-link {
  margin-top: 1.2rem;
  font-size: .85rem;
  font-weight: 600;
}

/* Article body */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 4rem;
}
.article h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.article h2:first-of-type {
  border-top: none;
  padding-top: 0;
}
.article h3 {
  font-size: 1.15rem;
  margin: 2rem 0 .8rem;
}
.article p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.article strong { color: var(--text); }
.article ul, .article ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}
.article li {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .5rem;
  list-style: disc;
}
.article ol li { list-style: decimal; }
.article blockquote {
  border-left: 3px solid var(--gold-dim);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article blockquote p {
  font-style: italic;
  margin-bottom: 0;
  color: var(--text);
}
.article .article-cta {
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.article .article-cta h3 {
  margin-top: 0;
  margin-bottom: .6rem;
}
.article .article-cta p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: .9rem;
}
.comparison-table th,
.comparison-table td {
  padding: .8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  background: var(--bg-card);
}
.comparison-table td {
  color: var(--text-muted);
}
.comparison-table tr:hover td {
  background: var(--bg-card);
}
.comparison-table .winner {
  color: var(--gold);
  font-weight: 600;
}

/* About page */
.about-hero {
  padding: 8rem 0 3rem;
  text-align: center;
}
.about-section {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.about-section h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}
.about-section p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-section strong { color: var(--text); }
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.about-value {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.about-value h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .4rem;
  color: var(--gold);
}
.about-value p {
  font-size: .85rem;
  margin-bottom: 0;
}

/* --- Cases Page --- */
.cases-section {
  padding: 2rem 0 4rem;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  transition: border-color .3s;
}
.case-card:hover {
  border-color: var(--gold-dim);
}
.case-card-featured {
  border-color: var(--gold-dim);
  box-shadow: 0 0 60px rgba(201,168,76,.06);
}
.case-card-badge {
  position: absolute;
  top: -12px;
  left: 3rem;
  background: var(--gold);
  color: #0a0a0f;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 2px;
}
.case-card-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.case-card-grid-reverse {
  grid-template-columns: 1.4fr 1fr;
}
.case-file-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.case-file-number {
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--text-muted);
}
.case-file-status {
  font-family: var(--font-mono);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #4caf50;
  background: rgba(76,175,80,.1);
  border: 1px solid rgba(76,175,80,.3);
  padding: .2rem .6rem;
  border-radius: 2px;
}
.case-card-stack {
  position: relative;
}
.case-card-stack .evidence-card {
  position: relative;
  width: 100%;
}
.case-meta-row {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.case-meta-tag {
  font-family: var(--font-mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: .25rem .7rem;
  border-radius: 2px;
}
.case-synopsis {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: .8rem;
}
.case-synopsis strong {
  color: var(--text);
}
.case-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin: 1.5rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.case-detail-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: .2rem;
}
.case-detail-value {
  font-size: .85rem;
  color: var(--text-muted);
}
.case-card-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }

  /* Cases page mobile */
  .case-card { padding: 2rem 1.5rem; }
  .case-card-grid,
  .case-card-grid-reverse { grid-template-columns: 1fr; }
  .case-details { grid-template-columns: 1fr; }
  .case-card-actions { flex-direction: column; }
  .case-card-actions .btn { width: 100%; }
  .case-card-badge { left: 1.5rem; }
  .case-meta-row { gap: .4rem; }

  /* Comparison tables — horizontal scroll on mobile */
  .comparison-table { font-size: .8rem; }
  .comparison-table th,
  .comparison-table td { padding: .6rem .7rem; white-space: nowrap; }

  /* Animations — reduce intensity on mobile */
  .shimmer-gold { animation: none; background: none; -webkit-text-fill-color: var(--gold); }
  .grain-overlay { display: none; }
  .scroll-progress { height: 1.5px; }

  /* Touch targets — minimum 44px */
  .btn { min-height: 44px; }
  .faq-question { min-height: 48px; }
  .nav-toggle { min-width: 44px; min-height: 44px; }

  /* Blog card border trace — disable on mobile (no hover) */
  .blog-card::before { display: none; }

  /* Nav link underlines — disable on mobile (no hover) */
  .nav-links a:not(.btn)::after { display: none; }
}

@media (max-width: 600px) {
  /* Case cards extra small */
  .case-card { padding: 1.5rem 1rem; margin-bottom: 2rem; }
  .case-card-stack .evidence-card { padding: 1.2rem; }
  .case-card-stack .evidence-card-text { font-size: .7rem; }
  .case-meta-tag { font-size: .55rem; padding: .2rem .5rem; }

  /* Section labels */
  .section-label { font-size: .65rem; padding: .25rem .7rem; }

  /* Blog hero tighter on mobile */
  .blog-hero { padding: 6rem 0 2rem; }
  .blog-hero h1 { font-size: 1.6rem; }

  /* Footer links wrap */
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
