/* ============================================================
   Trueway Smart Lock — Global Stylesheet
   Brand: Cyan #00C2C7 / Deep Black #0A0A0C / White
   ============================================================ */

:root {
  --cyan: #00C2C7;
  --cyan-dark: #009DA1;
  --cyan-glow: rgba(0, 194, 199, 0.25);
  --bg: #0A0A0C;
  --bg-2: #101014;
  --surface: #15151B;
  --surface-2: #1C1C24;
  --text: #F4F4F6;
  --muted: #A0A0AB;
  --border: rgba(255, 255, 255, 0.09);
  --serif: Georgia, 'Times New Roman', 'Noto Serif SC', 'Songti SC', serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --radius: 14px;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- Language visibility (JS only toggles body.lang-zh) ---- */
[data-lang="zh"] { display: none; }
body.lang-zh [data-lang="en"] { display: none; }
body.lang-zh [data-lang="zh"] { display: inline; }
body.lang-zh span[data-lang="zh"].block,
body.lang-zh [data-lang="zh"].block { display: block; }

img { max-width: 100%; height: auto; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #4FE3E7; }

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

h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; }

.serif { font-family: var(--serif); font-weight: 600; }
.accent { color: var(--cyan); }
.muted { color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 760px; }
.eyebrow {
  display: inline-block; font-size: 0.8rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; font-weight: 600;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--cyan); color: #04181A; }
.btn-primary:hover { background: #2BDCE0; color: #04181A; box-shadow: 0 8px 30px var(--cyan-glow); transform: translateY(-2px); }
.btn-ghost { border-color: var(--border); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 12, 0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand img { height: 40px; display: block; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  background: transparent; border: 1px solid var(--border); color: var(--text);
  border-radius: 999px; padding: 7px 16px; font-size: 0.85rem; cursor: pointer;
  font-family: var(--sans); transition: border-color 0.2s, color 0.2s;
}
.lang-toggle:hover { border-color: var(--cyan); color: var(--cyan); }
.nav-toggle {
  display: none; background: none; border: none; color: var(--text);
  font-size: 1.5rem; cursor: pointer;
}

/* ---- Hero ---- */
.hero {
  position: relative; padding: 96px 0 80px; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(0, 194, 199, 0.12), transparent 65%),
    radial-gradient(ellipse 45% 40% at 15% 80%, rgba(0, 194, 199, 0.06), transparent 60%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-media img { border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55); }
.hero-media video {
  display: block; width: 100%; aspect-ratio: 16 / 11; object-fit: cover;
  border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55); background: #0A0A0C;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 38px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  border-top: 1px solid var(--border); padding-top: 26px; margin-top: 10px;
}
.hero-stats .stat b { display: block; font-size: 1.35rem; color: var(--cyan); font-family: var(--serif); }
.hero-stats .stat span { font-size: 0.82rem; color: var(--muted); }

/* ---- Sections ---- */
.section { padding: 90px 0; }
.section.alt { background: var(--bg-2); }
.section-head { max-width: 780px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Steps (How it works) ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; position: relative; transition: transform 0.25s, border-color 0.25s;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(0, 194, 199, 0.45); }
.step-card .num {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(0, 194, 199, 0.12);
  color: var(--cyan); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.2rem; margin-bottom: 18px; border: 1px solid rgba(0, 194, 199, 0.35);
}
.step-card p { color: var(--muted); font-size: 0.95rem; margin-top: 8px; }
.key-anim { width: 44px; height: 44px; display: inline-block; }
html.js .key-anim svg { animation: keyTurn 3.2s ease-in-out infinite; transform-origin: 50% 50%; }
@keyframes keyTurn {
  0%, 35% { transform: rotate(0deg); }
  55%, 85% { transform: rotate(-90deg); }
  100% { transform: rotate(0deg); }
}

/* ---- Tables ---- */
.tbl { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.tbl th, .tbl td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.tbl th { background: var(--surface-2); font-weight: 600; color: var(--text); }
.tbl tr:last-child td { border-bottom: none; }
.tbl td:first-child { color: var(--muted); }
.tbl .win { color: var(--cyan); font-weight: 600; }
.spec-table td:first-child { width: 42%; color: var(--muted); }

/* ---- Product cards ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.p-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.p-card:hover { transform: translateY(-8px); border-color: rgba(0, 194, 199, 0.5); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }
.p-card .thumb { background: #0E0E12; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.p-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.p-card .body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.p-card .tag { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); font-weight: 600; }
.p-card .body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.p-card ul { list-style: none; color: var(--muted); font-size: 0.9rem; }
.p-card ul li::before { content: '—'; color: var(--cyan); margin-right: 8px; }
.p-card .link { font-weight: 600; margin-top: 8px; }
.p-card .body .card-tagline { color: var(--text); font-weight: 600; font-size: 1.02rem; flex: 0 0 auto; margin: 0; }

/* ---- Product page narrative block (Scheme B) ---- */
.pd-story { margin: 20px 0 22px; padding-left: 18px; border-left: 3px solid var(--cyan); }
.pd-story h2 { font-family: var(--serif); font-size: 1.55rem; line-height: 1.3; margin-bottom: 12px; }
.pd-story p { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 12px; }
.pd-story p:last-child { margin-bottom: 0; }

/* ---- Insurance / quote band ---- */
.quote-band {
  background: linear-gradient(135deg, #0D1A1B 0%, var(--bg-2) 55%, #0D1A1B 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; padding: 100px 0;
}
.quote-band blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.5rem); max-width: 900px; margin: 0 auto 22px; line-height: 1.45; }
.quote-band .sub { color: var(--muted); font-size: 1.1rem; }

/* ---- Value grid ---- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.v-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.v-card h3 { margin-bottom: 10px; color: var(--cyan); font-family: var(--serif); }
.v-card p { color: var(--muted); font-size: 0.95rem; }

.check-list { list-style: none; }
.check-list li { padding: 8px 0 8px 30px; position: relative; color: var(--muted); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }

/* ---- Patent strip ---- */
.patent-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.patent-chip {
  border: 1px solid var(--border); border-radius: 999px; padding: 10px 22px;
  font-size: 0.9rem; color: var(--muted); background: var(--surface);
}
.patent-chip b { color: var(--cyan); font-weight: 600; }

/* ---- Patent card wall ---- */
.patent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.doc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.25s, border-color 0.25s;
}
.doc-card:hover { transform: translateY(-6px); border-color: rgba(0, 194, 199, 0.5); }
.doc-card .jur { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.doc-card h3 { font-size: 1.05rem; }
.doc-card .no { font-family: var(--serif); color: var(--text); font-size: 0.95rem; }
.doc-card a.view { margin-top: auto; font-size: 0.9rem; font-weight: 600; }

/* ---- FAQ ---- */
.faq-list details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; padding: 20px 26px; font-weight: 600; 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: '+'; color: var(--cyan); font-size: 1.4rem; font-family: var(--serif); flex: none; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list .answer { padding: 0 26px 22px; color: var(--muted); }

/* ---- Product detail page ---- */
.pd-hero { padding: 70px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pd-media { background: #0E0E12; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; }
.pd-media img { width: 100%; display: block; }
.pd-media img.alt-color { position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s; }
.pd-media.show-alt img.alt-color { opacity: 1; }
.color-switch { display: flex; gap: 12px; margin-top: 18px; }
.color-btn {
  border: 1px solid var(--border); background: var(--surface); color: var(--muted);
  padding: 8px 20px; border-radius: 999px; cursor: pointer; font-size: 0.88rem; font-family: var(--sans);
}
.color-btn.active { border-color: var(--cyan); color: var(--cyan); }
.spec-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.spec-chips span { border: 1px solid rgba(0, 194, 199, 0.35); color: var(--cyan); border-radius: 999px; padding: 6px 16px; font-size: 0.85rem; }
.video-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #000; }
.video-wrap video { width: 100%; display: block; }

/* ---- Timeline (milestones / process) ---- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--cyan), rgba(0,194,199,0.1)); }
.tl-item { position: relative; padding: 0 0 34px 20px; }
.tl-item::before {
  content: ''; position: absolute; left: -32px; top: 7px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--bg); border: 3px solid var(--cyan);
}
.tl-item .year { color: var(--cyan); font-family: var(--serif); font-size: 1.05rem; font-weight: 700; }
.tl-item p { color: var(--muted); margin-top: 6px; }

/* ---- Process flow ---- */
.flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.flow-step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 16px; text-align: center; position: relative;
}
.flow-step .n { font-family: var(--serif); color: var(--cyan); font-size: 1.5rem; display: block; margin-bottom: 8px; }
.flow-step h3 { font-size: 1rem; margin-bottom: 6px; }
.flow-step p { font-size: 0.82rem; color: var(--muted); }
.flow-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  color: var(--cyan); font-size: 1.1rem; z-index: 2;
}

/* ---- Two-col ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col img { border-radius: var(--radius); }

/* ---- CTA band ---- */
.cta-band { text-align: center; padding: 90px 0; background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(0, 194, 199, 0.1), transparent 70%), var(--bg-2); border-top: 1px solid var(--border); }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---- Breadcrumb ---- */
.crumbs { padding: 22px 0 0; font-size: 0.85rem; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--cyan); }
.crumbs span.sep { margin: 0 8px; color: var(--border); }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-grid img { height: 44px; margin-bottom: 16px; }
.footer-grid h4 { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { color: var(--muted); font-size: 0.92rem; }
.footer-grid ul a:hover { color: var(--cyan); }
.footer-grid p, .footer-grid address { color: var(--muted); font-size: 0.92rem; font-style: normal; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 0.82rem; }

/* ---- Boot animation (index only) ---- */
.boot-overlay[hidden] { display: none; }
.boot-overlay {
  position: fixed; inset: 0; z-index: 9999; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
.boot-overlay.boot-fade { opacity: 0; pointer-events: none; }
.boot-inner { text-align: center; }
.boot-logo { width: 150px; opacity: 0; animation: bootLogo 0.9s ease forwards 0.15s; }
.boot-key { width: 72px; margin: 30px auto 0; display: block; }
.boot-key svg { animation: bootKey 1s cubic-bezier(0.6, 0, 0.2, 1) forwards 1s; transform-origin: 34px 34px; }
.boot-tag { margin-top: 26px; font-family: var(--serif); font-size: 1.25rem; color: var(--text); opacity: 0; animation: bootLogo 0.7s ease forwards 1.9s; }
.boot-tag .accent { color: var(--cyan); }
.boot-skip {
  position: absolute; bottom: 40px; right: 44px; background: none; border: 1px solid var(--border);
  color: var(--muted); border-radius: 999px; padding: 8px 22px; cursor: pointer; font-size: 0.85rem;
}
.boot-skip:hover { color: var(--cyan); border-color: var(--cyan); }
@keyframes bootLogo { to { opacity: 1; } }
@keyframes bootKey { to { transform: rotate(-90deg); } }

/* ---- Reveal on scroll (JS-gated; content always in HTML) ---- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero-grid, .two-col, .pd-hero { grid-template-columns: 1fr; gap: 34px; }
  .hero-media video { aspect-ratio: 16 / 9; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards, .value-grid { grid-template-columns: 1fr; }
  .patent-grid { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .flow-step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; background: var(--bg-2); padding: 20px 24px;
    border-bottom: 1px solid var(--border); gap: 16px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
}
@media (max-width: 560px) {
  .steps, .patent-grid, .flow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 64px 0; }
}

/* ---- Contact cards (index) ---- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 22px; display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--text); transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.contact-card:hover { transform: translateY(-6px); border-color: rgba(0, 194, 199, 0.5); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); color: var(--text); }
.cc-icon {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(0, 194, 199, 0.1); border: 1px solid rgba(0, 194, 199, 0.35); color: var(--cyan);
}
.cc-icon svg { width: 26px; height: 26px; }
.cc-name { font-weight: 600; }
.cc-value { color: var(--muted); font-size: 0.88rem; word-break: break-all; text-align: center; }

/* ---- Footer contact icon rows ---- */
.fc-row { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; color: var(--muted); font-size: 0.92rem; }
.fc-row svg { width: 15px; height: 15px; flex: none; color: #C9C9D2; }
.fc-row a { color: var(--muted); word-break: break-all; }
.fc-row a:hover { color: var(--cyan); }

@media (max-width: 980px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-cards { grid-template-columns: 1fr; } }

/* ---- Blog article ---- */
.article-body { max-width: 780px; margin: 0 auto; }
.article-body h1 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.article-meta { color: var(--muted); font-size: 0.9rem; margin: 16px 0 20px; }
.article-hero { border-radius: var(--radius); margin: 26px 0 12px; }
.article-body h2 { font-size: 1.45rem; margin: 46px 0 14px; }
.article-body > p { color: #C9C9D2; margin-bottom: 18px; }
.article-body > p a { font-weight: 600; }
.article-cta {
  margin-top: 56px; padding: 30px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.article-cta p { margin-bottom: 16px; font-weight: 600; }
@media (max-width: 720px) { .cards[style*="repeat(2,1fr)"] { grid-template-columns: 1fr !important; } }

/* ---- Quote form ---- */
.quote-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 36px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.span-2 { grid-column: 1 / -1; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.field label i { color: var(--cyan); font-style: normal; }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 15px; color: var(--text); font-family: var(--sans); font-size: 0.95rem;
  width: 100%; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 194, 199, 0.15);
}
.field ::placeholder { color: #6E6E78; }
.field select { appearance: auto; cursor: pointer; }
.field textarea { resize: vertical; min-height: 130px; }
.form-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 26px; flex-wrap: wrap;
}
.quote-thanks {
  background: rgba(0, 194, 199, 0.1); border: 1px solid rgba(0, 194, 199, 0.45);
  border-radius: var(--radius); padding: 22px 26px; margin-bottom: 26px;
}
.quote-thanks b { color: var(--cyan); display: block; margin-bottom: 6px; }
.quote-thanks p { color: var(--muted); font-size: 0.95rem; }

/* ---- Quote CTA strip (product pages) ---- */
.quote-strip { padding: 0 0 90px; }
.quote-strip-inner {
  background: linear-gradient(135deg, rgba(0, 194, 199, 0.12), rgba(0, 194, 199, 0.03)), var(--surface);
  border: 1px solid rgba(0, 194, 199, 0.35); border-radius: var(--radius);
  padding: 38px 40px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.quote-strip-inner h2 { font-size: 1.4rem; margin-bottom: 6px; }
.quote-strip-inner p { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 28px 22px; }
  .quote-strip-inner { padding: 28px 24px; }
}


/* ---- Fingerprint identification badge (RF-2) ---- */
.fp-badge {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 128px; height: 128px; border-radius: 50%; margin-top: 22px;
  border: 2px solid rgba(0, 194, 199, 0.55); background: rgba(0, 194, 199, 0.07);
}
.fp-badge small { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.fp-badge b { font-family: var(--serif); font-size: 1.9rem; color: var(--cyan); }
