/* ==================== TOKENS ==================== */
:root {
  /* Brand */
  --brand-deep: #0A1A3D;
  --brand-navy: #0E2A5C;
  --brand-blue: #1E5BBA;
  --brand-blue-bright: #2D7FF9;
  --brand-cyan: #38BDF8;
  --brand-sky: #7DD3FC;

  /* Surface */
  --bg: #FAFBFD;
  --bg-soft: #F2F5FA;
  --surface: #FFFFFF;
  --surface-dark: #0A1530;
  --surface-darker: #060D24;
  --line: #E5EAF2;
  --line-strong: #D6DEEA;

  /* Text */
  --ink: #0A1A3D;
  --ink-2: #2A3759;
  --ink-3: #5A6582;
  --ink-4: #8893AB;
  --ink-light: #EBF1FB;
  --ink-light-2: #A6B5D4;

  /* Effects */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(10,26,61,.05), 0 2px 6px rgba(10,26,61,.04);
  --shadow: 0 4px 12px rgba(10,26,61,.06), 0 12px 32px rgba(10,26,61,.06);
  --shadow-lg: 0 12px 24px rgba(10,26,61,.08), 0 24px 64px rgba(10,26,61,.10);

  /* Fonts */
  --f-sans: 'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --f-tc: 'Noto Sans TC', 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ==================== RESET ==================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-tc);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.grad-text {
  background: linear-gradient(120deg, var(--brand-blue-bright) 0%, var(--brand-cyan) 60%, var(--brand-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.m-only { display: none; }
@media (max-width: 720px) { .m-only { display: block; } }

/* ==================== NAV ==================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 251, 253, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(213, 222, 234, 0.6);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.footer .brand-logo {
  height: 64px;
  opacity: 0.95;
}

.nav-links {
  display: flex; gap: 28px; flex: 1;
  margin-left: 12px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--brand-blue-bright); }

.nav-cta { display: flex; gap: 18px; align-items: center; }
.link-muted { font-size: 14px; color: var(--ink-3); font-weight: 500; }
.link-muted:hover { color: var(--brand-blue); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600;
  border-radius: 999px;
  transition: all .18s ease;
  font-family: var(--f-tc);
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 16px 28px; font-size: 15.5px; }
.btn:not(.btn-sm):not(.btn-lg) { padding: 12px 22px; font-size: 14.5px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue-bright) 0%, var(--brand-blue) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45, 127, 249, .32), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(45, 127, 249, .42), inset 0 1px 0 rgba(255,255,255,.2);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--ink-4); }

.btn-outline {
  background: transparent;
  color: var(--brand-blue);
  border: 1.5px solid var(--brand-blue);
}
.btn-outline:hover {
  background: var(--brand-blue); color: #fff;
}

/* ==================== EYEBROW / SECTIONS ==================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-blue);
  letter-spacing: 0.04em;
  padding: 6px 14px;
  background: rgba(45, 127, 249, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(45, 127, 249, 0.15);
  margin-bottom: 24px;
}
.eyebrow.center { display: inline-flex; }
.eyebrow.light {
  background: rgba(125, 211, 252, 0.1);
  border-color: rgba(125, 211, 252, 0.22);
  color: var(--brand-sky);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.section {
  padding: 120px 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.section.in { opacity: 1; transform: translateY(0); }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.section-head .eyebrow { margin: 0 auto 24px; }
.section-title {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 22px;
  text-wrap: balance;
}
.section-title.light { color: #fff; }
.section-title.left { text-align: left; }
.section-sub {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  text-wrap: pretty;
}
.section-sub.light { color: var(--ink-light-2); }
.section-sub.left { margin: 0; text-align: left; }

.section-dark {
  background: var(--surface-dark);
  color: #fff;
}
.section-dark .section-title { color: #fff; }
.section-light { background: var(--bg-soft); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: 60px 0 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,127,249,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,127,249,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--brand-cyan), transparent 70%);
  top: -100px; right: -100px;
}
.hero-glow-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--brand-blue-bright), transparent 70%);
  bottom: -200px; left: -150px;
  opacity: 0.3;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: 60px 28px 100px;
}
.hero-copy { max-width: 580px; }
.hero-title {
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--brand-deep);
  text-wrap: balance;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-3);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 540px;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.hero-meta strong { color: var(--brand-deep); font-weight: 700; }
.dot-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-4);
}

/* ----- Hero visual: Dashboard mockup ----- */
.hero-visual {
  position: relative;
  perspective: 1800px;
}
.dash-shell {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFE 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(213, 222, 234, 0.6);
  overflow: hidden;
  transform: rotateY(-7deg) rotateX(4deg) rotate(0.5deg);
  transform-origin: center center;
}
.dash-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #F0F4FA;
  border-bottom: 1px solid var(--line);
}
.chrome-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: #D5DDEB;
}
.chrome-dot:nth-child(1) { background: #FF5F57; }
.chrome-dot:nth-child(2) { background: #FEBC2E; }
.chrome-dot:nth-child(3) { background: #28C840; }
.chrome-url {
  margin-left: 12px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

.dash-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 480px;
}
.dash-side {
  background: linear-gradient(180deg, #FAFCFE 0%, #F4F7FC 100%);
  border-right: 1px solid var(--line);
  padding: 16px 12px;
}
.dash-side-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-deep);
}
.ds-logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand-blue-bright), var(--brand-cyan));
}
.dash-nav-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px;
  font-size: 12.5px;
  color: var(--ink-3);
  border-radius: 7px;
  margin-bottom: 2px;
}
.dn-ico {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: var(--ink-4);
  opacity: 0.4;
}
.dash-nav-item.active {
  background: linear-gradient(90deg, rgba(45,127,249,0.10), rgba(45,127,249,0));
  color: var(--brand-blue);
  font-weight: 600;
}
.dash-nav-item.active .dn-ico { background: var(--brand-blue); opacity: 1; }
.badge-new {
  font-size: 9px; font-weight: 700;
  background: var(--brand-cyan); color: #fff;
  padding: 2px 5px; border-radius: 4px;
  margin-left: auto;
}

