/* ================================================
   PerfectBike Marketing — Shared Styles
   ================================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Custom Properties */
:root {
  --bg: #0a0d14;
  --bg2: #0f1219;
  --bg3: #111626;
  --card: #141a28;
  --card2: #181f30;
  --card-h: #1c2438;
  --border: #1e2a3e;
  --border2: #283650;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted2: #64748b;
  --orange: #f97316;
  --orange-glow: rgba(249, 115, 22, .25);
  --orange-deep: #ea580c;
  --orange-s: rgba(249, 115, 22, .08);
  --orange-s2: rgba(249, 115, 22, .15);
  --green: #22c55e;
  --green-s: rgba(34, 197, 94, .08);
  --green-b: rgba(34, 197, 94, .25);
  --red: #ef4444;
  --red-s: rgba(239, 68, 68, .08);
  --blue: #3b82f6;
  --blue-s: rgba(59, 130, 246, .08);
  --blue-b: rgba(59, 130, 246, .25);
  --purple: #a855f7;
  --purple-s: rgba(168, 85, 247, .08);
  --purple-b: rgba(168, 85, 247, .25);
  --display: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

/* Base */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Utilities */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.wrap-w { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.o { color: var(--orange); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* Ambient Effects */
body::before {
  content: ''; position: fixed; top: -240px; right: -140px;
  width: 700px; height: 700px; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 35% 35%, rgba(249, 115, 22, .1), transparent 60%);
}
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
}

/* Reveal Animations */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* Logo */
.logo-mark {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark img { display: block; border: none; outline: none; }
.nav-l, .nav-l img, .nav-l svg { border: none; outline: none; }
.pb { display: inline-flex; align-items: baseline; font-weight: 700; letter-spacing: -.01em; }
.pb .p { color: var(--text); }
.pb .b { color: var(--orange); }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 13, 20, .86);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 42, 62, .5);
}
.nav-in {
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-l { display: flex; align-items: center; gap: 11px; }
.nav-l .pb { font-size: 17px; }
.nav-r { display: flex; align-items: center; gap: 24px; }
.nav-r a {
  font-size: 13.5px; color: var(--muted); font-weight: 600; transition: color .2s;
}
.nav-r a:hover { color: var(--text); }
.nav-r a.btn-p { color: var(--bg); }
.nav-r a.btn-p:hover { color: var(--bg); }
.nav-r a.active { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px; border-radius: 11px; font-weight: 700;
  font-size: 13.5px; border: 1px solid transparent;
  transition: all .2s; white-space: nowrap;
}
.btn-p {
  background: var(--orange); color: var(--bg);
  box-shadow: 0 2px 12px var(--orange-glow);
}
.btn-p:hover {
  background: var(--orange-deep); transform: translateY(-1px);
  box-shadow: 0 5px 20px var(--orange-glow);
}
.btn-p svg { transition: transform .2s; }
.btn-p:hover svg { transform: translateX(3px); }
.btn-g { border-color: var(--border); color: var(--text); }
.btn-g:hover { border-color: var(--border2); background: var(--card); }

/* Burger Menu */
.burger { display: none; color: var(--text); font-size: 1.4rem; }

/* Sections */
.sec { position: relative; z-index: 1; padding: 80px 0; border-top: 1px solid rgba(30, 42, 62, .4); }
.sec-label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--orange); margin-bottom: 11px;
}
.sec-heading {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.12;
  letter-spacing: -.03em; margin-bottom: 14px;
}
.sec-sub {
  font-size: 14.5px; color: var(--muted); line-height: 1.65;
  max-width: 620px; margin-bottom: 40px;
}

/* Hero */
.hero { position: relative; z-index: 1; padding: 100px 0 60px; text-align: center; }
.hero .sec-label { margin-bottom: 14px; }
.hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); line-height: 1.08;
  letter-spacing: -.04em; margin-bottom: 16px;
}
.hero-sub {
  color: var(--muted); font-size: 15.5px; max-width: 540px;
  margin: 0 auto 28px; line-height: 1.65;
}

/* CTA Section */
.cta-sec { padding: 80px 0 100px; position: relative; z-index: 1; }
.cta-box {
  text-align: center; padding: 56px 40px; border-radius: 18px;
  background: linear-gradient(180deg, var(--card), var(--bg2));
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.1;
  letter-spacing: -.03em; margin-bottom: 12px; position: relative;
}
.cta-box p { color: var(--muted); font-size: 14px; margin-bottom: 24px; position: relative; }
.cta-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative;
}

/* Footer */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border); padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p {
  font-size: 12.5px; color: var(--muted2); line-height: 1.6;
  margin-top: 12px; max-width: 260px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted2); font-weight: 600; margin-bottom: 4px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--muted);
  padding: 4px 0; transition: color .2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 11.5px; color: var(--muted2);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted2); transition: color .2s; }
.footer-links a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 768px) {
  .burger { display: block; }
  .nav-r {
    display: none; position: absolute; top: 60px; left: 0; right: 0;
    background: rgba(10, 13, 20, .97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column; padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-r.open { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ================================================
   Shared Component Styles
   ================================================ */

/* Keyframes */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Kicker pill */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; color: var(--muted); font-weight: 600;
  padding: 6px 13px; border: 1px solid rgba(30, 42, 62, .6);
  background: rgba(20, 26, 40, .5); border-radius: 999px; margin-bottom: 18px;
  animation: fadeUp .6s ease-out;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
.btn-lg { padding: 13px 28px; font-size: 14.5px; border-radius: 13px; }

/* Tier Cards */
.tiers-header { text-align: center; margin-bottom: 52px; }
.tiers-header .sec-sub { margin-left: auto; margin-right: auto; }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 900px; margin-left: auto; margin-right: auto; }
.tier {
  border-radius: 14px; background: var(--card); border: 1px solid var(--border);
  padding: 28px 24px; display: flex; flex-direction: column; transition: all .3s;
}
.tier:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0, 0, 0, .3); }
.tier.tier-pop, .tier.tier-f {
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--card), var(--orange-s));
  box-shadow: 0 0 0 1px var(--orange), 0 10px 36px rgba(0, 0, 0, .3);
}
.tier.tier-pop:hover, .tier.tier-f:hover {
  box-shadow: 0 0 0 1px var(--orange), 0 14px 44px rgba(0, 0, 0, .35);
}
.tier-badge {
  display: inline-block; width: fit-content; font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; padding: 3px 8px;
  border-radius: 5px; margin-bottom: 14px;
}
.tier-badge-pop { background: var(--orange); color: var(--bg); }
.tier h2, .tier h3 { font-family: var(--display); font-weight: 800; font-size: 1.35rem; margin-bottom: 5px; }
.tier-desc { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-bottom: 18px; }
.tier-price { margin-bottom: 18px; }
.tier-price-val { font-family: var(--display); font-weight: 800; font-size: 1.7rem; }
.tier-price-note { font-size: 11.5px; color: var(--muted2); }
.tier-feats { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; margin-bottom: 22px; }
.tier-feats li { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.tier-feats li span { color: var(--orange); flex-shrink: 0; margin-top: 1px; font-size: 12px; }
.tier-btn { display: block; text-align: center; padding: 11px; border-radius: 11px; font-weight: 700; font-size: 13.5px; transition: all .2s; }
.tier-btn-p { background: var(--orange); color: var(--bg); box-shadow: 0 2px 12px var(--orange-glow); }
.tier-btn-p:hover { background: var(--orange-deep); }
.tier-btn-s { border: 1px solid var(--border); color: var(--text); }
.tier-btn-s:hover { border-color: var(--border2); background: var(--card-h); }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; }
.faq-items { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; color: var(--text); padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 600; text-align: left; transition: color .2s;
}
.faq-q:hover { color: var(--orange); }
.faq-chev { transition: transform .3s; color: var(--muted2); flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-chev { transform: rotate(180deg); color: var(--orange); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding-bottom: 16px; font-size: 13px; color: var(--muted); line-height: 1.65; }

/* How Cards */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.how-card {
  border-radius: 14px; background: var(--card); border: 1px solid var(--border);
  padding: 28px 22px; transition: all .3s;
}
.how-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0, 0, 0, .3); }
.how-card-num { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--orange); margin-bottom: 12px; letter-spacing: .02em; }
.how-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.how-card p { color: var(--muted); font-size: 13px; line-height: 1.55; }

/* Before/After Cards */
.ba-header { text-align: center; margin-bottom: 44px; }
.ba-header .sec-sub { margin-left: auto; margin-right: auto; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 880px; margin: 0 auto; }
.ba-card { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 28px; transition: border-color .3s; }
.ba-card:hover { border-color: var(--border2); }
.ba-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ba-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.ba-dot { width: 6px; height: 6px; border-radius: 2px; background: var(--orange); flex-shrink: 0; margin-top: 6px; }
.ba-dot-l { opacity: .55; }

