/* Smarty Aligners — shared styles */
:root {
  --brand: #4AB0D5;
  --brand-dark: #2C8AAE;
  --brand-darker: #1F6A88;
  --brand-soft: #E6F4FA;
  --brand-soft-2: #F4FAFD;
  --ink: #1F2A34;
  --ink-2: #3A4754;
  --muted: #6B7785;
  --line: #E4EAF0;
  --line-2: #EFF3F7;
  --bg: #FFFFFF;
  --bg-alt: #F6F9FB;
  --warn: #E07A5F;
  --ok: #4FA383;
  --shadow-sm: 0 1px 2px rgba(20, 40, 60, 0.04), 0 1px 1px rgba(20, 40, 60, 0.03);
  --shadow-md: 0 6px 24px -8px rgba(20, 50, 80, 0.12), 0 2px 6px rgba(20, 50, 80, 0.05);
  --shadow-lg: 0 24px 60px -20px rgba(20, 60, 90, 0.18), 0 8px 20px -8px rgba(20, 60, 90, 0.08);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--brand-darker); }
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; color: var(--ink); margin: 0 0 0.4em; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 5vw, 64px); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-2); }
.muted { color: var(--muted); }

/* Container */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ====== Header ====== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 36px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: var(--ink-2); font-weight: 500; font-size: 15px;
  padding: 8px 14px; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav a:hover { background: var(--brand-soft-2); color: var(--ink); }
.nav a.active { color: var(--brand-dark); background: var(--brand-soft); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.08s ease, background 0.15s, color 0.15s, box-shadow 0.15s, border-color 0.15s;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 6px 16px -6px rgba(74, 176, 213, 0.55);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark); background: var(--brand-soft-2); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); color: #fff; }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-sm { padding: 8px 14px; font-size: 14px; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }

@media (max-width: 920px) {
  .nav { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
}

/* ====== Footer ====== */
.site-footer {
  margin-top: 80px;
  background: #0F1A24;
  color: #B9C5D1;
  padding: 64px 0 28px;
}
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #B9C5D1; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-brand img { height: 32px; filter: brightness(0) invert(1); opacity: 0.95; margin-bottom: 14px; }
.footer-brand p { color: #8B98A6; font-size: 14px; max-width: 320px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #1E2C3A; padding-top: 22px; margin-top: 48px;
  color: #6E7A88; font-size: 13px;
}
.footer-bottom .legal { display: flex; gap: 22px; }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(74,176,213,0.18), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(74,176,213,0.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--brand-soft-2) 100%);
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 60px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  color: var(--brand-dark); font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(74,176,213,0.18); }
.hero h1 { margin-top: 20px; }
.hero p.lead { font-size: 20px; color: var(--ink-2); max-width: 540px; margin-top: 14px; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { margin-top: 36px; display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; }
.hero-trust .stat strong { display: block; color: var(--ink); font-size: 22px; font-weight: 700; }
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
}

/* Visual stack used on hero & elsewhere */
.visual-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 22px;
}

/* Section */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { font-size: 18px; color: var(--ink-2); }

/* Feature grid */
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.grid-2 { display: grid; gap: 28px; grid-template-columns: repeat(2, 1fr); }
.grid-4 { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #D7E5EC; }
.feature .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; margin-bottom: 18px;
}
.feature h3 { margin-bottom: 8px; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

/* Steps */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.step {
  padding: 28px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--line);
  position: relative;
}
.step .num {
  font-family: 'Manrope', sans-serif;
  font-size: 56px; font-weight: 800; line-height: 1;
  color: var(--brand); opacity: 0.25; margin-bottom: 18px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--muted); margin: 0; }
@media (max-width: 920px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--radius-xl);
  color: #fff;
  padding: 64px;
  display: grid; grid-template-columns: 1.4fr 0.8fr; align-items: center; gap: 32px;
  box-shadow: 0 30px 60px -30px rgba(44, 138, 174, 0.55);
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; max-width: 520px; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta-band .btn-primary { background: #fff; color: var(--brand-dark); box-shadow: 0 8px 24px -8px rgba(0,0,0,0.25); }
.cta-band .btn-primary:hover { background: #F0FAFD; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); background: transparent; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.08); }
.cta-band::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%);
}
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; padding: 40px; } }

/* Page banner */
.page-banner {
  padding: 80px 0 50px;
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(74,176,213,0.12), transparent 60%),
    var(--brand-soft-2);
  border-bottom: 1px solid var(--line-2);
}
.page-banner h1 { font-size: clamp(36px, 4.4vw, 56px); }
.page-banner p { font-size: 19px; max-width: 700px; }

