/* ============================================================
   Trupoint Health — Practitioner Landing Page
   Built on the design-system foundations in colors_and_type.css
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --tp-primary-navy:      #0B1F3A;
  --tp-clinical-blue:     #1F4ED8;
  --tp-partner-teal:      #0EA5A4;
  --tp-soft-grey-bg:      #F7F9FC;
  --tp-white:             #FFFFFF;
  --tp-border-grey:       #E5E7EB;
  --tp-border-soft:       #E2E8F0;
  --tp-bg-subtle:         #F8FAFC;
  --tp-text-primary:      #111827;
  --tp-text-secondary:    #6B7280;
  --tp-text-muted:        #475569;
  --tp-success:           #2BAE66;
  --tp-success-soft:      #DCFCE7;
  --tp-warning:           #F59E0B;
  --tp-warning-soft:      #FEF3C7;
  --tp-danger:            #DC2626;
  --tp-danger-soft:       #FEE2E2;
  --tp-info-soft:         #EFF6FF;
  --tp-radius-sm:         6px;
  --tp-radius-md:         8px;
  --tp-radius-lg:         12px;
  --tp-radius-card:       16px;
  --tp-radius-pill:       9999px;
  --tp-shadow-card:       0 8px 24px rgba(11, 31, 58, 0.08);
  --tp-shadow-card-soft:  0 2px 10px rgba(15, 23, 42, 0.06);
  --tp-shadow-card-dark:  0 10px 24px rgba(2, 6, 23, 0.45);
  --tp-font-sans:         "Inter", ui-sans-serif, system-ui, -apple-system,
                          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Accent defaults (overridden by [data-accent="teal"]) */
  --accent: var(--tp-clinical-blue);
  --accent-soft: rgba(31, 78, 216, 0.08);
  --accent-on-dark: #6FA8FF;
  --accent-2: #DC2626;
  --accent-2-soft: rgba(220, 38, 38, 0.10);
  --accent-2-on-dark: #FF6B6F;

  --section-py: 96px;
  --section-py-tight: 64px;
  --max-content-wide: 1240px;
}

[data-accent="teal"] {
  --accent: #144652;
  --accent-soft: rgba(20, 70, 82, 0.10);
  --accent-on-dark: #5FB8C7;
  --accent-2: #D91A1F;
  --accent-2-soft: rgba(217, 26, 31, 0.10);
  --accent-2-on-dark: #FF6B6F;
}

[data-density="compact"] {
  --section-py: 72px;
  --section-py-tight: 48px;
}
[data-density="comfy"] {
  --section-py: 128px;
  --section-py-tight: 88px;
}

/* ---------- Base reset ---------- */
.tpt-pract-page *, .tpt-pract-page *::before, .tpt-pract-page *::after {
  box-sizing: border-box;
}
.tpt-pract-page {
  margin: 0; padding: 0;
  background: var(--tp-white);
  color: var(--tp-text-primary);
  font-family: var(--tp-font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.tpt-pract-page h1, .tpt-pract-page h2, .tpt-pract-page h3,
.tpt-pract-page h4, .tpt-pract-page h5, .tpt-pract-page p,
.tpt-pract-page ul, .tpt-pract-page li {
  margin: 0; padding: 0;
}

/* ---------- Layout primitives ---------- */
.tpt-pract-page .wrap {
  width: 100%;
  max-width: var(--max-content-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.tpt-pract-page .wrap-narrow {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}
.tpt-pract-page section {
  padding: var(--section-py) 0;
}
.tpt-pract-page .sec-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}
.tpt-pract-page .sec-title {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--tp-primary-navy);
  margin: 12px 0 0;
}
.tpt-pract-page .sec-title.center { text-align: center; }
.tpt-pract-page .sec-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--tp-text-secondary);
  margin-top: 16px;
  max-width: 620px;
}
.tpt-pract-page .sec-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Navigation ---------- */
.tpt-pract-page .lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--tp-border-grey);
}
.tpt-pract-page .lp-nav-inner {
  max-width: var(--max-content-wide);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.tpt-pract-page .lp-brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.tpt-pract-page .lp-brand-mark {
  width: 32px; height: 32px;
  display: inline-block;
  background-image: url("../trupoint-logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex: none;
}
.tpt-pract-page .lp-brand-mark--lg { width: 38px; height: 38px; }
.tpt-pract-page .lp-brand-name {
  font-size: 17px; font-weight: 700; color: var(--tp-primary-navy);
  letter-spacing: -0.01em;
}
.tpt-pract-page .lp-brand-name .brand-for { color: var(--tp-text-secondary); font-weight: 500; }
.tpt-pract-page .lp-brand-name em { font-style: normal; color: var(--accent-2); font-weight: 700; }
.tpt-pract-page .lp-nav-links {
  display: flex; gap: 4px;
}
.tpt-pract-page .lp-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--tp-text-primary);
  text-decoration: none;
  padding: 8px 12px; border-radius: 8px;
  transition: background 120ms ease;
}
.tpt-pract-page .lp-nav-links a:hover { background: var(--tp-soft-grey-bg); }
.tpt-pract-page .lp-nav-cta { display: flex; gap: 8px; align-items: center; }