/* Divider */
.divider { position: relative; z-index: 1; padding: 64px 0; text-align: center; border-top: 1px solid rgba(30, 42, 62, .4); }
.divider h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--muted); }
.divider h2 strong { color: var(--text); }
.divider p { font-size: 13.5px; color: var(--muted2); margin-top: 5px; }

/* Compare Cards */
.compare { position: relative; z-index: 1; padding: 0 0 96px; border-bottom: 1px solid rgba(30, 42, 62, .4); }
.compare-label { text-align: center; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--orange); margin-bottom: 32px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 960px; margin: 0 auto; }
.ccard { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 22px; transition: border-color .3s; }
.ccard:hover { border-color: var(--border2); }
.ccard.ccard-pb { border-color: rgba(249, 115, 22, .18); background: linear-gradient(180deg, var(--card), var(--orange-s)); }
.ccard.ccard-pb:hover { border-color: rgba(249, 115, 22, .3); }
.ccard-head { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.ccard-head h3 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.sz { margin-bottom: 13px; } .sz:last-of-type { margin-bottom: 0; }
.sz-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 5px; }
.sz-name { font-weight: 700; font-size: 13.5px; }
.sz-range { font-size: 11.5px; color: var(--muted); }
.sz-track { height: 8px; border-radius: 99px; background: rgba(30, 42, 62, .5); position: relative; overflow: hidden; }
.sz-bar { position: absolute; top: 0; bottom: 0; background: rgba(239, 68, 68, .75); border-radius: 99px; }
.sz-reach { font-family: var(--mono); font-size: 11px; color: var(--muted2); margin-top: 4px; }
.sz-reach span { color: var(--muted); }
.trad-note { margin-top: 16px; font-size: 11.5px; color: var(--muted2); line-height: 1.45; }
.pb-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.pb-bike { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.pb-size { font-size: 11px; color: var(--muted2); margin-top: 1px; }
.pb-badge { background: var(--green-s); border: 1px solid var(--green-b); color: var(--green); padding: 4px 11px; border-radius: 7px; font-weight: 700; font-size: 11.5px; text-align: center; }
.pb-badge-sub { font-size: 9px; font-weight: 500; margin-top: 1px; }
.pb-mets { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 10px; }
.pb-m { background: var(--bg2); border: 1px solid var(--border); border-radius: 9px; padding: 9px 11px; }
.pb-m-l { font-size: 9.5px; color: var(--muted2); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }
.pb-m-v { font-family: var(--mono); font-size: 13px; font-weight: 600; margin-top: 2px; }
.pb-m-bar { height: 3px; border-radius: 2px; background: rgba(30, 42, 62, .5); margin-top: 5px; overflow: hidden; }
.pb-m-f { height: 100%; border-radius: 2px; }
.pb-tweaks { margin-top: 14px; padding: 10px 14px; background: rgba(255, 255, 255, .03); border: 1px solid var(--border); border-radius: 9px; }
.pb-tw-head { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); margin-bottom: 8px; }
.pb-tw-item { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; }
.pb-tw-item + .pb-tw-item { border-top: 1px solid rgba(255, 255, 255, .04); }
.pb-tw-name { font-weight: 600; font-size: .8rem; }
.pb-tw-tags { display: flex; gap: 5px; }
.pb-tw-tag { font-size: .55rem; font-weight: 600; padding: 2px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: .04em; }
.pb-tw-tag.easy { background: rgba(34, 197, 94, .12); color: var(--green); }
.pb-tw-tag.free { background: rgba(34, 197, 94, .12); color: var(--green); }
.pb-tw-tag.mod { background: rgba(249, 115, 22, .12); color: var(--orange); }
.pb-tw-tag.cost { background: rgba(255, 255, 255, .06); color: var(--muted); }
.pb-tw-est { font-size: .68rem; color: var(--muted2); border-top: 1px solid rgba(255, 255, 255, .04); padding-top: 7px; margin-top: 3px; }
.pb-verdict { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: var(--green-s); border: 1px solid var(--green-b); border-radius: 9px; padding: 9px 12px; margin-top: 10px; }
.pb-verdict strong { font-size: 12.5px; color: var(--green); }
.pb-verdict .pv-meta { font-size: 10px; color: var(--muted); margin-top: 1px; }
.pb-verdict .pv-score { font-family: var(--mono); font-size: 11px; color: var(--muted); white-space: nowrap; }

/* Brands Ticker */
.brands { position: relative; z-index: 1; padding: 48px 0; border-top: 1px solid rgba(30, 42, 62, .4); border-bottom: 1px solid rgba(30, 42, 62, .4); }
.brands-label { text-align: center; font-size: 11.5px; color: var(--muted2); margin-bottom: 22px; }
.ticker-wrap { overflow: hidden; }
.ticker { display: flex; gap: 40px; width: max-content; animation: tick 30s linear infinite; }
.ticker span { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--muted2); white-space: nowrap; opacity: .45; transition: all .3s; }
.ticker span:hover { color: var(--text); opacity: 1; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 26px; transition: all .3s; }
.review:hover { border-color: var(--border2); transform: translateY(-2px); }
.review-stars { color: var(--orange); font-size: 12px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 9px; }
.review-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--bg);
}
.review-name { font-weight: 700; font-size: 13px; }
.review-role { font-size: 11px; color: var(--muted2); }

/* Shared Component Responsive */
@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .tiers-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ================================================
   Cookie Consent Banner
   ================================================ */