.dash-main { padding: 22px 24px; }
.dash-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 22px;
}
.dh-eyebrow {
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.dh-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-deep);
}
.dash-pill {
  display: inline-flex; align-items: center;
  font-size: 11px;
  background: rgba(34, 197, 94, 0.10);
  color: #16A34A;
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 600;
}
.dash-pill::before {
  content: "";
  width: 6px; height: 6px;
  background: #22C55E;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 6px #22C55E;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 12px 11px;
}
.kpi-label { font-size: 10.5px; color: var(--ink-4); margin-bottom: 4px; font-weight: 500; }
.kpi-value {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-deep);
  letter-spacing: -0.015em;
}
.kpi-value span { font-size: 17px; }
.kpi-trend {
  font-size: 10.5px;
  font-weight: 600;
  margin-top: 6px;
}
.kpi-trend.up { color: #16A34A; }
.kpi-trend.neutral { color: var(--ink-4); }

.dash-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 10px;
}
.dash-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.card-title { font-size: 13px; font-weight: 700; color: var(--brand-deep); }
.card-tabs { display: flex; gap: 4px; font-size: 10.5px; color: var(--ink-4); }
.tab { padding: 3px 8px; border-radius: 5px; font-weight: 600; }
.tab.active { background: rgba(45,127,249,0.1); color: var(--brand-blue); }

.chart {
  display: flex; align-items: flex-end; gap: 10px;
  height: 90px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 8px;
  position: relative;
}
.bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, #E0EBFB, #C2D8F5);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.bar span {
  position: absolute;
  bottom: -16px;
  left: 50%; transform: translateX(-50%);
  font-size: 9px; color: var(--ink-4);
  font-weight: 500;
}
.bar.active {
  background: linear-gradient(180deg, var(--brand-blue-bright), var(--brand-blue));
}
.chart-line {
  margin-top: 10px;
  height: 24px;
}
.chart-line svg { width: 100%; height: 100%; }