/* ---------- Buttons ---------- */
.tpt-pract-page .lp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--tp-font-sans); font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none;
  transition: background 120ms ease, border-color 120ms ease, filter 120ms ease;
  white-space: nowrap;
}
.tpt-pract-page .lp-btn--lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }
.tpt-pract-page .lp-btn--primary { background: var(--accent); color: #fff; }
.tpt-pract-page .lp-btn--primary:hover { filter: brightness(0.94); }
.tpt-pract-page .lp-btn--secondary { background: var(--tp-white); color: var(--tp-primary-navy); border-color: var(--tp-border-grey); }
.tpt-pract-page .lp-btn--secondary:hover { background: var(--tp-soft-grey-bg); }
.tpt-pract-page .lp-btn--ghost-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.35);
}
.tpt-pract-page .lp-btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.tpt-pract-page .lp-btn .arrow { transition: transform 150ms ease; }
.tpt-pract-page .lp-btn:hover .arrow { transform: translateX(2px); }

/* ---------- HERO ---------- */
.tpt-pract-page .hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--tp-primary-navy);
}
.tpt-pract-page .hero--has-photo {
  background: none;
}
.tpt-pract-page .hero--no-photo {
  background:
    radial-gradient(ellipse at top right, rgba(31,78,216,0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(14,165,164,0.10), transparent 55%),
    var(--tp-primary-navy);
}
.tpt-pract-page .hero-photo {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tpt-pract-page .hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,31,58,0.74) 0%, rgba(11,31,58,0.86) 60%, rgba(11,31,58,0.95) 100%);
}
.tpt-pract-page .hero-inner {
  max-width: var(--max-content-wide);
  margin: 0 auto;
  padding: 120px 24px 110px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.tpt-pract-page .hero-inner--full {
  grid-template-columns: 1fr;
  padding-top: 130px;
  padding-bottom: 120px;
}
.tpt-pract-page .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--accent-on-dark);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}
.tpt-pract-page .hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-on-dark);
}
.tpt-pract-page .hero-title {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #fff;
  margin-top: 22px;
}
.tpt-pract-page .hero-inner--full .hero-title {
  font-size: clamp(40px, 5.4vw, 68px);
  max-width: 18ch;
}
.tpt-pract-page .hero-inner:not(.hero-inner--full) .hero-title {
  font-size: clamp(36px, 4vw, 56px);
}
.tpt-pract-page .hero-title em { font-style: normal; color: var(--accent-on-dark); }
.tpt-pract-page .hero-sub {
  font-size: 19px; line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin-top: 22px;
  max-width: 600px;
}
.tpt-pract-page .hero-ctas {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.tpt-pract-page .hero-trust {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.tpt-pract-page .hero-trust .sep { color: rgba(255,255,255,0.3); }

/* Hero dashboard preview panel */
.tpt-pract-page .hero-right-preview {
  position: relative;
}
.tpt-pract-page .hero-dash-clip {
  width: 537px;
  height: 363px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.tpt-pract-page .hero-right-preview .dash-frame {
  width: 680px;
  height: 460px;
  overflow: hidden;
  transform: scale(0.79);
  transform-origin: top left;
  box-shadow: none;
  border-radius: 0;
}

/* ---------- HOW IT WORKS ---------- */
.tpt-pract-page .section--grey { background: var(--tp-soft-grey-bg); }
.tpt-pract-page .howit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tpt-pract-page .howit-card {
  background: #fff;
  border: 1px solid var(--tp-border-grey);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--tp-shadow-card-soft);
  display: flex; flex-direction: column;
}
.tpt-pract-page .howit-step {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.tpt-pract-page .howit-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.tpt-pract-page .howit-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--tp-primary-navy);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.tpt-pract-page .howit-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--tp-bg-subtle);
}
.tpt-pract-page .howit-card h3 {
  font-size: 20px; font-weight: 700; color: var(--tp-primary-navy);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.tpt-pract-page .howit-card p {
  font-size: 15px; line-height: 1.55; color: var(--tp-text-secondary);
}

/* ---------- DASHBOARD PREVIEW SECTION ---------- */
.tpt-pract-page .section--navy {
  background:
    radial-gradient(ellipse at top right, rgba(31,78,216,0.22), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(14,165,164,0.10), transparent 50%),
    var(--tp-primary-navy);
  color: #fff;
}
.tpt-pract-page .section--navy .sec-title { color: #fff; }
.tpt-pract-page .section--navy .sec-sub { color: rgba(255,255,255,0.7); }
.tpt-pract-page .section--navy .sec-eyebrow { color: var(--accent-on-dark); }
.tpt-pract-page .dashpreview-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  margin-top: 24px;
}
.tpt-pract-page .dashpreview-bullets {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.tpt-pract-page .dashpreview-bullet {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.tpt-pract-page .dashpreview-bullet .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--accent-on-dark);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.tpt-pract-page .dashpreview-bullet h4 {
  font-size: 16px; font-weight: 600; color: #fff;
  margin: 0 0 4px;
}
.tpt-pract-page .dashpreview-bullet p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ---------- DASHBOARD MOCKUP (FLAT UI) ---------- */
.tpt-pract-page .dash-frame {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  font-size: 12px;
  color: #111827;
  line-height: 1.45;
  min-height: 480px;
}
.tpt-pract-page .dash-rail {
  background: #F7F9FC;
  border-right: 1px solid var(--tp-border-grey);
  padding: 14px 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.tpt-pract-page .dash-rail-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px 14px;
}
.tpt-pract-page .dash-rail-brand-dot {
  width: 22px; height: 22px;
  background-image: url("../trupoint-logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex: none;
}
.tpt-pract-page .dash-rail-brand-text {
  font-size: 12px; font-weight: 700; color: var(--tp-primary-navy);
  letter-spacing: -0.01em;
}
.tpt-pract-page .dash-rail-section {
  font-size: 10px; font-weight: 600; color: var(--tp-text-secondary);
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 14px 10px 6px;
}
.tpt-pract-page .dash-rail-link {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px; border-radius: 8px;
  font-size: 12px; color: var(--tp-text-primary); font-weight: 500;
  text-decoration: none;
}
.tpt-pract-page .dash-rail-link .l-icon { color: var(--tp-text-secondary); display: inline-flex; }
.tpt-pract-page .dash-rail-link.active {
  background: var(--accent); color: #fff;
}
.tpt-pract-page .dash-rail-link.active .l-icon { color: #fff; }
.tpt-pract-page .dash-rail-link .badge-mini {
  margin-left: auto;
  background: var(--accent-2); color: #fff;
  font-size: 10px; font-weight: 600;
  padding: 2px 6px; border-radius: 999px;
}
.tpt-pract-page .dash-rail-link.active .badge-mini { background: rgba(255,255,255,0.25); color: #fff; }
.tpt-pract-page .dash-main {
  display: grid;
  grid-template-rows: auto 1fr;
}
.tpt-pract-page .dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--tp-border-grey);
}
.tpt-pract-page .dash-topbar-title { font-size: 14px; font-weight: 700; color: var(--tp-primary-navy); }
.tpt-pract-page .dash-topbar-meta { color: var(--tp-text-secondary); font-size: 11px; margin-top: 2px; }
.tpt-pract-page .dash-topbar-actions { display: flex; gap: 6px; align-items: center; }
.tpt-pract-page .dash-pill {
  font-size: 11px; padding: 5px 10px; border-radius: 999px;
  background: var(--tp-soft-grey-bg); color: var(--tp-text-primary);
  border: 1px solid var(--tp-border-grey); display: inline-flex; align-items: center; gap: 6px;
}
.tpt-pract-page .dash-pill.active { background: var(--accent-soft); color: var(--accent); border-color: transparent; font-weight: 600; }
.tpt-pract-page .dash-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #144652, #D91A1F);
  color: #fff; font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.tpt-pract-page .dash-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: #FAFBFD;
}
.tpt-pract-page .dash-list { border-right: 1px solid var(--tp-border-grey); }
.tpt-pract-page .dash-list-header {
  padding: 12px 18px; display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--tp-text-secondary);
  border-bottom: 1px solid var(--tp-border-grey);
}
.tpt-pract-page .dash-list-header b { color: var(--tp-text-primary); font-weight: 600; }
.tpt-pract-page .dash-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(229,231,235,0.6);
  align-items: center;
}
.tpt-pract-page .dash-row.selected { background: var(--accent-soft); }
.tpt-pract-page .dash-row-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 10px; font-weight: 700; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.tpt-pract-page .dash-row-name { font-size: 12px; font-weight: 600; color: var(--tp-primary-navy); }
.tpt-pract-page .dash-row-meta { font-size: 10.5px; color: var(--tp-text-secondary); margin-top: 2px; }
.tpt-pract-page .dash-row-tag {
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 999px;
  white-space: nowrap;
}
.tpt-pract-page .dash-row-tag.danger  { background: var(--accent-2-soft); color: var(--accent-2); }
.tpt-pract-page .dash-row-tag.warning { background: #FEF3C7; color: #B45309; }
.tpt-pract-page .dash-row-tag.success { background: #DCFCE7; color: #166534; }
.tpt-pract-page .dash-row-tag.neutral { background: #E5E7EB; color: var(--tp-text-secondary); }
.tpt-pract-page .dash-detail {
  padding: 18px;
  display: flex; flex-direction: column; gap: 16px;
  background: #fff;
}
.tpt-pract-page .dash-card-mini {
  background: #fff;
  border: 1px solid var(--tp-border-grey);
  border-radius: 12px;
  padding: 14px;
}
.tpt-pract-page .dash-card-mini h5 {
  font-size: 12px; font-weight: 700; color: var(--tp-primary-navy); margin: 0;
}
.tpt-pract-page .dash-card-meta { font-size: 11px; color: var(--tp-text-secondary); margin: 4px 0 12px; }
.tpt-pract-page .dash-chart { height: 110px; position: relative; }
.tpt-pract-page .dash-chart svg { width: 100%; height: 100%; display: block; }
.tpt-pract-page .dash-chart-axis {
  display: flex; justify-content: space-between;
  font-size: 9.5px; color: var(--tp-text-secondary);
  margin-top: 6px;
}
.tpt-pract-page .dash-task { display: flex; flex-direction: column; gap: 10px; }
.tpt-pract-page .dash-task-row { display: flex; gap: 10px; align-items: flex-start; }
.tpt-pract-page .dash-task-check {
  width: 16px; height: 16px; border-radius: 4px;
  border: 1.5px solid var(--tp-border-grey);
  flex: none; margin-top: 1px;
}
.tpt-pract-page .dash-task-check.done {
  background: var(--accent); border-color: var(--accent);
  position: relative;
}
.tpt-pract-page .dash-task-check.done::after {
  content: ""; position: absolute; left: 3px; top: 1px;
  width: 5px; height: 9px; border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.tpt-pract-page .dash-task-body { flex: 1; font-size: 11.5px; line-height: 1.4; }
.tpt-pract-page .dash-task-body strong { color: var(--tp-primary-navy); font-weight: 600; }
.tpt-pract-page .dash-task-due { font-size: 10.5px; color: var(--tp-text-secondary); margin-top: 2px; }

/* ---------- FEATURE ROWS ---------- */
.tpt-pract-page .feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 56px 0;
}
.tpt-pract-page .feature-row.flip { direction: rtl; }
.tpt-pract-page .feature-row.flip > * { direction: ltr; }
.tpt-pract-page .feature-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11,31,58,0.10);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--tp-bg-subtle);
}
.tpt-pract-page .feature-body h3 {
  font-size: 36px; line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--tp-primary-navy);
  margin-bottom: 18px;
}
.tpt-pract-page .feature-body p {
  font-size: 17px; line-height: 1.6; color: var(--tp-text-secondary);
  margin-bottom: 20px;
}
.tpt-pract-page .feature-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px;
}
.tpt-pract-page .feature-tag {
  font-size: 12px; font-weight: 500; color: var(--tp-text-secondary);
  background: var(--tp-soft-grey-bg);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--tp-border-grey);
}