.cc-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--card); border-top: 1px solid var(--border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 20px 24px; animation: fadeUp .4s ease-out;
}
.cc-content {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cc-text { flex: 1; min-width: 280px; }
.cc-title {
  font-family: var(--display); font-weight: 700;
  font-size: 15px; margin-bottom: 4px;
}
.cc-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
.cc-link { color: var(--orange); text-decoration: underline; }
.cc-link:hover { color: var(--orange-deep); }
.cc-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cc-btn {
  padding: 9px 18px; border-radius: 9px; font-weight: 700;
  font-size: 13px; cursor: pointer; transition: all .2s;
  border: 1px solid transparent; font-family: var(--body);
}
.cc-btn-accept {
  background: var(--orange); color: var(--bg);
  box-shadow: 0 2px 12px var(--orange-glow);
}
.cc-btn-accept:hover { background: var(--orange-deep); }
.cc-btn-reject {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.cc-btn-reject:hover { border-color: var(--border2); background: var(--card-h); }
.cc-btn-settings {
  background: transparent; color: var(--muted);
  border-color: transparent;
}
.cc-btn-settings:hover { color: var(--text); }
.cc-btn-save {
  background: var(--orange); color: var(--bg);
  box-shadow: 0 2px 12px var(--orange-glow);
}
.cc-btn-save:hover { background: var(--orange-deep); }

/* Preferences Panel */
.cc-prefs {
  max-width: 1160px; margin: 16px auto 0;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.cc-pref-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(30, 42, 62, .3);
}
.cc-pref-info { flex: 1; }
.cc-pref-info strong { font-size: 13.5px; display: block; margin-bottom: 2px; }
.cc-pref-info span { font-size: 12px; color: var(--muted); }
.cc-pref-actions { padding-top: 12px; display: flex; justify-content: flex-end; }

/* Toggle Switch */
.cc-toggle {
  position: relative; width: 44px; height: 24px;
  display: inline-block; flex-shrink: 0; margin-left: 16px;
}
.cc-toggle input { opacity: 0; width: 0; height: 0; }
.cc-slider {
  position: absolute; inset: 0; background: var(--border);
  border-radius: 24px; cursor: pointer; transition: background .2s;
}
.cc-slider::before {
  content: ''; position: absolute; left: 3px; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--text); transition: transform .2s;
}
.cc-toggle input:checked + .cc-slider { background: var(--orange); }
.cc-toggle input:checked + .cc-slider::before { transform: translateX(20px); }
.cc-toggle-disabled .cc-slider { opacity: .5; cursor: not-allowed; }

/* Form Consent Checkboxes */
.form-consent { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.form-consent label {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; color: var(--muted); cursor: pointer; line-height: 1.45;
}
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px;
  accent-color: var(--orange); cursor: pointer;
}
.form-consent a { color: var(--orange); text-decoration: underline; }
.form-consent a:hover { color: var(--orange-deep); }
.consent-error {
  color: #ef4444; font-size: 11px; display: none; margin-top: 2px;
}

/* Cookie Consent Responsive */
@media (max-width: 768px) {
  .cc-content { flex-direction: column; align-items: stretch; }
  .cc-actions { justify-content: stretch; }
  .cc-btn { flex: 1; text-align: center; }
}

/* ================================================
   Hero Shared Padding (scoped by layout type)
   ================================================ */
.hero:has(.hero-grid) { padding: 76px 0 60px; }
.hero:not(:has(.hero-grid)) { padding: 80px 0 60px; text-align: center; }

/* ================================================
   Shared: Hero App Mock
   index.html / perfectbike-landing.html / perfectbike-final-v2-claude.html
   ================================================ */
.hero-grid { display: grid; grid-template-columns: 1fr 1.18fr; gap: 48px; align-items: center; }
.hero:has(.hero-grid) h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.3rem,4.8vw,3.4rem); line-height: 1.06; letter-spacing: -.04em; margin-bottom: 14px; animation: fadeUp .6s ease-out .06s both; }
.hero:has(.hero-grid) .hero-sub { color: var(--muted); font-size: 15px; max-width: 460px; margin-bottom: 22px; line-height: 1.6; animation: fadeUp .6s ease-out .12s both; }
.cta-row { display: flex; gap: 11px; flex-wrap: wrap; animation: fadeUp .6s ease-out .18s both; }
.micro { margin-top: 9px; color: var(--muted2); font-size: 11.5px; font-weight: 600; animation: fadeUp .6s ease-out .22s both; }
.hero-app { animation: fadeRight .8s ease-out .15s both; }
.app { border-radius: 14px; border: 1px solid var(--border); background: var(--bg2); box-shadow: 0 20px 60px rgba(0,0,0,.5); overflow: hidden; }
.app-bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: var(--bg); border-bottom: 1px solid var(--border); }
.app-dots { display: flex; gap: 5px; }
.app-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(100,116,139,.2); display: block; }
.app-url { font-family: var(--mono); font-size: 10.5px; color: var(--muted2); }
.app-body { padding: 16px; }
.app-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.app-tags { display: flex; gap: 6px; margin-bottom: 6px; }
.app-tag { font-size: 10px; font-weight: 600; color: var(--muted); background: rgba(30,42,62,.6); border: 1px solid var(--border); padding: 2px 8px; border-radius: 5px; }
.app-bike { font-family: var(--display); font-weight: 700; font-size: 1.2rem; line-height: 1.2; }
.app-bike .o { color: var(--orange); }
.app-size { font-size: 11px; color: var(--muted2); margin-top: 1px; }
.app-match-badge { background: var(--green-s); border: 1px solid var(--green-b); border-radius: 8px; padding: 6px 14px; text-align: center; }
.app-match-label { font-weight: 800; font-size: 13px; color: var(--green); }
.app-match-score { font-size: 10px; color: var(--green); opacity: .8; margin-top: 1px; }
.app-section { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.app-section-title { font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.app-section-title .title-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.fit-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fit-m { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; }
.fit-m-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 3px; }
.fit-m-label { font-size: 10.5px; color: var(--muted2); }
.fit-m-val { font-family: var(--mono); font-size: 14px; font-weight: 600; }
.fit-m-delta { font-size: 11px; font-weight: 600; margin-left: 3px; }
.fit-m-bar { height: 4px; border-radius: 2px; background: rgba(30,42,62,.6); margin-top: 6px; overflow: hidden; }
.fit-m-fill { height: 100%; border-radius: 2px; }
.fit-m-note { font-size: 9.5px; color: var(--muted2); margin-top: 4px; }
.app-verdict { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--green-s); border: 1px solid var(--green-b); border-radius: 10px; padding: 10px 14px; margin-top: 10px; }
.app-verdict-check { width: 22px; height: 22px; border-radius: 6px; background: rgba(34,197,94,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; }
.app-verdict-text { flex: 1; }
.app-verdict-text strong { font-size: 13px; color: var(--green); }
.app-verdict-text p { font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.app-why { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.app-why-title { font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.app-why-list { display: flex; flex-direction: column; gap: 6px; }
.app-why-item { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: var(--muted); line-height: 1.4; }
.app-why-num { width: 18px; height: 18px; border-radius: 5px; background: var(--orange-s2); color: var(--orange); font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.app-geo { margin-top: 10px; }
.app-geo-title { font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.app-geo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.app-geo-cell { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 8px; text-align: center; }
.app-geo-val { font-family: var(--mono); font-size: 13px; font-weight: 700; }
.app-geo-label { font-size: 9px; color: var(--muted2); margin-top: 2px; }
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 28px; } .hero-app { max-width: 540px; } }
@media (max-width: 480px) { .fit-metrics { grid-template-columns: 1fr; } .app-geo-grid { grid-template-columns: repeat(2,1fr); } }

/* ================================================
   Shared: Index / Landing Hero Page Overrides
   index.html / perfectbike-landing.html
   ================================================ */
.sec { padding: 96px 0; }
.sec-heading { font-size: clamp(1.7rem,3.2vw,2.4rem); margin-bottom: 11px; }
.sec-sub { max-width: 500px; margin-bottom: 44px; }
.cta-sec { padding: 96px 0; }
.cta-box { background: linear-gradient(135deg,var(--card),var(--orange-s)); border: 1px solid rgba(249,115,22,.16); border-radius: 22px; padding: 60px 44px; }
.cta-box::before { top: -50%; width: 440px; height: 440px; opacity: .2; }
.cta-box h2 em { color: var(--orange); font-style: italic; }
.cta-box p { max-width: 380px; margin: 0 auto 26px; }
footer { padding: 44px 0 28px; }
.footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand p { margin-top: 10px; max-width: 250px; }
.footer-col h4 { margin-bottom: 10px; }
.footer-col a { padding: 3px 0; }
.footer-bottom { flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 11.5px; color: var(--muted2); }
.footer-links { gap: 16px; }
.footer-links a { font-size: 11.5px; }
.footer-links a:hover { color: var(--muted); }
@media (max-width: 768px) { .cta-box { padding: 40px 22px; } .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }

/* Pages without .cta-box use 80px centered CTA layout (higher specificity via :not) */
.cta-sec:not(:has(.cta-box)) { padding: 80px 0; text-align: center; }
.cta-sec:not(:has(.cta-box)) h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem,3.2vw,2.2rem); line-height: 1.1; letter-spacing: -.03em; margin-bottom: 12px; }
.cta-sec:not(:has(.cta-box)) p { color: var(--muted); font-size: 15px; max-width: 480px; margin: 0 auto 28px; }

/* ================================================
   Shared: Guide Prose
   bike-fit-guide.html / geometry-explained.html
   ================================================ */
.guide-prose { max-width: 720px; }
.guide-prose p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.guide-prose p strong { color: var(--text); font-weight: 600; }

/* ================================================
   Shared: Soft CTA
   bike-fit-guide.html / geometry-explained.html
   ================================================ */
.soft-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-s); border: 1px solid rgba(249,115,22,.2); border-radius: 11px; padding: 12px 20px; margin-top: 8px; font-size: 13.5px; font-weight: 600; color: var(--orange); transition: all .25s; }
.soft-cta:hover { background: var(--orange-s2); border-color: rgba(249,115,22,.4); transform: translateY(-1px); }
.soft-cta svg { flex-shrink: 0; }

/* ================================================
   Shared: TOC Pills
   bike-fit-guide.html / geometry-explained.html
   ================================================ */