.alert-card .card-title { margin-bottom: 12px; }
.alert-list { display: flex; flex-direction: column; gap: 10px; }
.alert-item {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.alert-dot {
  width: 7px; height: 7px; border-radius: 50%;
  margin-top: 5px; flex-shrink: 0;
}
.alert-dot.blue { background: var(--brand-blue-bright); box-shadow: 0 0 6px var(--brand-blue-bright); }
.alert-dot.green { background: #22C55E; box-shadow: 0 0 6px #22C55E; }
.alert-dot.orange { background: #F97316; box-shadow: 0 0 6px #F97316; }
.alert-dot.purple { background: #A855F7; box-shadow: 0 0 6px #A855F7; }
.alert-meta {
  display: block;
  font-size: 10px;
  color: var(--ink-4);
  margin-top: 2px;
}

/* Floating cards on hero */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  z-index: 2;
}
.float-1 {
  top: 12%;
  left: -38px;
  width: 240px;
  transform: rotate(-3deg);
}
.float-2 {
  bottom: 8%;
  right: -28px;
  width: 200px;
  transform: rotate(3deg);
}
.fc-label {
  font-size: 10.5px;
  color: var(--brand-blue);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.fc-row { display: flex; gap: 10px; align-items: center; }
.fc-avatar {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #DCEEFF, #ABD5FA);
  display: grid; place-items: center;
  font-weight: 800; color: var(--brand-blue);
  font-size: 14px;
}
.fc-title { font-weight: 700; font-size: 12px; color: var(--brand-deep); }
.fc-meta { font-size: 10.5px; color: var(--ink-3); margin-top: 2px; }
.fc-pill {
  display: inline-block;
  background: rgba(45,127,249,0.1);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.fc-big {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: -0.02em;
  font-family: var(--f-sans);
}
.fc-meta-2 { font-size: 10.5px; color: var(--ink-3); margin-top: 2px; }

/* Logos strip */
.logos-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  background: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}
.logos-strip .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.logos-label {
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  flex-shrink: 0;
}
.logos {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  flex: 1;
}
.logos span {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-4);
  font-family: var(--f-tc);
  letter-spacing: 0.02em;
  opacity: 0.7;
  transition: opacity .2s;
}
.logos span:hover { opacity: 1; color: var(--brand-blue); }

/* ==================== PAIN ==================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand-cyan);
}
.pain-num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--brand-cyan);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.pain-h {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.pain-card p {
  color: var(--ink-3);
  font-size: 14.5px;
  margin: 0 0 20px;
  line-height: 1.7;
}
.pain-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  flex-wrap: wrap;
}
.pa-bad {
  color: var(--ink-4);
  text-decoration: line-through;
  text-decoration-color: rgba(248, 113, 113, 0.6);
  padding: 4px 12px;
  background: #FAFBFD;
  border-radius: 6px;
  font-weight: 500;
}
.pa-good {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue-bright), var(--brand-blue));
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
}
.pain-arrow svg { color: var(--ink-4); }

/* ==================== FLAGSHIP FEATURES ==================== */
.section-dark .eyebrow:not(.light) {
  background: rgba(125, 211, 252, 0.08);
  border-color: rgba(125, 211, 252, 0.2);
  color: var(--brand-cyan);
}
.section-dark .section-sub { color: var(--ink-light-2); }
.section-dark {
  background:
    radial-gradient(ellipse 1200px 600px at 50% 0%, rgba(45, 127, 249, 0.15), transparent),
    radial-gradient(ellipse 800px 400px at 100% 100%, rgba(56, 189, 248, 0.08), transparent),
    var(--surface-dark);
  position: relative;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent);
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }

.flagship-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.flag-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.flag-card.reverse { grid-template-columns: 1.15fr 1fr; }
.flag-card.reverse .flag-content { order: 2; }
.flag-card.reverse .flag-visual { order: 1; }

.flag-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-cyan);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.flag-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
}
.flag-desc {
  color: var(--ink-light-2);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0 0 26px;
  text-wrap: pretty;
}
.flag-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flag-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: #DCE5F4;
}
.check {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.18);
  color: #4ADE80;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Wish card (同行尋車) --- */