/* ---------- PANELS SECTION ---------- */
.tpt-pract-page .panels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tpt-pract-page .panel-card {
  background: #fff;
  border: 1px solid var(--tp-border-grey);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.tpt-pract-page .panel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(11,31,58,0.10);
}
.tpt-pract-page .panel-header {
  padding: 28px 24px 22px;
  color: #fff;
  min-height: 130px;
}
.tpt-pract-page .panel-header.gradient-1 {
  background: linear-gradient(135deg, #0B1F3A 0%, #144652 100%);
}
.tpt-pract-page .panel-header.gradient-2 {
  background: linear-gradient(135deg, #144652 0%, #2A8898 100%);
}
.tpt-pract-page .panel-header.gradient-3 {
  background: linear-gradient(135deg, #5A0F12 0%, #D91A1F 100%);
}
.tpt-pract-page .panel-count {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.tpt-pract-page .panel-name {
  font-size: 22px; font-weight: 700; line-height: 1.15;
  margin-top: 10px;
  letter-spacing: -0.01em;
}
.tpt-pract-page .panel-body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.tpt-pract-page .panel-body p {
  font-size: 14px; line-height: 1.55; color: var(--tp-text-secondary);
}
.tpt-pract-page .panel-bm-list {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: var(--tp-text-primary);
}
.tpt-pract-page .panel-bm-list span { display: block; }
.tpt-pract-page .panel-bm-list span::before {
  content: "·";
  color: var(--accent);
  font-weight: 700;
  margin-right: 8px;
}
.tpt-pract-page .panel-cta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--tp-border-grey);
  font-size: 13px; font-weight: 600; color: var(--accent);
}

/* ---------- TESTIMONIAL ---------- */
.tpt-pract-page .testimonial {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 0;
}
.tpt-pract-page .testimonial-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--tp-primary-navy);
}
.tpt-pract-page .testimonial-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.78) 100%);
  backdrop-filter: blur(2px);
}
.tpt-pract-page .testimonial-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}
.tpt-pract-page .testimonial-portrait {
  width: 260px; height: 320px;
  border-radius: 16px;
  overflow: hidden;
  flex: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.1);
}
.tpt-pract-page .testimonial-quote-mark {
  font-size: 64px;
  line-height: 0.5;
  color: var(--accent-on-dark);
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.tpt-pract-page .testimonial-quote {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 720px;
  margin: 0;
}
.tpt-pract-page .testimonial-attrib {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}
.tpt-pract-page .testimonial-attrib strong { color: #fff; font-weight: 600; }

/* ---------- WHO IT'S FOR ---------- */
.tpt-pract-page .who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tpt-pract-page .who-card {
  background: #fff;
  border: 1px solid var(--tp-border-grey);
  border-radius: 18px;
  overflow: hidden;
}
.tpt-pract-page .who-photo {
  aspect-ratio: 5 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--tp-bg-subtle);
}
.tpt-pract-page .who-body { padding: 22px 24px 26px; }
.tpt-pract-page .who-body h4 {
  font-size: 18px; font-weight: 700; color: var(--tp-primary-navy);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.tpt-pract-page .who-body p { font-size: 14px; line-height: 1.55; color: var(--tp-text-secondary); }

/* ---------- FAQ ---------- */
.tpt-pract-page .faq-list {
  margin-top: 40px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--tp-border-grey);
}
.tpt-pract-page .faq-item { border-bottom: 1px solid var(--tp-border-grey); }
.tpt-pract-page .faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  background: transparent; border: 0;
  font-family: var(--tp-font-sans);
  font-size: 17px; font-weight: 600; color: var(--tp-primary-navy);
  text-align: left;
  cursor: pointer;
}
.tpt-pract-page .faq-q .chev {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--tp-soft-grey-bg);
  color: var(--tp-text-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  transition: transform 180ms ease, background 180ms ease;
}
.tpt-pract-page .faq-item.open .faq-q .chev {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.tpt-pract-page .faq-a {
  font-size: 15px; line-height: 1.6; color: var(--tp-text-secondary);
  padding: 0 60px 22px 4px;
  max-width: 780px;
  display: none;
}
.tpt-pract-page .faq-item.open .faq-a { display: block; }

/* ---------- FINAL CTA BANNER ---------- */
.tpt-pract-page .final-cta {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: 130px 0;
  text-align: center;
  background: var(--tp-primary-navy);
}
.tpt-pract-page .final-cta-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tpt-pract-page .final-cta-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,31,58,0.85) 0%, rgba(11,31,58,0.92) 100%);
}
.tpt-pract-page .final-cta h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #fff;
  margin: 0 auto;
  max-width: 18ch;
}
.tpt-pract-page .final-cta p {
  margin: 22px auto 0;
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.55;
}
.tpt-pract-page .final-cta .ctas {
  margin-top: 36px;
  display: inline-flex;
  gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* ---------- FOOTER ---------- */
.tpt-pract-page .lp-footer {
  background: var(--tp-primary-navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.tpt-pract-page .lp-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.tpt-pract-page .lp-footer-brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.tpt-pract-page .lp-footer-brand em { color: var(--accent-on-dark); font-style: normal; }
.tpt-pract-page .lp-footer p.about {
  margin-top: 16px;
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.tpt-pract-page .lp-footer h5 {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.tpt-pract-page .lp-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.tpt-pract-page .lp-footer ul a {
  font-size: 14px; color: rgba(255,255,255,0.78); text-decoration: none;
}
.tpt-pract-page .lp-footer ul a:hover { color: #fff; }
.tpt-pract-page .lp-footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  gap: 16px; flex-wrap: wrap;
}
.tpt-pract-page .lp-footer-legal { display: flex; gap: 20px; }
.tpt-pract-page .lp-footer-legal a { color: rgba(255,255,255,0.55); text-decoration: none; }
.tpt-pract-page .lp-footer-legal a:hover { color: #fff; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px) {
  .tpt-pract-page .lp-brand-name { font-size: 14px; white-space: nowrap; }
  .tpt-pract-page .lp-nav-cta .lp-btn--primary { display: none; }
}

@media (max-width: 420px) {
  .tpt-pract-page .lp-brand-name em,
  .tpt-pract-page .lp-brand-name .brand-for { display: none; }
  .tpt-pract-page .lp-nav-cta { display: none; }
}

@media (max-width: 960px) {
  :root { --section-py: 64px; --section-py-tight: 48px; }
  .tpt-pract-page .lp-nav-links { display: none; }
  .tpt-pract-page .hero-inner { padding: 80px 24px 72px; grid-template-columns: 1fr; gap: 40px; }
  .tpt-pract-page .hero-inner--full { padding: 80px 24px 72px; }
  .tpt-pract-page .dashpreview-grid { grid-template-columns: 1fr; gap: 40px; }
  .tpt-pract-page .howit-grid,
  .tpt-pract-page .panels-grid,
  .tpt-pract-page .who-grid { grid-template-columns: 1fr; }
  .tpt-pract-page .feature-row { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .tpt-pract-page .feature-row.flip { direction: ltr; }
  .tpt-pract-page .testimonial-grid { grid-template-columns: 1fr; gap: 28px; }
  .tpt-pract-page .testimonial-portrait { width: 200px; height: 240px; margin: 0 auto; }
  .tpt-pract-page .lp-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tpt-pract-page .sec-title { font-size: 32px; }
  .tpt-pract-page .feature-body h3 { font-size: 28px; }
  .tpt-pract-page .dash-frame { grid-template-columns: 1fr; min-height: auto; }
  .tpt-pract-page .dash-rail { display: none; }
  .tpt-pract-page .dash-body { grid-template-columns: 1fr; }
  .tpt-pract-page .dash-list { border-right: 0; border-bottom: 1px solid var(--tp-border-grey); }
}