.toc { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.toc a { font-size: 13px; font-weight: 500; color: var(--muted); background: var(--card); border: 1px solid var(--border); border-radius: 9px; padding: 8px 16px; transition: all .2s; }
.toc a:hover { color: var(--orange); border-color: var(--orange); }

/* ================================================
   Shared: Fit Color Utilities
   index.html / perfectbike-landing.html / perfectbike-final-v2-claude.html / platform.html
   ================================================ */
.fg { background: var(--green); }
.fo { background: var(--orange); }
.good { color: var(--green); }
.warn { color: var(--orange); }
.bad { color: var(--red); }

/* ================================================
   Shared: Legal Layout
   privacy.html / terms.html
   ================================================ */
.legal-sec { padding: 40px 0 80px; position: relative; z-index: 1; }
.legal-grid { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.legal-toc { position: sticky; top: 80px; }
.legal-toc h4 { font-family: var(--display); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted2); margin-bottom: 12px; }
.legal-toc a { display: block; font-size: 12.5px; color: var(--muted); padding: 6px 0; border-left: 2px solid var(--border); padding-left: 14px; transition: all .2s; text-decoration: none; }
.legal-toc a:hover, .legal-toc a.active { color: var(--orange); border-left-color: var(--orange); }
.legal-body h2 { font-family: var(--display); font-size: 1.25rem; font-weight: 700; margin: 40px 0 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.legal-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-body h3 { font-family: var(--display); font-size: 1rem; font-weight: 600; margin: 24px 0 10px; }
.legal-body p, .legal-body li { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--orange); text-decoration: underline; }
.legal-body a:hover { color: var(--orange-deep); }
.legal-body strong { color: var(--text); }
@media (max-width: 768px) {
  .legal-grid { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
  .legal-toc a { border-left: none; padding-left: 0; padding: 4px 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 11px; }
}

/* ================================================
   === bike-fit-guide.html ===
   ================================================ */
.hero:not(:has(.hero-grid)) h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2rem,4.5vw,3rem); line-height: 1.08; letter-spacing: -.04em; margin-bottom: 16px; }
.hero:not(:has(.hero-grid)) .hero-sub { font-size: 16px; color: var(--muted); line-height: 1.65; max-width: 620px; margin: 0 auto; }
.card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 32px; }
.g-card { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 24px 20px; transition: all .3s; }
.g-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.g-card-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; flex-shrink: 0; }
.g-card-icon.red { background: var(--red-s); color: var(--red); }
.g-card-icon.orange { background: var(--orange-s); color: var(--orange); }
.g-card-icon.green { background: var(--green-s); color: var(--green); }
.g-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.g-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.mistake-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 32px; }
.m-card { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 22px 18px; position: relative; overflow: hidden; }
.m-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); border-radius: 14px 14px 0 0; }
.m-card .m-num { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--red); margin-bottom: 10px; letter-spacing: .02em; }
.m-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.m-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.m-card .m-reality { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.04); font-size: 12px; color: var(--orange); font-weight: 500; }
.pain-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 32px; }
.p-card { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 22px 18px; display: flex; gap: 14px; align-items: flex-start; }
.p-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.p-dot.knee { background: #f59e0b; }
.p-dot.back { background: var(--red); }
.p-dot.neck { background: #a855f7; }
.p-dot.hand { background: #3b82f6; }
.p-dot.sit { background: #ec4899; }
.p-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.p-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.p-card .p-hint { margin-top: 6px; font-size: 12px; color: var(--orange); font-weight: 500; }
@media (max-width: 768px) {
  .card-grid, .pain-grid { grid-template-columns: 1fr; }
  .mistake-grid { grid-template-columns: 1fr; }
  .toc { flex-direction: column; }
}

/* ================================================
   === contact.html ===
   ================================================ */
.contact-sec { padding: 40px 0 80px; position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 22px 20px; transition: all .3s; }
.contact-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.contact-card.active { border-color: var(--orange); background: var(--orange-s); }
.contact-card-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; background: var(--orange); color: #fff; }
.contact-card h3 { font-family: var(--display); font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.contact-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.contact-card a.contact-link { display: inline-flex; align-items: center; gap: 5px; color: var(--orange); font-size: 13px; font-weight: 600; margin-top: 8px; transition: gap .2s; }
.contact-card a.contact-link:hover { gap: 8px; }
.contact-form-wrap { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 32px 28px; }
.contact-form-wrap h3 { font-family: var(--display); font-weight: 800; font-size: 1.2rem; margin-bottom: 4px; }
.contact-form-wrap .form-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea { background: var(--bg2); border: 1px solid var(--border); border-radius: 9px; padding: 10px 14px; font-family: var(--body); font-size: 13.5px; color: var(--text); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted2); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-group select option { background: var(--bg2); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 20px; }
.form-submit .btn-p { width: 100%; justify-content: center; padding: 12px 20px; font-size: 14px; }
.form-note { font-size: 11px; color: var(--muted2); margin-top: 10px; text-align: center; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* ================================================
   === for-industry.html ===
   ================================================ */
.hero-left { max-width: 520px; }
.hero-micro { margin-top: 14px; color: var(--muted2); font-size: 11.5px; font-weight: 600; animation: fadeUp .6s ease-out .22s both; display: flex; align-items: center; gap: 6px; }
.hero-micro svg { flex-shrink: 0; }
.widget-mock { animation: fadeRight .8s ease-out .15s both; }
.mock-browser { border-radius: 14px; border: 1px solid var(--border); background: var(--bg2); box-shadow: 0 24px 64px rgba(0,0,0,.5); overflow: hidden; }
.mock-bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: var(--bg); border-bottom: 1px solid var(--border); }
.mock-dots { display: flex; gap: 5px; }
.mock-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(100,116,139,.2); display: block; }
.mock-url { font-family: var(--mono); font-size: 10.5px; color: var(--muted2); }
.mock-body { padding: 20px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; align-items: start; }
.mock-product { min-height: 240px; }
.mock-img { background: linear-gradient(135deg,var(--card),var(--card2)); border: 1px solid var(--border); border-radius: 10px; height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.mock-img svg { opacity: .25; }
.mock-brand { font-size: 9.5px; color: var(--muted2); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.mock-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.mock-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; }
.mock-price { font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--orange); }
.mock-msrp { font-size: 11px; color: var(--muted2); text-decoration: line-through; }
.mock-size-label { font-size: 10px; color: var(--muted2); font-weight: 600; margin-bottom: 6px; }
.mock-sizes { display: flex; gap: 5px; margin-bottom: 12px; }
.mock-sz { width: 30px; height: 26px; border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; color: var(--muted); }
.mock-sz.active { border-color: var(--orange); color: var(--orange); background: var(--orange-s); }
.mock-cart { display: block; width: 100%; padding: 9px; text-align: center; background: var(--card2); border: 1px solid var(--border2); border-radius: 8px; font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.mock-widget { border: 1px solid rgba(249,115,22,.2); border-radius: 12px; background: linear-gradient(180deg,var(--card),rgba(249,115,22,.03)); padding: 14px; box-shadow: 0 4px 24px rgba(249,115,22,.08); }
.mw-header { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; }
.mw-logo { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mw-logo img { display: block; }
.mw-title { font-size: 11px; font-weight: 700; }
.mw-subtitle { font-size: 9px; color: var(--muted2); }
.mw-verdict { display: flex; align-items: center; gap: 8px; padding: 10px; background: var(--green-s); border: 1px solid var(--green-b); border-radius: 8px; margin-bottom: 10px; }
.mw-verdict-icon { width: 24px; height: 24px; border-radius: 6px; background: rgba(34,197,94,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; color: var(--green); }
.mw-verdict-text { font-size: 11px; font-weight: 700; color: var(--green); }
.mw-verdict-sub { font-size: 9px; color: var(--muted); margin-top: 1px; font-weight: 400; }
.mw-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.mw-m { background: var(--bg2); border: 1px solid var(--border); border-radius: 7px; padding: 7px 9px; }
.mw-m-label { font-size: 8.5px; color: var(--muted2); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }
.mw-m-val { font-family: var(--mono); font-size: 11.5px; font-weight: 600; margin-top: 1px; }
.mw-m-bar { height: 3px; border-radius: 2px; background: rgba(30,42,62,.5); margin-top: 4px; overflow: hidden; }
.mw-m-fill { height: 100%; border-radius: 2px; }
.mw-sizes { margin-bottom: 8px; }
.mw-sizes-label { font-size: 9px; font-weight: 600; color: var(--muted2); margin-bottom: 5px; }
.mw-size-row { display: flex; align-items: center; gap: 6px; padding: 4px 0; }
.mw-size-row + .mw-size-row { border-top: 1px solid rgba(30,42,62,.3); }
.mw-size-name { font-size: 10px; font-weight: 700; width: 24px; }
.mw-size-bar-wrap { flex: 1; height: 5px; border-radius: 3px; background: rgba(30,42,62,.5); overflow: hidden; }
.mw-size-bar-fill { height: 100%; border-radius: 3px; }
.mw-size-score { font-family: var(--mono); font-size: 9px; font-weight: 600; width: 28px; text-align: right; }
.mw-powered { font-size: 8px; color: var(--muted2); text-align: center; margin-top: 6px; opacity: .6; }
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } .widget-mock { max-width: 560px; } }
@media (max-width: 640px) { .mock-body { grid-template-columns: 1fr; } .mock-product { min-height: auto; } }
.stats-bar { position: relative; z-index: 1; padding: 56px 0; border-top: 1px solid rgba(30,42,62,.4); border-bottom: 1px solid rgba(30,42,62,.4); }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: center; }
.stat { padding: 24px; }
.stat-val { font-family: var(--display); font-weight: 800; font-size: clamp(2rem,4vw,2.8rem); line-height: 1; letter-spacing: -.03em; color: var(--orange); margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; line-height: 1.45; }
.stat-src { font-size: 10px; color: var(--muted2); margin-top: 4px; font-style: italic; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; gap: 12px; } .stat { padding: 18px 24px; } }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.step { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 28px 22px; transition: all .3s; position: relative; }
.step:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,.3); }
.step-num { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--orange); margin-bottom: 14px; letter-spacing: .02em; }
.step-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--orange-s2); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--orange); }
.step h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 12.5px; line-height: 1.55; }
@media (max-width: 1024px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .steps-grid { grid-template-columns: 1fr; } }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.benefit { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 28px 24px; transition: all .3s; }
.benefit:hover { border-color: var(--border2); }
.benefit-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--orange-s2); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--orange); }
.benefit h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.benefit p { color: var(--muted); font-size: 12.5px; line-height: 1.55; }
@media (max-width: 768px) { .benefits-grid { grid-template-columns: 1fr; } }
.network-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.network-visual { border-radius: 14px; border: 1px solid var(--border); background: var(--card); padding: 32px; position: relative; overflow: hidden; }
.network-visual::before { content: ''; position: absolute; top: -30%; left: -10%; width: 200px; height: 200px; background: radial-gradient(circle,rgba(249,115,22,.1),transparent 70%); pointer-events: none; }
.nv-counter { text-align: center; margin-bottom: 24px; position: relative; }
.nv-counter-val { font-family: var(--display); font-weight: 800; font-size: 3rem; color: var(--orange); letter-spacing: -.03em; }
.nv-counter-label { font-size: 12px; color: var(--muted); margin-top: 2px; }
.nv-nodes { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; position: relative; }
.nv-node { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; border: 1px solid; }
.nv-node-rider { background: var(--orange-s); border-color: rgba(249,115,22,.2); color: var(--orange); }
.nv-node-partner { background: var(--green-s); border-color: var(--green-b); color: var(--green); }
.nv-legend { display: flex; justify-content: center; gap: 18px; margin-top: 16px; }
.nv-legend-item { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--muted); }
.nv-legend-dot { width: 8px; height: 8px; border-radius: 3px; }
.network-text h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem,2.5vw,1.8rem); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 14px; }
.network-text p { color: var(--muted); font-size: 13.5px; line-height: 1.65; margin-bottom: 14px; }
.network-text p:last-of-type { margin-bottom: 0; }
@media (max-width: 900px) { .network-layout { grid-template-columns: 1fr; gap: 32px; } }
.tech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.tech-card { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 22px 20px; transition: border-color .3s; }
.tech-card:hover { border-color: var(--border2); }
.tech-card h4 { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--orange); margin-bottom: 8px; }
.tech-card p { font-size: 12.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 768px) { .tech-grid { grid-template-columns: 1fr; } }
.tier-target { font-size: 11px; color: var(--muted2); margin-bottom: 16px; padding: 8px 12px; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; }
.tier-target strong { color: var(--muted); font-weight: 600; }
.tier-overage { font-size: 11px; color: var(--muted2); margin-bottom: 14px; padding: 8px 12px; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; line-height: 1.5; }
.platforms-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.platform-tag { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--border); border-radius: 10px; background: var(--card); font-size: 13px; font-weight: 600; color: var(--muted); transition: all .2s; }
.platform-tag:hover { border-color: var(--border2); color: var(--text); }
.platform-tag svg { color: var(--orange); flex-shrink: 0; }
.pilot-form { position: relative; z-index: 1; padding: 0 0 96px; border-bottom: 1px solid rgba(30,42,62,.4); }
.pilot-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; }
.pilot-info h3 { font-family: var(--display); font-weight: 800; font-size: 1.3rem; margin-bottom: 14px; }
.pilot-info p { color: var(--muted); font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.pilot-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.pilot-checklist li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.pilot-checklist li span { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pilot-form-wrap { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.pilot-form-wrap h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pilot-form-sub { font-size: 12px; color: var(--muted2); margin-bottom: 20px; }
.pilot-form-wrap .form-row { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.pilot-form-wrap .form-group.full { grid-column: span 2; }
.pilot-form-wrap .form-group label { font-size: 11.5px; }
.pilot-form-wrap .form-group input, .pilot-form-wrap .form-group select, .pilot-form-wrap .form-group textarea { padding: 10px 13px; font-size: 13px; }
.pilot-form-wrap .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.pilot-form-wrap .form-group select option { background: var(--bg); color: var(--text); }
.pilot-form-wrap .form-group textarea { min-height: 72px; }
.pilot-form-wrap .form-submit { margin-top: 16px; }
.pilot-form-wrap .form-note { margin-top: 12px; font-size: 10.5px; }
.pilot-form-wrap .form-submit { display: flex; align-items: center; gap: 14px; }
.trust-bar { position: relative; z-index: 1; padding: 40px 0; border-bottom: 1px solid rgba(30,42,62,.4); }
.trust-items { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); font-weight: 500; }
.trust-item svg { color: var(--green); flex-shrink: 0; }
@media (max-width: 768px) { .pilot-layout { grid-template-columns: 1fr; gap: 28px; } .pilot-form-wrap .form-row { grid-template-columns: 1fr; } .pilot-form-wrap .form-group.full { grid-column: span 1; } }

/* ================================================
   === geometry-explained.html ===
   ================================================ */
.geo-diagram-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.geo-diagram { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 32px; position: relative; overflow: hidden; }
.geo-diagram svg { width: 100%; height: auto; display: block; }
.geo-explain { display: flex; flex-direction: column; gap: 20px; }
.geo-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; transition: all .3s; }
.geo-item:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.geo-item-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.geo-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.geo-dot.reach-dot { background: var(--orange); }
.geo-dot.stack-dot { background: var(--blue); }
.geo-item h3 { font-size: 15px; font-weight: 700; }
.geo-item .geo-val { font-family: var(--mono); font-size: 12px; color: var(--muted2); margin-left: auto; }
.geo-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.geo-item .geo-effect { margin-top: 8px; font-size: 12px; font-weight: 500; display: flex; gap: 16px; }
.geo-effect span { display: inline-flex; align-items: center; gap: 4px; }
.geo-effect .longer { color: var(--orange); }
.geo-effect .shorter { color: var(--blue); }
.cockpit-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.cockpit-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-align: center; }
.cockpit-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.cockpit-card p { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.cockpit-bar { display: flex; align-items: flex-end; gap: 4px; justify-content: center; height: 80px; margin-bottom: 10px; }
.cockpit-seg { width: 32px; border-radius: 4px 4px 0 0; position: relative; }
.cockpit-seg .seg-label { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); font-size: 9px; font-family: var(--mono); color: var(--muted2); white-space: nowrap; }
.cockpit-seg .seg-val { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); font-size: 10px; font-family: var(--mono); font-weight: 600; }
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.cat-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 22px 18px; transition: all .3s; display: flex; flex-direction: column; }
.cat-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.cat-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 6px; display: inline-block; margin-bottom: 12px; width: fit-content; }
.cat-badge.mtb { background: rgba(34,197,94,.12); color: var(--green); }
.cat-badge.road { background: rgba(239,68,68,.12); color: var(--red); }
.cat-badge.gravel { background: rgba(249,115,22,.12); color: var(--orange); }
.cat-badge.commuter { background: rgba(59,130,246,.12); color: var(--blue); }
.cat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cat-card .cat-philosophy { font-size: 12px; color: var(--orange); font-weight: 500; margin-bottom: 12px; }
.cat-card p { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; flex: 1; }
.cat-metrics { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid rgba(255,255,255,.04); padding-top: 12px; }
.cat-metric { display: flex; justify-content: space-between; align-items: center; }
.cat-metric-label { font-size: 11px; color: var(--muted2); }
.cat-metric-bar { flex: 1; margin: 0 10px; height: 4px; background: rgba(255,255,255,.04); border-radius: 2px; overflow: hidden; }
.cat-metric-fill { height: 100%; border-radius: 2px; }
.cat-metric-val { font-family: var(--mono); font-size: 11px; font-weight: 600; min-width: 44px; text-align: right; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 32px; }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 22px 18px; display: flex; gap: 14px; align-items: flex-start; }
.why-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--orange-s); color: var(--orange); }
.why-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }
@media (max-width: 768px) { .geo-diagram-wrap { grid-template-columns: 1fr; } .cockpit-wrap { grid-template-columns: 1fr; } .cat-grid { grid-template-columns: 1fr 1fr; } .why-grid { grid-template-columns: 1fr; } .toc { flex-direction: column; align-items: center; } }
@media (max-width: 480px) { .cat-grid { grid-template-columns: 1fr; } }