.wish-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.wish-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.wish-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 18px;
}
.wish-name { font-weight: 700; color: #fff; font-size: 15px; }
.wish-sub { font-size: 12px; color: var(--ink-light-2); }
.wish-status {
  margin-left: auto;
  background: rgba(56, 189, 248, 0.18);
  color: var(--brand-cyan);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.3);
}
.wish-spec { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.wish-spec span {
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #CFD8EC;
  padding: 5px 10px;
  border-radius: 7px;
  font-weight: 500;
}
.wish-matches { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.match {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 12px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 10px;
  border-radius: 12px;
}
.match-img {
  width: 60px; height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #1A2855;
}
.img-ph {
  display: block;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 6px, rgba(255,255,255,0) 6px 12px),
    linear-gradient(135deg, #1A2855, #0F1E45);
}
.match-title { font-size: 13px; font-weight: 600; color: #fff; }
.match-meta { font-size: 11px; color: var(--ink-light-2); margin-top: 2px; }
.match-meta strong { color: var(--brand-cyan); }
.match-score {
  text-align: center;
  font-size: 9.5px; color: var(--ink-light-2);
  line-height: 1.2;
}
.match-score strong { font-size: 14px; color: #4ADE80; }
.wish-foot { display: flex; gap: 10px; }
.mini-btn {
  flex: 1;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
}
.mini-btn.primary {
  background: linear-gradient(135deg, var(--brand-blue-bright), var(--brand-blue));
  border: 0;
}

/* --- Phone mock (估車) --- */
.phone-mock {
  width: 280px;
  margin: 0 auto;
  background: #0A1530;
  border-radius: 36px;
  padding: 14px;
  border: 1.5px solid rgba(125,211,252,0.22);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
}
.phone-mock::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  background: linear-gradient(180deg, #F7FBFF, #fff);
  border-radius: 28px;
  padding: 50px 18px 22px;
  min-height: 540px;
  position: relative;
}
.phone-bar { display: flex; justify-content: center; gap: 4px; margin-bottom: 12px; }
.phone-bar span {
  width: 30px; height: 3px; border-radius: 2px; background: var(--line);
}
.phone-bar span:first-child { background: var(--brand-blue-bright); }
.estimate-head { text-align: center; margin-bottom: 20px; }
.estimate-title {
  font-size: 19px; font-weight: 800;
  color: var(--brand-deep); letter-spacing: -0.02em;
}
.estimate-sub { font-size: 11px; color: var(--ink-3); margin-top: 4px; }
.form-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 9px;
}
.form-row label { font-size: 11.5px; color: var(--ink-3); font-weight: 600; }
.form-input {
  background: #F0F4FA;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12.5px;
  color: var(--brand-deep);
  font-weight: 600;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 14px 0;
}
.photo-slot {
  aspect-ratio: 1;
  background: #F0F4FA;
  border-radius: 8px;
  display: grid; place-items: center;
  gap: 2px;
  font-size: 10px;
  color: var(--ink-3);
  border: 1.5px dashed var(--line-strong);
}
.photo-slot span { font-size: 16px; line-height: 1; }
.photo-slot em { font-style: normal; font-size: 9.5px; }
.photo-slot.done {
  background: rgba(34,197,94,0.10);
  border: 1.5px solid rgba(34,197,94,0.35);
  border-style: solid;
  color: #16A34A;
}
.estimate-price {
  background: linear-gradient(135deg, #EAF3FF, #DCEEFF);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 16px 0 12px;
  text-align: center;
}
.ep-label { font-size: 11px; color: var(--brand-blue); font-weight: 600; }
.ep-value {
  font-size: 28px; font-weight: 800; color: var(--brand-deep);
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.ep-value small { font-size: 14px; color: var(--ink-3); }
.phone-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-blue-bright), var(--brand-blue));
  color: #fff;
  border-radius: 10px;
  padding: 11px;
  font-size: 13px;
  font-weight: 700;
}

/* --- Calendar (預約) --- */
.cal-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cal-month { font-weight: 700; color: #fff; font-size: 15px; }
.cal-nav { display: flex; gap: 6px; color: var(--ink-light-2); font-size: 16px; }
.cal-nav span {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 18px;
}
.cal-wd {
  text-align: center;
  font-size: 10px;
  color: var(--ink-light-2);
  font-weight: 600;
  padding: 6px 0;
}
.cal-d {
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-size: 12.5px;
  font-weight: 500;
  color: #CFD8EC;
  position: relative;
  border-radius: 8px;
  gap: 0;
}
.cal-d.muted { color: rgba(255,255,255,0.2); }
.cal-d.active {
  background: linear-gradient(135deg, var(--brand-blue-bright), var(--brand-blue));
  color: #fff;
  font-weight: 700;
}
.cd-dot {
  position: absolute;
  bottom: 3px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand-cyan);
}
.cd-dot:nth-of-type(1) { transform: translateX(-7px); }
.cd-dot:nth-of-type(3) { transform: translateX(7px); }
.cd-dot.blue { background: #22C55E; }
.cal-d.active .cd-dot { background: #fff; }

.cal-events {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}
.cal-event {
  display: grid;
  grid-template-columns: 44px 4px 1fr;
  gap: 10px;
  align-items: stretch;
  font-size: 12px;
}
.ce-time {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-cyan);
  align-self: center;
}
.ce-bar {
  background: var(--brand-cyan);
  border-radius: 3px;
}
.ce-bar.blue { background: #22C55E; }
.cal-event strong { color: #fff; font-weight: 600; }
.cal-event span { color: var(--ink-light-2); font-size: 11px; }


/* ==================== SHOWROOM ==================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse-md .tc-left { order: 2; }
.two-col.reverse-md .tc-right { order: 1; }

.feature-list { display: flex; flex-direction: column; gap: 22px; margin: 32px 0; }
.fl-item { display: flex; gap: 18px; align-items: flex-start; }
.fl-num {
  font-family: var(--f-mono);
  color: var(--brand-blue-bright);
  font-size: 18px;
  font-weight: 600;
  margin-top: -2px;
}
.fl-item strong {
  display: block;
  font-size: 16.5px;
  color: var(--brand-deep);
  margin-bottom: 4px;
  font-weight: 700;
}
.fl-item p { margin: 0; color: var(--ink-3); font-size: 14.5px; line-height: 1.6; }

.showroom-mock {
  width: 320px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  font-family: var(--f-tc);
}
.sm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(180deg, #E8F2FF, #DCEEFF);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14px;
}
.sm-back, .sm-menu { font-size: 18px; cursor: pointer; }
.sm-filters {
  display: flex; gap: 8px; padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.sm-chip {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: #F0F4FA;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
}
.sm-chip.active {
  background: var(--brand-blue);
  color: #fff;
}
.sm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
}
.sm-car {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.sm-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.sm-img .img-ph {
  background:
    repeating-linear-gradient(45deg, #E5EAF2 0 8px, #EEF2F8 8px 16px);
}
.sm-badge {
  position: absolute; top: 6px; left: 6px;
  background: rgba(34, 197, 94, 0.92);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 5px;
}
.sm-info { padding: 9px 11px 12px; }
.sm-name { font-size: 12px; font-weight: 600; color: var(--brand-deep); }
.sm-meta { font-size: 10.5px; color: var(--ink-3); margin-top: 3px; }
.sm-price {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 800;
  color: #F97316;
  margin-top: 4px;
  display: flex; align-items: baseline; gap: 4px;
}
.sm-price small { font-size: 11px; }
.sm-tag {
  font-size: 9.5px;
  font-weight: 700;
  color: #F97316;
  background: rgba(249, 115, 22, 0.12);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
}
.sm-tag.new { color: #2D7FF9; background: rgba(45, 127, 249, 0.12); }
.sm-caption {
  text-align: center;
  margin-top: 16px;
  color: var(--ink-4);
  font-size: 13px;
  font-family: var(--f-mono);
}


/* ==================== FINANCE / CAR RECORD ==================== */
.finance-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
}

.car-record {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.cr-head { display: flex; gap: 22px; align-items: flex-start; margin-bottom: 24px; }
.cr-img {
  width: 200px; height: 120px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E5EAF2, #D6DEEA);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.cr-img .img-ph {
  background:
    repeating-linear-gradient(45deg, #DCE3EE 0 8px, #E8EDF5 8px 16px);
}
.cr-status {
  position: absolute; top: 10px; left: 10px;
  background: rgba(34,197,94,0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
}
.cr-body { flex: 1; }
.cr-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.cr-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: -0.02em;
}
.cr-meta {
  margin-top: 6px;
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-3);
}
.cr-sep { width: 1px; background: var(--line); }
.cr-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-blue);
  background: rgba(45, 127, 249, 0.08);
  padding: 3px 9px;
  border-radius: 5px;
}

.cr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
.cr-block {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 16px 18px;
}
.cr-bt {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  font-size: 13px;
}
.price-row span { color: var(--ink-3); }
.price-row strong { color: var(--brand-deep); font-family: var(--f-sans); font-weight: 700; }
.price-row.hl strong { color: #F97316; font-size: 15px; }
.price-row.total {
  border-top: 1px dashed var(--line-strong);
  margin-top: 6px;
  padding-top: 9px;
}
.muted-px { color: var(--ink-4) !important; font-family: var(--f-tc) !important; font-weight: 500 !important; font-size: 12px; }
.cr-block.profit {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(45, 127, 249, 0.04));
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.profit-big {
  font-family: var(--f-sans);
  font-size: 28px;
  font-weight: 800;
  color: #16A34A;
  letter-spacing: -0.02em;
}
.profit-sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.profit-bar {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin: 12px 0 8px;
  gap: 2px;
}
.profit-bar span {
  height: 100%;
  background: #94A3B8;
  display: block;
}
.profit-legend {
  display: flex; gap: 12px;
  font-size: 11px; color: var(--ink-3);
}
.profit-legend i {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: #94A3B8;
  margin-right: 4px;
}

.cr-docs {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.doc {
  font-size: 12px;
  background: #F0F4FA;
  padding: 6px 11px;
  border-radius: 6px;
  color: var(--ink-2);
  font-weight: 500;
}

.finance-side { display: flex; flex-direction: column; gap: 16px; }
.fs-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .25s ease, border-color .25s ease;
}
.fs-card:hover { transform: translateX(-3px); border-color: var(--brand-cyan); }
.fs-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #DCEEFF, #F0F7FF);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 14px;
}
.fs-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 6px;
}
.fs-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.6;
}


/* ==================== MOBILE / VIDEOS ==================== */
.mobile-sec { padding: 140px 0; }
.mobile-features {
  display: flex; flex-direction: column; gap: 22px;
  margin-top: 36px;
}
.mf-item { display: flex; gap: 18px; align-items: flex-start; }
.mf-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(125, 211, 252, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 12px;
  font-size: 20px;
  flex-shrink: 0;
}
.mf-item strong {
  display: block;
  color: #fff;
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 4px;
}
.mf-item p { margin: 0; color: var(--ink-light-2); font-size: 14.5px; line-height: 1.6; }

.videos-wrap {
  position: relative;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-stack {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: center;
}
.vid-frame {
  position: relative;
  width: 220px;
  aspect-ratio: 9/16;
  border-radius: 28px;
  overflow: hidden;
  border: 6px solid #0A1530;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(125,211,252,0.2);
}
.vid-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.vid-frame.primary {
  transform: translateY(-10px);
  z-index: 2;
}
.vid-frame.secondary {
  transform: translateY(20px) scale(0.92);
  opacity: 0.88;
}
.vid-caption {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.video-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orbit-tag {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(125, 211, 252, 0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.tag-1 { top: 8%; left: 4%; }
.tag-2 { top: 50%; right: 0%; transform: translateY(-50%); }
.tag-3 { bottom: 12%; left: 8%; }


/* ==================== AI ==================== */
.ai-section { background: var(--bg); }
.ai-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.ai-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ai-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow);
}
.ai-card.big {
  grid-row: span 2;
  background: linear-gradient(160deg, #0A1530 0%, #102050 100%);
  color: #fff;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.ai-card.big::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--brand-cyan), transparent 70%);
  opacity: 0.3;
  filter: blur(60px);
}
.ai-card.big > * { position: relative; z-index: 1; }
.ai-icon-wrap {
  display: inline-block;
}
.ai-card.big .ai-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
  display: grid; place-items: center;
  border-radius: 16px;
  font-size: 28px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}
.ai-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #DCEEFF, #F0F7FF);
  display: grid; place-items: center;
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 14px;
}
.ai-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--brand-deep);
}
.ai-card.big .ai-title { color: #fff; font-size: 24px; }
.ai-card p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.65;
}
.ai-card.big p { color: var(--ink-light-2); font-size: 15px; }

