/* ============================================================
   MJA China Sourcing — MVP Website Styles
   Palette: navy #12324A | teal #1F7A76 | gold #C9922B
   ============================================================ */

:root {
  --navy: #12324A;
  --navy-dark: #0C2334;
  --teal: #1F7A76;
  --teal-dark: #175E5B;
  --gold: #C9922B;
  --ink: #182026;
  --slate: #5C6770;
  --border: #D8DEE4;
  --bg-soft: #F6F8FA;
  --white: #FFFFFF;
  --wa-green: #25D366;
  --wa-green-dark: #1DA851;
  --radius: 8px;
  --radius-btn: 6px;
  --maxw: 1160px;
  --shadow: 0 1px 3px rgba(18, 50, 74, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.25; color: var(--navy); font-weight: 700; }
h1 { font-size: 2rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.15rem; }
.section-sub { color: var(--slate); max-width: 640px; margin: 10px auto 0; }
.muted { color: var(--slate); }
.small { font-size: 0.85rem; }

@media (min-width: 768px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.9rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none !important;
  line-height: 1.2;
  text-align: center;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }
.btn-whatsapp { background: var(--wa-green); color: var(--white); }
.btn-whatsapp:hover { background: var(--wa-green-dark); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }

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

@media (max-width: 640px) {
  .btn-row .btn { width: 100%; }
}

.wa-icon { width: 18px; height: 18px; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.brand {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.15;
  text-decoration: none !important;
  flex: none;
}
.brand span { color: var(--teal); }

.main-nav { display: none; }
.header-ctas { display: none; }

.mobile-actions { display: flex; align-items: center; gap: 10px; }
.wa-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--wa-green);
  color: #fff;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  color: var(--navy);
}

@media (min-width: 992px) {
  .main-nav { display: flex; gap: 26px; }
  .main-nav a {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.93rem;
    text-decoration: none !important;
  }
  .main-nav a:hover, .main-nav a.active { color: var(--teal); }
  .header-ctas { display: flex; gap: 10px; }
  .mobile-actions { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a.nav-link {
  display: block;
  padding: 12px 4px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--bg-soft);
  text-decoration: none !important;
}
.mobile-menu .btn { width: 100%; margin-top: 12px; }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 34px; }

@media (min-width: 768px) {
  .section { padding: 76px 0; }
}

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%); padding: 52px 0 46px; }
.hero-grid { display: grid; gap: 36px; align-items: center; }
.hero .lead { color: var(--slate); font-size: 1.05rem; margin: 16px 0 24px; max-width: 560px; }
.hero-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.hero-visual .flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.hero-visual .flow-step + .flow-step { border-top: 1px dashed var(--border); }
.flow-num {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step.highlight .flow-num { background: var(--teal); }
.flow-step strong { color: var(--navy); font-size: 0.93rem; }
.flow-step .muted { font-size: 0.82rem; }

@media (min-width: 900px) {
  .hero { padding: 80px 0 70px; }
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 56px; }
}

/* Trust chips */
.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
}
.chip svg { color: var(--teal); flex: none; }