/* ================================================
   === how-it-works.html ===
   ================================================ */
.steps-bar { display: flex; justify-content: center; gap: 0; margin-bottom: 64px; }
.step-pip { display: flex; align-items: center; gap: 0; }
.step-pip-dot { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; font-weight: 700; border: 2px solid var(--border); color: var(--muted); transition: all .3s; }
.step-pip-dot.active { border-color: var(--orange); color: var(--orange); background: var(--orange-s); }
.step-pip-line { width: 80px; height: 2px; background: var(--border); }
@media (max-width: 600px) { .step-pip-line { width: 40px; } }
.step-section { padding: 60px 0; border-top: 1px solid var(--border); }
.step-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.step-layout.reverse { direction: rtl; }
.step-layout.reverse > * { direction: ltr; }
.step-num { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--orange); margin-bottom: 8px; letter-spacing: .05em; }
.step-title { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem,2.5vw,1.9rem); line-height: 1.15; letter-spacing: -.03em; margin-bottom: 14px; }
.step-body { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.step-details { display: flex; flex-direction: column; gap: 12px; }
.step-detail { display: flex; gap: 12px; align-items: flex-start; }
.step-detail-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--orange-s); border: 1px solid rgba(249,115,22,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange); font-size: 14px; }
.step-detail-text { font-size: 13px; color: var(--muted); line-height: 1.55; }
.step-detail-text strong { color: var(--text); font-weight: 600; }
.step-visual { border-radius: 14px; border: 1px solid var(--border); background: var(--bg2); overflow: hidden; }
.step-visual-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--bg); border-bottom: 1px solid var(--border); }
.step-visual-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border2); }
.step-visual-body { padding: 24px; }
.scan-mock { display: flex; gap: 20px; align-items: center; }
.scan-figure-wrap { flex-shrink: 0; }
.scan-figure-box { position: relative; width: 200px; height: 220px; border-radius: 12px; background: rgba(30,42,62,.4); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.scan-bar { position: absolute; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,transparent,var(--orange),transparent); box-shadow: 0 0 12px var(--orange), 0 0 30px rgba(249,115,22,.3); animation: scanMove 2.8s ease-in-out infinite; }
@keyframes scanMove { 0% { top: 8%; } 50% { top: 88%; } 100% { top: 8%; } }
.scan-readings { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.scan-reading { display: flex; justify-content: space-between; align-items: center; padding: 6px 10px; border-radius: 6px; background: rgba(255,255,255,.03); border: 1px solid var(--border); font-size: 12px; }
.scan-reading-label { color: var(--muted2); font-weight: 500; }
.scan-reading-val { font-family: var(--mono); color: var(--green); font-weight: 600; font-size: 11px; }
.engine-mock { display: flex; flex-direction: column; gap: 12px; }
.engine-row { display: flex; gap: 10px; align-items: center; }
.engine-label { font-size: 11px; color: var(--muted2); width: 80px; flex-shrink: 0; text-align: right; }
.engine-track { flex: 1; height: 6px; border-radius: 3px; background: var(--border); position: relative; overflow: hidden; }
.engine-fill { height: 100%; border-radius: 3px; transition: width .6s; }
.engine-fill.g { background: var(--green); }
.engine-fill.o { background: var(--orange); }
.engine-fill.r { background: var(--red); }
.engine-val { font-family: var(--mono); font-size: 11px; width: 48px; color: var(--muted); flex-shrink: 0; }
.engine-target { display: flex; gap: 16px; padding: 10px 12px; border-radius: 8px; background: rgba(34,197,94,.06); border: 1px solid var(--green-b); margin-top: 4px; }
.engine-target-item { font-size: 11px; color: var(--muted); }
.engine-target-item strong { color: var(--green); font-family: var(--mono); }
.verdict-mock { display: flex; flex-direction: column; gap: 12px; }
.verdict-bike { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.verdict-meta { font-size: 11px; color: var(--muted2); margin-top: 2px; }
.verdict-score { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 9px; background: var(--green-s); border: 1px solid var(--green-b); }
.verdict-pct { font-family: var(--mono); font-size: 1.3rem; font-weight: 700; color: var(--green); }
.verdict-label { font-size: 12px; color: var(--muted); }
.verdict-mets { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.verdict-met { padding: 8px 10px; border-radius: 7px; background: rgba(255,255,255,.03); border: 1px solid var(--border); }
.verdict-met-l { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted2); margin-bottom: 3px; }
.verdict-met-v { font-family: var(--mono); font-size: 13px; font-weight: 600; }
.verdict-met-v.g { color: var(--green); }
.verdict-met-v.w { color: var(--orange); }
.verdict-adj { padding: 10px 12px; border-radius: 8px; background: rgba(255,255,255,.03); border: 1px solid var(--border); margin-top: 4px; }
.verdict-adj-head { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); margin-bottom: 6px; }
.verdict-adj-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; padding: 3px 0; }
.verdict-adj-row + .verdict-adj-row { border-top: 1px solid rgba(255,255,255,.04); }
.verdict-adj-name { font-weight: 600; font-size: 12px; }
.verdict-adj-tags { display: flex; gap: 4px; }
.verdict-adj-tag { font-size: 9px; font-weight: 600; padding: 2px 6px; border-radius: 3px; text-transform: uppercase; }
.verdict-adj-tag.easy { background: rgba(34,197,94,.12); color: var(--green); }
.verdict-adj-tag.mod { background: rgba(249,115,22,.12); color: var(--orange); }
@media (max-width: 768px) { .step-layout, .step-layout.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; } .step-layout.reverse > * { direction: ltr; } }
.wf-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.wf-card { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 28px 24px; transition: all .3s; }
.wf-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.wf-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; background: var(--orange); color: #fff; }
.wf-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.wf-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.wf-steps { display: flex; flex-direction: column; gap: 4px; }
.wf-step { font-size: 12px; color: var(--muted2); display: flex; align-items: center; gap: 6px; }
.wf-step::before { content: '\2192'; color: var(--orange); font-size: 10px; }
@media (max-width: 600px) { .wf-grid { grid-template-columns: 1fr; } }
.method-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.method-card { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 24px 20px; }
.method-card h3 { font-family: var(--display); font-weight: 700; font-size: .95rem; margin-bottom: 8px; }
.method-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.method-badge { display: inline-block; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 3px 8px; border-radius: 5px; margin-bottom: 12px; }
.method-badge.ai { background: var(--orange-s); color: var(--orange); }
.method-badge.geo { background: var(--green-s); color: var(--green); }
.method-badge.sci { background: rgba(96,165,250,.1); color: #60a5fa; }
@media (max-width: 768px) { .method-grid { grid-template-columns: 1fr; } }

/* ================================================
   === platform.html ===
   ================================================ */
.plat-hero { position: relative; z-index: 1; padding: 72px 0 0; text-align: center; }
.plat-hero .sec-label { margin-bottom: 14px; animation: fadeUp .6s ease-out; }
.plat-hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2rem,4vw,3rem); line-height: 1.08; letter-spacing: -.04em; margin-bottom: 14px; animation: fadeUp .6s ease-out .06s both; }
.plat-hero-sub { color: var(--muted); font-size: 15px; max-width: 560px; margin: 0 auto 0; line-height: 1.6; animation: fadeUp .6s ease-out .12s both; }
.wf-nav { position: relative; z-index: 2; padding: 44px 0 0; }
.wf-pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.wf-pill { display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: 11px; border: 1px solid var(--border); background: var(--card); color: var(--muted); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .25s; }
.wf-pill:hover { border-color: var(--border2); color: var(--text); transform: translateY(-1px); }
.wf-pill.active { border-color: var(--orange); color: var(--text); background: linear-gradient(180deg,var(--card),var(--orange-s)); box-shadow: 0 0 0 1px rgba(249,115,22,.15); }
.wf-pill-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0 10px var(--orange-glow); }
.wf-pill-icon svg { color: #fff; display: block; }
.wf-pill-label { white-space: nowrap; }
@media (max-width: 640px) { .wf-pills { gap: 6px; } .wf-pill { padding: 8px 12px; font-size: 12px; } .wf-pill-icon { width: 26px; height: 26px; } .wf-pill-label { display: none; } .wf-pill.active .wf-pill-label { display: inline; } }
.wf-sec { position: relative; z-index: 1; padding: 96px 0; border-top: 1px solid rgba(30,42,62,.4); }
.wf-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 52px; align-items: center; }
.wf-layout.rev { direction: rtl; }
.wf-layout.rev > * { direction: ltr; }
.wf-badge { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; }
.wf-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0 14px var(--orange-glow); }
.wf-icon svg { color: #fff; display: block; }
.wf-name { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem,2.8vw,2rem); line-height: 1.1; letter-spacing: -.03em; }
.wf-problem { margin-top: 14px; padding: 14px 18px; background: var(--red-s); border: 1px solid rgba(239,68,68,.15); border-radius: 11px; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.wf-problem strong { color: var(--red); font-weight: 700; }
.wf-flow { margin-top: 24px; }
.wf-flow-title { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 12px; }
.wf-steps { display: flex; flex-direction: column; gap: 8px; }
.wf-step { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.wf-step-num { width: 22px; height: 22px; border-radius: 6px; background: var(--orange-s2); color: var(--orange); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-family: var(--mono); }
.wf-diff { margin-top: 24px; padding: 16px 18px; background: linear-gradient(135deg,var(--card),var(--orange-s)); border: 1px solid rgba(249,115,22,.14); border-radius: 11px; }
.wf-diff-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 6px; }
.wf-diff p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.mock { border-radius: 14px; border: 1px solid var(--border); background: var(--bg2); box-shadow: 0 20px 60px rgba(0,0,0,.5); overflow: hidden; }
.m-section { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.m-section-title { font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.m-section-title .td { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.m-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.m-tags { display: flex; gap: 6px; margin-bottom: 6px; }
.m-tag { font-size: 10px; font-weight: 600; color: var(--muted); background: rgba(30,42,62,.6); border: 1px solid var(--border); padding: 2px 8px; border-radius: 5px; }
.m-bike { font-family: var(--display); font-weight: 700; font-size: 1.1rem; line-height: 1.2; }
.m-size { font-size: 11px; color: var(--muted2); margin-top: 1px; }
.m-badge { border-radius: 8px; padding: 6px 14px; text-align: center; }
.m-badge-g { background: var(--green-s); border: 1px solid var(--green-b); }
.m-badge-label { font-weight: 800; font-size: 13px; }
.m-badge-sub { font-size: 10px; opacity: .8; margin-top: 1px; }
.m-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.m-met { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; }
.m-met-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 3px; }
.m-met-label { font-size: 10.5px; color: var(--muted2); }
.m-met-val { font-family: var(--mono); font-size: 14px; font-weight: 600; }
.m-met-delta { font-size: 11px; font-weight: 600; margin-left: 3px; }
.m-met-bar { height: 4px; border-radius: 2px; background: rgba(30,42,62,.6); margin-top: 6px; overflow: hidden; }
.m-met-fill { height: 100%; border-radius: 2px; }
.m-met-note { font-size: 9.5px; color: var(--muted2); margin-top: 4px; }
.m-verdict { display: flex; align-items: center; gap: 10px; background: var(--green-s); border: 1px solid var(--green-b); border-radius: 10px; padding: 10px 14px; }
.m-verdict-ck { width: 22px; height: 22px; border-radius: 6px; background: rgba(34,197,94,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; }
.m-verdict strong { font-size: 13px; color: var(--green); }
.m-verdict p { font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.m-tweaks { padding: 12px 14px; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 9px; margin-top: 10px; }
.m-tw-head { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); margin-bottom: 8px; }
.m-tw-item { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; }
.m-tw-item + .m-tw-item { border-top: 1px solid rgba(255,255,255,.04); }
.m-tw-name { font-weight: 600; font-size: 12px; }
.m-tw-tags { display: flex; gap: 5px; }
.m-tw-tag { font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: .04em; }
.m-tw-tag.easy { background: rgba(34,197,94,.12); color: var(--green); }
.m-tw-tag.free { background: rgba(34,197,94,.12); color: var(--green); }
.m-tw-tag.mod { background: rgba(249,115,22,.12); color: var(--orange); }
.m-tw-tag.cost { background: rgba(255,255,255,.06); color: var(--muted); }
.m-tw-est { font-size: 10.5px; color: var(--muted2); border-top: 1px solid rgba(255,255,255,.04); padding-top: 7px; margin-top: 3px; }
.m-result { display: flex; align-items: center; gap: 14px; padding: 12px 14px; background: var(--card); border: 1px solid var(--border); border-radius: 11px; margin-bottom: 8px; transition: border-color .2s; }
.m-result:last-child { margin-bottom: 0; }
.m-result-rank { font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--orange); width: 18px; text-align: center; flex-shrink: 0; }
.m-result-info { flex: 1; min-width: 0; }
.m-result-name { font-weight: 700; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-result-meta { font-size: 10.5px; color: var(--muted2); margin-top: 1px; }
.m-result-score { flex-shrink: 0; text-align: right; }
.m-result-pct { font-family: var(--mono); font-weight: 700; font-size: 14px; }
.m-result-label { font-size: 9px; color: var(--muted2); margin-top: 1px; }
.m-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.m-sum { text-align: center; padding: 10px; background: var(--bg2); border: 1px solid var(--border); border-radius: 9px; }
.m-sum-val { font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--orange); }
.m-sum-label { font-size: 9.5px; color: var(--muted2); margin-top: 2px; }
.m-pain-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; }
.m-pain-item:last-child { margin-bottom: 0; }
.m-pain-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.m-pain-info { flex: 1; }
.m-pain-cause { font-weight: 700; font-size: 12.5px; margin-bottom: 2px; }
.m-pain-fix { font-size: 11px; color: var(--muted); line-height: 1.45; }
.m-pain-prob { font-family: var(--mono); font-size: 11px; font-weight: 600; flex-shrink: 0; white-space: nowrap; }
.m-url { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; }
.m-url-icon { color: var(--muted2); flex-shrink: 0; }
.m-url-text { font-family: var(--mono); font-size: 11px; color: var(--muted); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-url-btn { padding: 5px 12px; border-radius: 7px; background: var(--orange); color: var(--bg); font-size: 10px; font-weight: 700; flex-shrink: 0; }
.m-neg { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: var(--orange-s); border: 1px solid rgba(249,115,22,.15); border-radius: 10px; margin-top: 10px; }
.m-neg-label { font-size: 11px; color: var(--muted); }
.m-neg-val { font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--orange); }
@media (max-width: 1024px) { .wf-layout, .wf-layout.rev { grid-template-columns: 1fr; direction: ltr; } .wf-layout.rev > * { direction: ltr; } .mock { max-width: 560px; } }
@media (max-width: 480px) { .m-metrics { grid-template-columns: 1fr; } .m-summary { grid-template-columns: 1fr; } }
.found-sec { position: relative; z-index: 1; padding: 96px 0; border-top: 1px solid rgba(30,42,62,.4); }
.found-header { text-align: center; margin-bottom: 48px; }
.found-header .sec-sub { margin: 0 auto; }
.found-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.found-card { border-radius: 14px; background: var(--card); border: 1px solid var(--border); padding: 28px 22px; transition: all .3s; }
.found-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.found-card-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--orange-s2); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--orange); }
.found-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.found-card p { color: var(--muted); font-size: 13px; line-height: 1.55; }
@media (max-width: 768px) { .found-grid { grid-template-columns: 1fr; } }