.ai-demo {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ai-prompt {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--brand-cyan);
  margin-bottom: 12px;
}
.ai-output {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
}
.ai-typing {
  color: #DCE5F4;
  font-size: 14px;
  line-height: 1.7;
}
.ai-typing strong { color: #fff; font-size: 15px; }
.ai-typing u {
  text-decoration: none;
  color: var(--brand-cyan);
  border-bottom: 1px dashed var(--brand-cyan);
}

/* ==================== PRICING ==================== */
.pricing { background: var(--bg-soft); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .25s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  background: linear-gradient(160deg, #0A1530 0%, #102050 100%);
  color: #fff;
  border-color: transparent;
  position: relative;
  transform: scale(1.03);
  box-shadow: 0 30px 80px rgba(10, 26, 61, 0.25);
}
.pc-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue-bright));
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.pc-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.price-card.featured .pc-name { color: var(--brand-cyan); }
.pc-price {
  font-family: var(--f-sans);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
  margin-bottom: 4px;
}
.pc-price span { font-size: 40px; }
.pc-price small { font-size: 14px; color: var(--ink-3); font-weight: 500; }
.price-card.featured .pc-price { color: #fff; }
.price-card.featured .pc-price small { color: var(--ink-light-2); }
.pc-sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.price-card.featured .pc-sub { color: var(--ink-light-2); }
.pc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-list li {
  font-size: 14px;
  color: var(--ink-2);
}
.price-card.featured .pc-list li { color: #DCE5F4; }


/* ==================== REGISTER ==================== */
.register {
  background:
    radial-gradient(ellipse 1200px 600px at 20% 0%, rgba(45, 127, 249, 0.18), transparent),
    radial-gradient(ellipse 800px 400px at 100% 100%, rgba(56, 189, 248, 0.08), transparent),
    var(--surface-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.register::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent);
  pointer-events: none;
}
.register-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: flex-start;
}
.reg-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reg-points li {
  display: flex; gap: 12px; align-items: center;
  font-size: 15px;
  color: #DCE5F4;
}
.reg-contact {
  display: flex; gap: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.rc-label {
  font-size: 11px;
  color: var(--ink-light-2);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.rc-value {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  font-family: var(--f-sans);
}

.reg-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 12.5px;
  color: var(--ink-light-2);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-size: 14px;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-cyan);
  background: rgba(255,255,255,0.10);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--brand-cyan) 50%), linear-gradient(135deg, var(--brand-cyan) 50%, transparent 50%); background-position: right 16px center, right 12px center; background-size: 4px 4px; background-repeat: no-repeat; padding-right: 30px; }