/* ---------- Trust points row ---------- */
.trust-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.trust-item {
  text-align: center;
  padding: 18px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-item .t-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 8px;
  background: rgba(31, 122, 118, 0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item p { font-size: 0.87rem; font-weight: 600; color: var(--navy); line-height: 1.35; }

@media (min-width: 900px) {
  .trust-row { grid-template-columns: repeat(5, 1fr); }
}

/* ---------- Two-column ---------- */
.two-col { display: grid; gap: 32px; }
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
}

/* Risk checklist */
.check-list { list-style: none; margin-top: 8px; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid var(--bg-soft);
  font-size: 0.95rem;
}
.check-list li svg { flex: none; margin-top: 4px; }
.check-list.risks li svg { color: var(--gold); }
.check-list.good li svg { color: var(--teal); }

/* ---------- Transparent model ---------- */
.model-blocks { display: grid; gap: 14px; margin: 28px 0; }
.model-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.model-block .m-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.model-block:nth-child(1) .m-icon { background: rgba(18, 50, 74, 0.08); color: var(--navy); }
.model-block:nth-child(2) .m-icon { background: rgba(201, 146, 43, 0.12); color: var(--gold); }
.model-block:nth-child(3) .m-icon { background: rgba(31, 122, 118, 0.1); color: var(--teal); }
.model-block h3 { margin-bottom: 6px; }
.model-block p { font-size: 0.9rem; color: var(--slate); }

@media (min-width: 768px) {
  .model-blocks { grid-template-columns: repeat(3, 1fr); }
}

.numbered-list { list-style: none; counter-reset: step; max-width: 720px; margin: 0 auto; }
.numbered-list li {
  counter-increment: step;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
}
.numbered-list li::before {
  content: counter(step);
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.highlight-box {
  background: rgba(201, 146, 43, 0.09);
  border: 1px solid rgba(201, 146, 43, 0.35);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 26px auto;
  max-width: 720px;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 16px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card .c-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(18, 50, 74, 0.07);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.92rem; color: var(--slate); }
.card ul { margin: 10px 0 0 18px; font-size: 0.9rem; color: var(--slate); }
.card ul li { margin-bottom: 4px; }

@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.section-cta { text-align: center; margin-top: 34px; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; max-width: 760px; margin: 0 auto; position: relative; }
.timeline li {
  position: relative;
  padding: 0 0 26px 54px;
}
.timeline li::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline li::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline li:last-child::after { display: none; }
.timeline li.milestone::before { background: var(--teal); }
.timeline h3 { font-size: 1.02rem; margin-bottom: 4px; }
.timeline p { font-size: 0.92rem; color: var(--slate); }

.timeline-note {
  background: rgba(31, 122, 118, 0.07);
  border: 1px solid rgba(31, 122, 118, 0.3);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 0 0 26px 54px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- Partner blocks ---------- */
.partner-grid { display: grid; gap: 16px; }
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.partner-card .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.partner-card .role {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin-bottom: 8px;
}
.partner-card p { font-size: 0.92rem; color: var(--slate); }

@media (min-width: 768px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Proof cards ---------- */
.proof-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  background: rgba(31, 122, 118, 0.1);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 10px;
}
.confidential-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 720px;
  margin: 26px auto 0;
  font-size: 0.87rem;
  color: var(--slate);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.confidential-note svg { flex: none; color: var(--gold); margin-top: 2px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 620px; margin: 14px auto 26px; }
.cta-band .prep-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.cta-band .prep-list span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.83rem;
}
.cta-band .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-band .btn-secondary:hover { border-color: #fff; color: #fff; }
.cta-band .btn-row { justify-content: center; }

/* WhatsApp strip */
.wa-strip { background: var(--bg-soft); text-align: center; padding: 44px 0; }
.wa-strip h2 { font-size: 1.4rem; }
.wa-strip p { color: var(--slate); max-width: 560px; margin: 10px auto 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 28px;
  font-size: 0.9rem;
}
.footer-grid { display: grid; gap: 32px; margin-bottom: 32px; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.site-footer a { color: rgba(255, 255, 255, 0.8); display: block; padding: 4px 0; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-brand-line { max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  text-decoration: none !important;
}
.wa-float:hover { background: var(--wa-green-dark); }
.wa-float .wa-label { display: inline; }
.wa-float.compact .wa-label { display: none; }
.wa-float.compact { padding: 13px; }

@media (min-width: 992px) {
  .wa-float { display: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--bg-soft);
  padding: 46px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero p { color: var(--slate); max-width: 640px; margin: 14px auto 0; }
.page-hero .btn-row { justify-content: center; margin-top: 24px; }

/* ---------- Forms ---------- */
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}
@media (min-width: 640px) { .form-card { padding: 36px; } }

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.step-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.step-dot.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.step-dot.done { background: rgba(31,122,118,0.12); color: var(--teal); border-color: rgba(31,122,118,0.4); }

.form-step { display: none; }
.form-step.active { display: block; }
.form-step h2 { font-size: 1.25rem; margin-bottom: 4px; }
.form-step .step-desc { color: var(--slate); font-size: 0.9rem; margin-bottom: 22px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.field .req { color: var(--gold); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.field textarea { min-height: 100px; resize: vertical; }
.field .hint { font-size: 0.8rem; color: var(--slate); margin-top: 5px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #C0392B; }
.field .error-msg { display: none; color: #C0392B; font-size: 0.8rem; margin-top: 5px; font-weight: 500; }
.field.invalid .error-msg { display: block; }

.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 10px 16px;
  cursor: pointer;
  margin-bottom: 0;
  color: var(--ink);
}
.radio-group input { accent-color: var(--teal); }

.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin: 22px 0;
}
.checkbox-field input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex: none;
  accent-color: var(--teal);
  cursor: pointer;
}
.checkbox-field label { font-size: 0.88rem; color: var(--ink); cursor: pointer; }
.checkbox-field.invalid { border-color: #C0392B; }

.form-nav { display: flex; gap: 12px; margin-top: 26px; }
.form-nav .btn { flex: 1; }

.form-alert {
  display: none;
  background: #FDECEA;
  border: 1px solid #F5C6BF;
  color: #A93226;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.form-alert.show { display: block; }

/* Confirmation */
.confirmation { text-align: center; padding: 20px 0; }
.confirmation .conf-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(31, 122, 118, 0.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation p { color: var(--slate); max-width: 480px; margin: 12px auto 24px; }
.confirmation .btn-row { justify-content: center; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; gap: 16px; max-width: 860px; margin: 0 auto; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.contact-card .cc-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card h3 { margin-bottom: 6px; }
.contact-card p { font-size: 0.9rem; color: var(--slate); margin-bottom: 16px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-20 { margin-bottom: 20px; }
.divider { height: 1px; background: var(--border); border: 0; margin: 34px 0; }

.badge-note {
  display: inline-block;
  background: rgba(201,146,43,0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Founder photo + LinkedIn (team cards) ---------- */
.partner-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none !important;
}
.linkedin-link svg { color: #0A66C2; flex: none; }
.linkedin-link:hover { color: #0A66C2; }
.linkedin-link:focus-visible { outline: 2px solid #0A66C2; outline-offset: 3px; border-radius: 3px; }

/* ---------- Inquiry uploads + review summary ---------- */
.upload-group {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--bg-soft);
  margin-bottom: 18px;
}
.upload-field + .upload-field { margin-top: 18px; }
.upload-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.upload-field input[type="file"] {
  width: 100%;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 10px 12px;
}
.upload-field input[type="file"]::file-selector-button {
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 7px 13px;
  margin-right: 12px;
  cursor: pointer;
}
.upload-field input[type="file"]:focus { outline: none; border-color: var(--teal); }
.upload-field .hint { font-size: 0.8rem; color: var(--slate); margin-top: 5px; }

.file-list { list-style: none; margin: 10px 0 0; }
.file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.85rem;
  margin-bottom: 6px;
  word-break: break-word;
}
.file-remove {
  flex: none;
  background: none;
  border: 0;
  color: #C0392B;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 6px;
}
.file-remove:hover { text-decoration: underline; }

.upload-meta {
  font-size: 0.83rem;
  color: var(--slate);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.review-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 18px;
  margin-bottom: 4px;
}
.review-summary dt {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin-top: 14px;
}
.review-summary dd {
  margin: 4px 0 14px;
  color: var(--ink);
  font-size: 0.95rem;
  white-space: pre-wrap;
  word-break: break-word;
}
.review-summary dd:last-child { margin-bottom: 14px; }