/* ================================================
   === press-kit.html ===
   ================================================ */
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.ov-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px 20px; }
.ov-card .ov-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted2); margin-bottom: 6px; }
.ov-card .ov-value { font-size: 18px; font-weight: 700; }
.ov-card .ov-detail { font-size: 13px; color: var(--muted); line-height: 1.55; margin-top: 4px; }
.boilerplate { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 32px 28px; margin-bottom: 32px; position: relative; }
.boilerplate .bp-label { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.boilerplate p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.boilerplate p + p { margin-top: 14px; }
.boilerplate p strong { color: var(--text); font-weight: 600; }
.copy-btn { position: absolute; top: 16px; right: 16px; background: var(--card-h); border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px; font-size: 11px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 5px; }
.copy-btn:hover { color: var(--orange); border-color: var(--orange); }
.copy-btn.copied { color: var(--green); border-color: var(--green); }
.what-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 32px; }
.what-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 22px 18px; transition: all .3s; }
.what-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.what-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; background: var(--orange-s); color: var(--orange); }
.what-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.what-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.facts-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 32px; }
.fact { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 22px 18px; text-align: center; }
.fact-num { font-family: var(--mono); font-size: 28px; font-weight: 700; color: var(--orange); line-height: 1; }
.fact-label { font-size: 12px; color: var(--muted); margin-top: 6px; }
.screens-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.screen-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all .3s; }
.screen-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.screen-mock { background: var(--bg2); aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.screen-mock .mock-inner { width: 88%; height: 84%; background: var(--card); border: 1px solid var(--border); border-radius: 8px; position: relative; overflow: hidden; }
.mock-topbar { height: 28px; background: var(--bg); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 10px; gap: 5px; }
.mock-dot { width: 6px; height: 6px; border-radius: 50%; }
.mock-dot.r { background: #ef4444; }
.mock-dot.y { background: #f59e0b; }
.mock-dot.g { background: #22c55e; }
.mock-sidebar { position: absolute; left: 0; top: 28px; bottom: 0; width: 42px; background: rgba(0,0,0,.15); border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; padding-top: 10px; gap: 8px; }
.mock-sidebar-dot { width: 18px; height: 18px; border-radius: 6px; background: rgba(255,255,255,.04); }
.mock-sidebar-dot.active { background: var(--orange-s); border: 1px solid rgba(249,115,22,.25); }
.mock-content { margin-left: 42px; padding: 12px; }
.mock-scan .mock-content { display: flex; flex-direction: column; align-items: center; gap: 8px; padding-top: 16px; }
.mock-silhouette { width: 40px; height: 70px; border: 2px dashed rgba(249,115,22,.3); border-radius: 20px 20px 8px 8px; position: relative; }
.mock-silhouette::before { content: ''; width: 16px; height: 16px; border-radius: 50%; border: 2px dashed rgba(249,115,22,.3); position: absolute; top: -20px; left: 50%; transform: translateX(-50%); }
.mock-measure { width: 80%; height: 6px; border-radius: 3px; background: rgba(249,115,22,.1); }
.mock-measure.active { background: linear-gradient(90deg,var(--orange) 65%,rgba(249,115,22,.15) 65%); }
.mock-results .mock-content { display: flex; flex-direction: column; gap: 6px; }
.mock-result-row { display: flex; gap: 6px; align-items: center; }
.mock-rank { width: 16px; height: 16px; border-radius: 4px; font-size: 8px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-rank.gold { background: rgba(249,115,22,.15); color: var(--orange); }
.mock-rank.silver { background: rgba(148,163,184,.1); color: var(--muted); }
.mock-bar { flex: 1; height: 8px; border-radius: 4px; background: rgba(255,255,255,.04); overflow: hidden; position: relative; }
.mock-bar-fill { height: 100%; border-radius: 4px; }
.mock-score { font-size: 8px; font-family: var(--mono); color: var(--muted2); min-width: 22px; text-align: right; }
.mock-bike-name { font-size: 7px; color: var(--muted); min-width: 50px; }
.mock-fit .mock-content { display: flex; flex-direction: column; gap: 8px; padding-top: 8px; }
.mock-bike-outline { width: 90%; height: 40px; margin: 0 auto; border: 1.5px solid rgba(241,245,249,.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.mock-bike-label { font-size: 7px; color: var(--muted2); font-family: var(--mono); }
.mock-adj-row { display: flex; gap: 4px; }
.mock-adj { flex: 1; height: 22px; border-radius: 4px; background: rgba(255,255,255,.03); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.mock-adj span { font-size: 7px; font-family: var(--mono); }
.mock-adj.up span { color: var(--green); }
.mock-adj.down span { color: var(--red); }
.mock-pain .mock-content { display: flex; flex-direction: column; align-items: center; gap: 6px; padding-top: 10px; }
.mock-body-outline { width: 24px; height: 52px; border: 1.5px solid rgba(241,245,249,.12); border-radius: 12px 12px 4px 4px; position: relative; }
.mock-body-outline::before { content: ''; width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid rgba(241,245,249,.12); position: absolute; top: -15px; left: 50%; transform: translateX(-50%); }
.mock-pain-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); position: absolute; }
.mock-pain-tag { font-size: 7px; background: var(--red-s); color: var(--red); padding: 2px 6px; border-radius: 3px; font-weight: 600; }
.screen-info { padding: 16px 18px; }
.screen-info h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.screen-info p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
/* Scoped to press-kit's #contact section to avoid collision with contact.html */
#contact .contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; display: flex; align-items: center; gap: 20px; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--orange-s); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#contact .contact-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
#contact .contact-card p { font-size: 13px; color: var(--muted); }
#contact .contact-card a.email-link { color: var(--orange); font-weight: 600; transition: opacity .2s; }
#contact .contact-card a.email-link:hover { opacity: .8; }
@media (max-width: 768px) { .overview-grid { grid-template-columns: 1fr; } .what-grid { grid-template-columns: 1fr 1fr; } .facts-row { grid-template-columns: 1fr 1fr; } .screens-grid { grid-template-columns: 1fr; } #contact .contact-card { flex-direction: column; text-align: center; } }
@media (max-width: 480px) { .what-grid { grid-template-columns: 1fr; } }

/* ================================================
   === pricing.html ===
   ================================================ */
.pricing-hero { position: relative; z-index: 1; padding: 72px 0 0; text-align: center; }
.pricing-hero .sec-label { margin-bottom: 14px; animation: fadeUp .6s ease-out; }
.pricing-hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2rem,4vw,3rem); line-height: 1.08; letter-spacing: -.04em; margin-bottom: 14px; animation: fadeUp .6s ease-out .06s both; }
.pricing-hero-sub { color: var(--muted); font-size: 15px; max-width: 520px; margin: 0 auto 0; line-height: 1.6; animation: fadeUp .6s ease-out .12s both; }
.tiers-sec { position: relative; z-index: 1; padding: 56px 0 96px; }
.tiers-sec .tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
.tier-badge-soon { background: var(--orange-s2); color: var(--orange); }
.tier-desc { min-height: 52px; }
.shop-tabs { display: flex; gap: 4px; background: var(--bg2); border: 1px solid var(--border); border-radius: 9px; padding: 3px; margin-bottom: 16px; }
.shop-tab { flex: 1; text-align: center; padding: 7px 6px; border-radius: 7px; font-size: 11px; font-weight: 600; color: var(--muted2); cursor: pointer; transition: all .2s; border: 1px solid transparent; }
.shop-tab:hover { color: var(--muted); }
.shop-tab.active { background: var(--card-h); color: var(--text); border-color: var(--border); }
.shop-detail { display: none; }
.shop-detail.active { display: block; }
@media (max-width: 1024px) { .tiers-sec .tiers-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .tiers-sec .tiers-grid { grid-template-columns: 1fr; } .tier-desc { min-height: auto; } }
.compare-sec { position: relative; z-index: 1; padding: 96px 0; border-top: 1px solid rgba(30,42,62,.4); }
.compare-header { text-align: center; margin-bottom: 48px; }
.compare-header .sec-sub { margin: 0 auto; }
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 740px; }
.compare-table th, .compare-table td { padding: 13px 16px; text-align: center; font-size: 13px; border-bottom: 1px solid rgba(30,42,62,.4); }
.compare-table th { background: var(--card); font-weight: 700; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; position: sticky; top: 0; }
.compare-table th:first-child { text-align: left; color: var(--muted2); font-weight: 600; text-transform: none; letter-spacing: 0; }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text); font-size: 13px; }
.compare-table td { color: var(--muted); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(20,26,40,.4); }
.compare-table .th-pop { color: var(--orange); }
.ck { color: var(--green); font-weight: 700; font-size: 14px; }
.da { color: var(--muted2); font-size: 14px; }
.compare-table .group-row td { background: var(--bg2); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); padding: 10px 16px; border-bottom: 1px solid rgba(30,42,62,.5); }
.compare-table .group-row td:first-child { color: var(--orange); }
.faq-sec { position: relative; z-index: 1; padding: 96px 0; border-top: 1px solid rgba(30,42,62,.4); }

/* ================================================
   === privacy.html ===
   (legal-* base styles shared with terms.html above)
   ================================================ */
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 13px; }
.legal-table th, .legal-table td { text-align: left; padding: 10px 14px; border: 1px solid var(--border); }
.legal-table th { background: var(--card); color: var(--text); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.legal-table td { color: var(--muted); }
@media (max-width: 768px) { .legal-table { font-size: 11.5px; } .legal-table th, .legal-table td { padding: 8px 10px; } }

/* === perfectbike-final-v2-claude.html: covered by Shared Hero App Mock above === */
/* === perfectbike-landing.html: covered by Shared Hero App Mock + Index/Landing Overrides above === */
/* === terms.html: covered by Shared Legal Layout above === */

/* ── 404 ── */
.footer-brand .nav-l { display: inline-flex; }
.notfound-hero { display: flex; align-items: center; min-height: calc(100vh - 64px - 260px); padding: 80px 0; }
.notfound-wrap { text-align: center; max-width: 600px; margin: 0 auto; }
.notfound-overline { font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.notfound-heading { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--text); margin-bottom: 16px; }
.notfound-sub { font-size: 17px; color: var(--muted); line-height: 1.6; margin-bottom: 36px; }
.notfound-actions { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.notfound-back { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.notfound-back:hover { color: var(--text); }

/* About page */
.footer-col a.active { color: var(--text); }
.about-btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
