/* ============ FONTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============ TOKENS ============ */
:root {
  --ink: #141b2e;
  --ink-soft: #4b5572;
  --bg: #ffffff;
  --bg-alt: #f3f6fb;
  --brand: #0e9f6e;
  --brand-dark: #057a55;
  --brand-light: #e6f6ef;
  --accent: #34d399;          /* green — replaces the stray cyan */
  --green: #16a34a;
  --radius: 14px;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --shadow: 0 2px 6px rgba(20, 27, 46, 0.05), 0 14px 34px -16px rgba(20, 27, 46, 0.15);
  --shadow-lg: 0 4px 10px rgba(20, 27, 46, 0.06), 0 30px 64px -28px rgba(20, 27, 46, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }

h1 { font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.08; font-weight: 800; letter-spacing: -0.025em; overflow-wrap: break-word; }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.01em; }
.section-sub { color: var(--ink-soft); max-width: 560px; margin-bottom: 36px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 600; cursor: pointer;
  border: none; border-radius: 10px; padding: 10px 20px;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(14, 159, 110, 0.35); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--bg-alt); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; border-radius: 12px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8ebf3;
}
.nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.2rem; color: var(--brand); }
.logo span { color: var(--ink); }
.logo em { font-style: normal; color: var(--brand); }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; }
.main-nav a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 10px; }
.nav-toggle { display: none; }

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(900px 520px at 86% -12%, rgba(14, 159, 110, 0.13), transparent 60%),
    radial-gradient(820px 600px at -4% 2%, rgba(14, 159, 110, 0.08), transparent 55%),
    var(--bg);
  padding-top: 72px;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center; padding-bottom: 72px;
}
.hero-inner > * { min-width: 0; }   /* prevent grid blow-out so the headline wraps on mobile */
.eyebrow {
  display: inline-block; background: var(--brand-light); color: var(--brand);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero .sub { color: var(--ink-soft); font-size: 1.12rem; margin-top: 18px; max-width: 480px; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.hero-proof p { color: var(--ink-soft); font-size: 0.95rem; }

.avatars { display: flex; flex-shrink: 0; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
  border: 2px solid #fff;
}
.avatars .avatar + .avatar { margin-left: -12px; }
.hero-proof p { white-space: nowrap; }
img.avatar { object-fit: cover; background: #e8ebf3; box-shadow: 0 1px 4px rgba(19, 26, 46, 0.18); }
.avatar.a1 { background: #10b981; }
.avatar.a2 { background: #06b6d4; }
.avatar.a3 { background: #f59e0b; }
.avatar.a4 { background: #131a2e; }

/* ---- Search card ---- */
.search-card {
  background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 22px; border: 1px solid #e8ebf3;
}
.search-tabs {
  display: flex; gap: 4px;
  background: var(--bg-alt); border-radius: 12px; padding: 5px; margin-bottom: 20px;
}
.tab {
  flex: 1;
  border: none; background: transparent; cursor: pointer;
  font: inherit; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
  padding: 9px 6px; border-radius: 9px; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.tab.active { background: #fff; color: var(--ink); box-shadow: 0 2px 8px rgba(19, 26, 46, 0.10); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.input-row { display: flex; gap: 8px; margin-bottom: 16px; }
.input-row select, .input-row input {
  font: inherit; padding: 13px 14px; border: 1.5px solid #d8ddeb;
  border-radius: 10px; background: #fff; min-width: 0;
}
.input-row input { flex: 1; }
.input-row select:focus, .input-row input:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14, 159, 110, 0.15);
}
.fine-print { font-size: 0.8rem; color: var(--ink-soft); text-align: center; margin-top: 12px; }
.input-row input.error { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12); }

/* searching state */
.btn-spinner {
  display: none; width: 18px; height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.35); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
.search-form.searching .btn-spinner { display: inline-block; }
.search-form.searching .btn-label::after { content: "…"; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Stats bar ---- */
.hero-stats { background: var(--ink); color: #fff; padding: 26px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat strong { display: block; font-size: 1.5rem; font-weight: 800; }
.stat span { color: #aab2cc; font-size: 0.88rem; }

/* ============ SECTIONS ============ */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 12px; }
.step { background: #fff; border: 1px solid #e8ebf3; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.step-num {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin-bottom: 16px;
}
.step p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 6px; }

/* feature grid */
.feature-grid {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px; margin-top: 8px;
}
.feature-grid li {
  background: #fff; border: 1px solid #e8ebf3; border-radius: 10px;
  padding: 14px 16px; font-weight: 500; font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
}
.check {
  color: var(--green); font-weight: 800; flex-shrink: 0;
}

/* cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 12px; }
.card {
  background: #fff; border: 1px solid #e8ebf3; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.card p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 8px; }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--brand-light); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; }

/* testimonials */
.testimonial blockquote { font-size: 0.97rem; color: var(--ink); margin: 12px 0 18px; }
.testimonial figcaption {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--ink-soft);
}
.stars { color: #f59e0b; letter-spacing: 2px; }

/* pricing */
.pricing-wrap { display: flex; justify-content: center; }
.pricing-card {
  background: linear-gradient(160deg, #fff, var(--brand-light));
  border: 1.5px solid #c8ebd9; border-radius: 22px;
  padding: 48px; max-width: 560px; text-align: center; box-shadow: var(--shadow-lg);
}
.pricing-card .section-sub { margin: 10px auto 24px; }
.badge {
  display: inline-block; background: var(--brand); color: #fff;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.price { color: var(--brand); }
.pricing-list { list-style: none; text-align: left; margin: 0 auto 28px; max-width: 380px; }
.pricing-list li { display: flex; gap: 10px; padding: 7px 0; font-weight: 500; }

/* faq */
.faq-cat { margin: 40px 0 16px; font-size: 1.25rem; }
.faq-cat:first-of-type { margin-top: 8px; }
.faq-list details ul {
  color: var(--ink-soft); font-size: 0.95rem;
  margin: 8px 0 4px; padding-left: 22px;
}
.faq-list details ul li { margin: 4px 0; }
.faq-list details {
  background: #fff; border: 1px solid #e8ebf3; border-radius: 12px;
  padding: 18px 22px; margin-bottom: 12px;
}
.faq-list summary {
  font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.3rem; color: var(--brand); font-weight: 700; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { color: var(--ink-soft); margin-top: 12px; font-size: 0.95rem; }

/* final cta */
.final-cta {
  background:
    radial-gradient(740px 420px at 50% 122%, rgba(14, 159, 110, 0.26), transparent 60%),
    var(--ink);
  color: #fff;
}
.final-cta h2 { margin-bottom: 28px; }

/* ============ LEGAL PAGES ============ */
.legal-page { padding: 56px 0 84px; }
.legal-content h1 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 6px; }
.legal-content h1 + p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 8px; }
.legal-content h2 { font-size: 1.35rem; margin: 36px 0 12px; }
.legal-content h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal-content p { color: var(--ink-soft); margin: 10px 0; }
.legal-content ul, .legal-content ol { color: var(--ink-soft); margin: 10px 0; padding-left: 26px; }
.legal-content li { margin: 6px 0; }
.legal-content a { color: var(--brand); text-decoration: underline; word-break: break-word; }
.legal-content a:hover { color: var(--brand-dark); }

/* ============ FOOTER ============ */
.site-footer { background: #0c1122; color: #aab2cc; padding: 64px 0 32px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr 1fr; gap: 36px; }
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-grid a { display: block; padding: 5px 0; color: #aab2cc; }
.footer-grid a:hover { color: #fff; }
.logo-light span, .logo-light { color: #fff; }
.logo-light em { color: #6ee7b7; }
.footer-brand p { margin: 14px 0 18px; max-width: 280px; }
.lang-select {
  font: inherit; background: #181f38; color: #fff;
  border: 1px solid #2a3354; border-radius: 8px; padding: 8px 12px;
}
.footer-bottom { border-top: 1px solid #222a47; margin-top: 48px; padding-top: 28px; }
.disclaimer { font-size: 0.8rem; color: #717ba0; margin-bottom: 20px; }
/* company line + copyright: centered, slightly smaller */
.footer-bottom > p:not(.disclaimer) { text-align: center; font-size: 0.78rem; }
.payments { display: flex; gap: 10px; margin-bottom: 20px; }
.payments span {
  border: 1px solid #2a3354; border-radius: 6px; padding: 4px 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; color: #8e97bb;
}

/* ============ MODAL ============ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(12, 17, 34, 0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff; border-radius: 20px; padding: 40px 36px 32px;
  max-width: 420px; width: 100%; text-align: center; position: relative;
  box-shadow: var(--shadow-lg); animation: pop 0.25s ease;
}
@keyframes pop { from { transform: scale(0.92); opacity: 0; } }
.modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; font-size: 1.6rem; color: var(--ink-soft); cursor: pointer;
}
.modal-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 12px;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.modal-icon svg { width: 28px; height: 28px; }
.modal-query { color: var(--ink-soft); font-size: 0.95rem; margin: 6px 0 18px; }
.modal-query strong { color: var(--ink); display: block; margin-top: 4px; font-size: 1.1rem; white-space: nowrap; }
.modal-found { list-style: none; text-align: left; margin: 0 auto 8px; max-width: 280px; }
.modal-found li { display: flex; gap: 10px; padding: 6px 0; font-weight: 500; font-size: 0.95rem; }
.modal-cta { margin-top: 14px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .steps, .cards, .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .main-nav { display: none; }
  .nav-actions { margin-left: auto; }
}
@media (max-width: 560px) {
  .steps, .cards, .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 60px 0; }
  .nav-actions .btn-ghost { display: none; }
  .pricing-card { padding: 32px 24px; }
  /* 6 text tabs don't fit one row on phones — wrap to a clean 3×2 grid */
  .search-tabs { display: grid; grid-template-columns: repeat(3, 1fr); }
  .tab { flex: none; }
}

/* ============ FUNNEL ============ */
.funnel-header { background: #fff; border-bottom: 1px solid #e8ebf3; }
.funnel-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.secure-note { font-size: 0.8rem; color: var(--ink-soft); font-weight: 600; white-space: nowrap; }
.funnel-steps { display: flex; gap: 8px; }
.fdot { width: 10px; height: 10px; border-radius: 50%; background: #dfe4f0; }
.fdot.done { background: var(--brand); opacity: 0.45; }
.fdot.active { background: var(--brand); }

.funnel-main { min-height: calc(100vh - 200px); padding: 48px 16px 72px; display: flex; justify-content: center; align-items: flex-start; }
.funnel-card {
  background: #fff; border: 1px solid #e8ebf3; border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 36px 32px; max-width: 560px; width: 100%;
}
.funnel-kicker { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand); margin-bottom: 10px; }
.funnel-kicker.ok { color: var(--green); }
.funnel-title { font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.25; margin-bottom: 14px; }
/* phone numbers never break mid-number — they drop to their own line as a unit */
.rs-num { display: inline-block; white-space: nowrap; }
.funnel-sub { color: var(--ink-soft); margin-bottom: 20px; }
.funnel-h2 { font-size: 1.1rem; margin: 18px 0 12px; }
.ok { color: var(--green); font-weight: 700; }

.locate-box { background: var(--bg-alt); border-radius: 12px; padding: 16px 18px; margin-bottom: 18px; }
.locate-row { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.locate-result { margin-top: 10px; display: grid; gap: 4px; color: var(--ink-soft); font-size: 0.95rem; }
.mini-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2.5px solid #d8ddeb; border-top-color: var(--brand);
  animation: spin 0.7s linear infinite; flex-shrink: 0;
}

.notice-box { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 12px; padding: 16px 18px; margin-bottom: 20px; }
.notice-box h2 { font-size: 1rem; margin-bottom: 8px; }
.notice-box p { color: var(--ink-soft); font-size: 0.95rem; }
.notice-box ul { margin: 8px 0 0 20px; color: var(--ink-soft); font-size: 0.95rem; }
.notice-box li { margin: 4px 0; }

.scan-progress { display: flex; align-items: center; gap: 14px; margin: 6px 0 10px; }
.scan-bar { flex: 1; height: 12px; border-radius: 999px; background: var(--bg-alt); overflow: hidden; }
.scan-fill { height: 100%; width: 0%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--accent)); transition: width 0.2s linear; }
.scan-pct { font-weight: 800; min-width: 48px; text-align: right; }
.scan-phase { font-weight: 700; margin-bottom: 12px; }
.scan-list { list-style: none; max-height: 220px; overflow-y: auto; display: grid; gap: 6px; padding: 4px 2px; }
.scan-list li { display: flex; gap: 8px; font-size: 0.93rem; color: var(--ink-soft); animation: pop 0.25s ease; }

.field-error { color: #dc2626; font-size: 0.85rem; margin: -8px 0 10px; }
.agree-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--ink-soft); margin: 4px 0 16px; cursor: pointer; }
.agree-row input { margin-top: 3px; accent-color: var(--brand); }
.agree-row a { color: var(--brand); text-decoration: underline; }
.agree-row.shake { animation: shake 0.4s; color: #dc2626; }
@keyframes shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }

.or-divider { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-size: 0.85rem; margin: 18px 0; }
.or-divider span { flex: 1; height: 1px; background: #e8ebf3; }
.btn-google { background: #fff; border: 1.5px solid #d8ddeb; color: var(--ink); font-weight: 600; }
.btn-google:hover { background: var(--bg-alt); }

.payment-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; max-width: 980px; width: 100%; align-items: start; }
.field-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.funnel-card label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.funnel-card .input-row { margin-bottom: 14px; }
.promo-toggle { background: none; border: none; color: var(--brand); font: inherit; font-size: 0.9rem; font-weight: 600; cursor: pointer; padding: 0; margin-bottom: 14px; text-decoration: underline; }
.demo-note { text-align: center; color: #b45309; font-size: 0.85rem; font-weight: 600; margin-top: 10px; }
.funnel-card .payments { justify-content: center; margin-top: 16px; }
.funnel-card .payments span { color: var(--ink-soft); border-color: #d8ddeb; }

.payment-aside { display: grid; gap: 20px; }
.report-preview { background: #fff; border: 1px solid #d5ede0; border-radius: 16px; padding: 24px; box-shadow: var(--shadow); }
.report-preview h2 { font-size: 1.15rem; margin-bottom: 4px; }
.report-num { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 14px; }
.report-preview h3 { font-size: 0.95rem; margin-bottom: 8px; }
.report-preview .modal-found { margin: 0; max-width: none; }
.aside-points { display: grid; gap: 14px; }
.aside-points > div { background: var(--bg-alt); border-radius: 12px; padding: 14px 16px; }
.aside-points h3 { font-size: 0.95rem; margin-bottom: 4px; }
.aside-points p { color: var(--ink-soft); font-size: 0.88rem; }

.funnel-footer { background: var(--bg-alt); border-top: 1px solid #e8ebf3; padding: 24px 0; text-align: center; font-size: 0.8rem; color: var(--ink-soft); }
.funnel-footer p { margin: 4px 0; }
.funnel-footer a { color: var(--brand); }

@media (max-width: 860px) {
  .payment-grid { grid-template-columns: 1fr; }
  .funnel-steps { display: none; }
}

/* ============ PAYMENT PAGE V2 ============ */
.countdown-bar {
  background: #fff; border-bottom: 1px solid #e8ebf3;
  text-align: center; padding: 8px 16px; font-size: 0.9rem; color: var(--ink-soft);
  position: sticky; top: 0; z-index: 45;   /* stay in frame while scrolling to the card */
}
.countdown-bar strong { color: var(--ink); }
.countdown-bar strong:last-child { color: var(--brand-dark); font-variant-numeric: tabular-nums; }

.pay-hero { background: linear-gradient(160deg, var(--brand-light), #f6fdf9); padding: 48px 0 56px; }
.pay-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.pay-hero-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 20px; }
.pay-id { display: flex; gap: 14px; align-items: center; margin-bottom: 10px; }
.pay-avatar {
  width: 64px; height: 64px; border-radius: 14px; background: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  border: 1px solid #d5ede0; flex-shrink: 0;
}
.pay-num { font-size: 1.25rem; font-weight: 800; }
.pay-meta { font-size: 0.9rem; color: var(--ink-soft); }
.masked-inline { filter: blur(4px); user-select: none; }
.pay-asof { font-size: 0.85rem; color: var(--ink-soft); margin: 6px 0 16px; }
.pay-asof strong { color: var(--brand-dark); }
.pay-warning {
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: 10px;
  padding: 12px 16px; font-size: 0.9rem; color: var(--ink-soft); max-width: 480px; margin-bottom: 20px;
}
.reveal-card { background: #fff; border: 1px solid #d5ede0; border-radius: 16px; padding: 24px 26px; box-shadow: var(--shadow); }
.reveal-card h2 { font-size: 1.1rem; margin-bottom: 12px; }
.reveal-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.reveal-list li { display: flex; gap: 8px; font-size: 0.93rem; font-weight: 500; }

.pay-main { padding: 0 0 64px; }
.proof-bar {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--bg-alt); border-radius: 12px; padding: 12px 18px;
  margin: 28px auto 32px; max-width: 480px; font-size: 0.92rem; color: var(--ink-soft);
}
.avatar-more { background: var(--ink); color: #fff; font-size: 0.62rem; font-weight: 700; }
.pay-main-grid { display: grid; grid-template-columns: 1fr 440px; gap: 40px; align-items: start; }
.details-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.detail-item { display: flex; gap: 14px; margin-bottom: 20px; }
.detail-icon {
  width: 38px; height: 38px; border-radius: 50%; background: var(--brand-light);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.detail-item h3 { font-size: 0.98rem; }
.detail-item p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 2px; }

.summary-card {
  background: #fff; border: 1px solid #e8ebf3; border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 26px 26px 20px;
}
.summary-title { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; text-align: center; margin-bottom: 16px; }
.summary-checks { list-style: none; display: grid; gap: 8px; margin-bottom: 16px; }
.summary-checks li { display: flex; gap: 8px; font-size: 0.85rem; color: var(--ink-soft); }
.promo-box {
  display: flex; gap: 12px; align-items: center;
  background: var(--brand-light); border: 1px solid #c8ebd9; border-radius: 10px;
  padding: 10px 14px; font-size: 0.88rem; margin-bottom: 14px;
}
.promo-gift { font-size: 1.3rem; }
.promo-off { background: #dc2626; color: #fff; font-size: 0.7rem; font-weight: 800; padding: 2px 7px; border-radius: 5px; }
.promo-sub { color: var(--ink-soft); font-size: 0.8rem; }
.total-row {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #eef1f7; border-bottom: 1px solid #eef1f7;
  padding: 12px 2px; margin-bottom: 18px; font-weight: 600;
}
.total-amount { font-size: 1.35rem; font-weight: 800; }
.total-sub { font-size: 0.78rem; color: var(--ink-soft); font-weight: 500; }
.summary-card label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; }
.summary-card .input-row { margin-bottom: 12px; }
.consent-text { font-size: 0.76rem; color: var(--ink-soft); line-height: 1.55; margin-top: 12px; }
.consent-text a { color: var(--brand); text-decoration: underline; }
.summary-contact { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 12px; }
.summary-contact a { color: var(--brand); }

.pay-reviews { padding: 64px 0; }
.rating-line { text-align: center; color: var(--ink-soft); margin: 8px 0 32px; }
.rating-line .stars { color: #f59e0b; letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review-card { background: #fff; border: 1px solid #e8ebf3; border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.review-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 0.95rem; }
.review-card .stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 1px; }
.star-dim { color: #e2e6ef; }
.review-card .verified { color: var(--green); font-size: 0.78rem; font-weight: 600; }
.review-card p { color: var(--ink-soft); font-size: 0.88rem; }
.review-meta { font-size: 0.75rem; color: #9aa3bd; margin-top: auto; }

@media (max-width: 960px) {
  .pay-hero-grid, .pay-main-grid { grid-template-columns: 1fr; gap: 28px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* payment page fixes: strikethrough original price + input overflow */
.total-was { text-decoration: line-through; color: #9aa3bd; font-weight: 600; margin-right: 4px; }
.pay-main-grid > * , .field-2col > div, .summary-card form { min-width: 0; }
.summary-card .input-row input { width: 100%; flex: 1 1 0; }

/* photo upload zone (replaces native Choose File) */
.tab-panel label.photo-drop { display: flex; align-items: center; gap: 12px; border: 1.5px dashed #d8ddeb; border-radius: 10px; padding: 10px 14px; margin-bottom: 16px; cursor: pointer; transition: border-color .15s, background .15s; }
/* offset hash-scroll so the sticky header doesn't cover the lookup tabs */
#search { scroll-margin-top: 90px; }
/* funnel: "Get My Report" jumps to #checkout — clear the sticky countdown bar so the headline isn't cut off */
#checkout { scroll-margin-top: 64px; }

/* ============================================================
   TRUST / SOCIAL-PROOF TOGGLE  (one switch for all of them)
   Every fabricated trust badge — usage counts ("10M+ …"), the stats
   bar, testimonials, customer reviews, star ratings, and avatar rows —
   carries the `data-trust` attribute and is hidden by the single rule
   below, removed for payment-processor / bank approval.
   >>> TO RESTORE THEM ALL: delete (or comment out) the ONE rule below. <<<
   (Leave the data-trust attributes in place so it can be toggled again.)
   ============================================================ */
[data-trust] { display: none !important; }
.photo-drop:hover, .photo-drop.dragover { border-color: var(--brand); background: var(--brand-light); }
.photo-drop.error { border-color: #dc2626; background: rgba(220,38,38,.05); }
.photo-cam { width: 32px; height: 32px; border-radius: 8px; background: var(--brand-light); color: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.photo-cam svg { width: 18px; height: 18px; }
.photo-drop-text { color: var(--ink-soft); font-size: 0.95rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.photo-drop.has-file .photo-drop-text { color: var(--ink); font-weight: 600; }