.radio-row, .chip-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.radio, .chip {
  position: relative;
  cursor: pointer;
}
.radio input, .chip input {
  position: absolute; opacity: 0; pointer-events: none;
}
.radio span, .chip span {
  display: inline-block;
  padding: 9px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 999px;
  font-size: 13px;
  color: #DCE5F4;
  transition: all .15s;
}
.radio input:checked + span, .chip input:checked + span {
  background: linear-gradient(135deg, var(--brand-blue-bright), var(--brand-blue));
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

.form-foot {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 18px;
}
.agree {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px;
  color: var(--ink-light-2);
  cursor: pointer;
}
.agree input { accent-color: var(--brand-cyan); }
.agree a { color: var(--brand-cyan); text-decoration: underline; }


/* ==================== FOOTER ==================== */
.footer {
  background: var(--surface-darker);
  color: var(--ink-light-2);
  padding: 80px 0 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-tag { color: var(--ink-light-2); }
.foot-brand .brand-mark { background: rgba(255,255,255,0.05); }
.foot-tag {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-light-2);
  max-width: 280px;
  line-height: 1.6;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fc-head {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.foot-cols a {
  display: block;
  font-size: 13.5px;
  color: var(--ink-light-2);
  margin-bottom: 10px;
  transition: color .15s;
}
.foot-cols a:hover { color: var(--brand-cyan); }
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: var(--ink-4);
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { transform: scale(0.92); }
  .float-1 { left: -10px; }
  .float-2 { right: -10px; }
  .dash-side { display: none; }
  .dash-body { grid-template-columns: 1fr; }
  .flag-card, .flag-card.reverse { grid-template-columns: 1fr; gap: 40px; }
  .flag-card.reverse .flag-content { order: 1; }
  .flag-card.reverse .flag-visual { order: 2; }
  .two-col { grid-template-columns: 1fr; gap: 50px; }
  .two-col.reverse-md .tc-left { order: 1; }
  .two-col.reverse-md .tc-right { order: 2; }
  .finance-layout { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .ai-card.big { grid-row: auto; grid-column: 1 / -1; }
  .register-inner { grid-template-columns: 1fr; gap: 50px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .hero-title { font-size: 44px; }
  .section-title { font-size: 32px; }
  .nav-cta .link-muted { display: none; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; gap: 12px; }
  .brand-tag { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .dash-row { grid-template-columns: 1fr; }
  .cr-head { flex-direction: column; }
  .cr-img { width: 100%; }
  .cr-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 40px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-bot { flex-direction: column; gap: 8px; }
  .video-stack { transform: scale(0.85); }
  .videos-wrap { min-height: 540px; }
  .float-1, .float-2 { display: none; }
  .reg-contact { flex-direction: column; gap: 16px; }
}