/* Forms / Auth */
.auth-shell {
  min-height: calc(100vh - 76px);
  display: grid; grid-template-columns: 1fr 1fr;
}
.auth-aside {
  background: linear-gradient(160deg, #0F1A24 0%, #143041 60%, #1F5A78 100%);
  color: #fff;
  padding: 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.auth-aside::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 400px at 80% 90%, rgba(74,176,213,0.35), transparent 60%),
    radial-gradient(400px 300px at 10% 10%, rgba(74,176,213,0.18), transparent 60%);
  pointer-events: none;
}
.auth-aside > * { position: relative; }
.auth-aside h2 { color: #fff; font-size: 36px; line-height: 1.2; }
.auth-aside p { color: rgba(255,255,255,0.75); font-size: 16px; }
.auth-aside .quote {
  border-left: 3px solid var(--brand);
  padding-left: 18px; font-size: 17px; line-height: 1.55;
  color: #DCE7EE;
}
.auth-aside .quote .who { margin-top: 14px; color: rgba(255,255,255,0.65); font-size: 13px; }
.auth-form-wrap { display: flex; align-items: center; justify-content: center; padding: 60px 40px; }
.auth-form { width: 100%; max-width: 420px; }
.auth-form h1 { font-size: 32px; margin: 0 0 6px; }
.auth-form .sub { color: var(--muted); margin-bottom: 32px; }
@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-aside { padding: 40px; }
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input[type="text"], .field input[type="email"], .field input[type="password"], .field input[type="tel"],
.field input[type="date"], .field input[type="number"], .field select, .field textarea {
  font-family: inherit; font-size: 15px;
  padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(74,176,213,0.18);
}
.field .hint { font-size: 12px; color: var(--muted); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .row-2, .row-3 { grid-template-columns: 1fr; } }

.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); }
.checkbox input { margin-top: 3px; }
.between { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; margin: 22px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* Dashboard */
.app-shell { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 76px); }
.sidebar {
  background: #0F1A24; color: #B9C5D1;
  padding: 28px 18px; position: sticky; top: 76px; height: calc(100vh - 76px);
  overflow-y: auto;
}
.sidebar .who { display: flex; gap: 12px; align-items: center; padding: 8px 10px 22px; border-bottom: 1px solid #1E2C3A; margin-bottom: 18px; }
.sidebar .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; }
.sidebar .who small { color: #6E7A88; display: block; font-size: 12px; }
.sidebar .who strong { color: #fff; font-size: 14px; }
.sidebar nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  color: #B9C5D1; font-size: 14.5px; font-weight: 500;
  transition: background 0.12s, color 0.12s;
}
.sidebar nav a:hover { background: #1A2836; color: #fff; }
.sidebar nav a.active { background: rgba(74,176,213,0.15); color: #fff; }
.sidebar nav a svg { opacity: 0.85; }
.sidebar .label { font-size: 11px; letter-spacing: 0.1em; color: #6E7A88; text-transform: uppercase; padding: 18px 12px 8px; }

.app-main { padding: 40px 44px; background: var(--bg-alt); }
.app-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.app-head h1 { font-size: 32px; margin: 0; }
.app-head p { margin: 6px 0 0; color: var(--muted); }

.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px;
}
.stat-card .label { color: var(--muted); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-card .value { font-size: 36px; font-weight: 700; color: var(--ink); margin-top: 6px; letter-spacing: -0.02em; }
.stat-card .delta { font-size: 13px; margin-top: 8px; }
.stat-card .delta.up { color: var(--ok); }
.stat-card .delta.down { color: var(--warn); }

.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px;
}
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.panel-head h2 { font-size: 20px; margin: 0; }

table.cases { width: 100%; border-collapse: collapse; font-size: 14.5px; }
table.cases th { text-align: left; font-weight: 600; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; padding: 12px 12px; border-bottom: 1px solid var(--line); }
table.cases td { padding: 14px 12px; border-bottom: 1px solid var(--line-2); color: var(--ink-2); }
table.cases tr:last-child td { border-bottom: 0; }
table.cases td .patient { display: flex; align-items: center; gap: 10px; }
table.cases td .pavatar { width: 32px; height: 32px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; font-weight: 700; font-size: 13px; }
table.cases td .patient strong { color: var(--ink); display: block; font-weight: 600; }
table.cases td .patient small { color: var(--muted); font-size: 12px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: var(--line-2); color: var(--ink-2);
}
.badge .b-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.planning { background: #FFF3DA; color: #A2722C; }
.badge.production { background: #E6F4FA; color: var(--brand-dark); }
.badge.delivered { background: #E2F3EA; color: #2E7857; }
.badge.review { background: #F1E6FA; color: #6E3DA8; }

/* Upload page */
.uploader {
  border: 2px dashed #BFD4DD; border-radius: var(--radius-lg);
  background: var(--brand-soft-2);
  padding: 32px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center; color: var(--ink-2);
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
  min-height: 200px;
}
.uploader:hover, .uploader.drag { border-color: var(--brand); background: #E6F4FA; }
.uploader .icon { width: 48px; height: 48px; border-radius: 12px; background: #fff; color: var(--brand-dark); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.uploader strong { color: var(--ink); }
.uploader .hint { font-size: 13px; color: var(--muted); }

.thumbgrid { display: grid; gap: 14px; grid-template-columns: repeat(5, 1fr); margin-top: 18px; }
.thumb {
  aspect-ratio: 1/1; border-radius: 12px; border: 1px solid var(--line);
  background: #F1F5F8; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 10px; font-size: 12px; color: var(--muted);
}
.thumb .label-tag {
  position: absolute; top: 8px; left: 8px;
  background: rgba(15, 26, 36, 0.78); color: #fff;
  padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 600;
}
.thumb svg { position: absolute; inset: 0; margin: auto; opacity: 0.5; }
@media (max-width: 700px) { .thumbgrid { grid-template-columns: repeat(2, 1fr); } }

.tabs { display: flex; gap: 4px; background: var(--line-2); padding: 4px; border-radius: 10px; }
.tabs button {
  flex: 1; padding: 10px 14px; font-family: inherit; font-size: 14px; font-weight: 600;
  border: 0; background: transparent; color: var(--muted); border-radius: 8px; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tabs button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.section-title { font-size: 14px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.06em; margin: 28px 0 14px; }

.split-form { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: flex-start; }
@media (max-width: 980px) { .split-form { grid-template-columns: 1fr; } }

/* Pricing */
.pricing { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing { grid-template-columns: 1fr; } }
.price {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.price.featured { border-color: var(--brand); position: relative; box-shadow: var(--shadow-lg); }
.price .ribbon { position: absolute; top: -12px; left: 32px; background: var(--brand); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; letter-spacing: 0.04em; }
.price h3 { margin: 0; }
.price .amount { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.price .amount span { font-size: 16px; font-weight: 500; color: var(--muted); }
.price ul { padding: 0; list-style: none; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--ink-2); }
.price ul li { display: flex; align-items: flex-start; gap: 10px; }
.price ul li::before {
  content: ""; width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; border-radius: 50%;
  background: var(--brand-soft); 
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%232C8AAE' d='M6.5 11.5 3 8l1.4-1.4 2.1 2.1 5.1-5.1L13 5z'/></svg>");
  background-position: center; background-repeat: no-repeat; background-size: 14px;
}

/* Faux mockup card (used on home hero) */
.app-mockup {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.app-mockup .topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #F4F7FA; border-bottom: 1px solid var(--line-2);
}
.app-mockup .topbar .dots { display: flex; gap: 6px; }
.app-mockup .topbar .dot { width: 10px; height: 10px; border-radius: 50%; background: #DDE4EA; }
.app-mockup .topbar .url { flex: 1; text-align: center; font-size: 12px; color: var(--muted); }
.app-mockup .body { padding: 22px; }
.mock-case-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mock-case-header .left { display: flex; align-items: center; gap: 12px; }
.mock-case-header .pavatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; font-weight: 700; }
.mock-case-header strong { display: block; }
.mock-case-header small { color: var(--muted); font-size: 12px; }
.mock-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.mock-tile {
  aspect-ratio: 1/1; border-radius: 8px; border: 1px solid var(--line-2);
  background: linear-gradient(135deg, #F7FAFC, #E6EFF4);
  position: relative;
}
.mock-tile.xray { background: linear-gradient(180deg, #0F1A24 0%, #1F4257 100%); }
.mock-progress { height: 8px; border-radius: 999px; background: var(--line-2); overflow: hidden; }
.mock-progress > div { height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-dark)); width: 62%; border-radius: 999px; }
.mock-line { height: 10px; border-radius: 6px; background: var(--line-2); margin: 10px 0; }
.mock-line.short { width: 50%; }

/* Tooth row decoration */
.tooth-row { display: flex; gap: 6px; justify-content: center; margin: 24px 0; }
.tooth {
  width: 24px; height: 32px; border-radius: 12px 12px 8px 8px;
  background: #fff; border: 1px solid #C7DCE5;
}
.tooth.on { background: var(--brand); border-color: var(--brand); }

/* Misc utility */
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.mt-6 { margin-top: 56px; }
.mb-0 { margin-bottom: 0 !important; }

/* Logos / press */
.press {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  padding: 28px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.press .label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.press .logos { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; opacity: 0.7; }
.press .logos span { color: var(--ink-2); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }

/* Quote / testimonial */
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; display: flex; flex-direction: column; gap: 18px;
}
.testimonial blockquote { margin: 0; font-size: 19px; line-height: 1.5; color: var(--ink); }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .pavatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); display: grid; place-items: center; font-weight: 700; }
.testimonial .who strong { display: block; }
.testimonial .who small { color: var(--muted); }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 17px; cursor: pointer; list-style: none;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 22px; color: var(--brand-dark); font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; color: var(--ink-2); }
