/* ─── Landing-specific design tokens ─── */
  :root {
    --teal-900: #0f4f4a;
    --teal-700: #0f766e;
    --teal-500: #14b8a6;
    --teal-200: #99f6e4;
    --teal-50:  #f0fdfa;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50:  #f8fafc;
    --white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
    --shadow-md: 0 4px 16px rgba(15,23,42,.08), 0 2px 6px rgba(15,23,42,.05);
    --shadow-lg: 0 12px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.07);
    --primary:         #0f766e;
    --primary-dark:    #0d6b62;
    --primary-light:   #14b8a6;
    --primary-soft:    #ccfbf1;
    --primary-xsoft:   #f0fdfa;

  /* Accent (blue) */
  --accent:          #14b8a6;
  --accent-soft:     #e0f2fe;
  --blue-soft:       #e0f2fe;

  /* Neutral */
  --bg:              #f8fafc;
  --surface:         #ffffff;
  --border:          #e2e8f0;
  --border-light:    #f1f5f9;

  /* Text */
  --text:            #0f172a;
  --text-secondary:  #334155;
  --muted:           #64748b;
  --subtle:          #94a3b8;
  --placeholder:     #cbd5e1;

  /* Status / Feedback */
  --success:         #16a34a;
  --success-soft:    #dcfce7;
  --warning:         #f59e0b;
  --warning-soft:    #fef3c7;
  --danger:          #ef4444;
  --danger-soft:     #fee2e2;
  --info:            #3b82f6;
  --info-soft:       #dbeafe;

  /* --- Sidebar --- */
  --sidebar-bg:          #0f1923;
  --sidebar-width:       240px;
  --sidebar-text:        #94a3b8;
  --sidebar-active:      #ffffff;
  --sidebar-hover:       rgba(255, 255, 255, 0.06);
  --sidebar-active-bg:   rgba(20, 184, 166, 0.15);

  /* --- Spacing (8px base grid) --- */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
  --space-16:  64px;

  /* --- Border Radius --- */
  --radius:      8px;
  --radius-xl:   16px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-xs:  0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow:     0 4px 6px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);

  /* --- Typography --- */
  --font-sans:  'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --text-xs:    11px;
  --text-sm:    13px;
  --text-base:  14px;
  --text-md:    15px;
  --text-lg:    17px;
  --text-xl:    20px;
  --text-2xl:   24px;
  --text-3xl:   30px;
  --text-4xl:   36px;

  /* --- Transitions --- */
  --transition-fast:  150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition:       200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* --- Layout --- */
  --header-height:  60px;
  --content-max:    1280px;
  }

  /* ─── Base reset for landing sections ─── */
  .lp-section {
    width: 100%;
    padding: 96px 0;
  }
  .lp-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .lp-container--narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ─── Typography ─── */
  .lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: 20px;
  }
  .lp-eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--teal-500);
    border-radius: 2px;
  }
  .lp-headline {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--slate-900);
    margin: 0 0 20px;
  }
  .lp-headline em {
    font-style: normal;
    color: var(--teal-700);
  }
  .lp-subheadline {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate-500);
    margin: 0;
  }
  .lp-section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 12px;
  }
  .lp-section-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.02em;
    color: var(--slate-900);
    margin: 0 0 16px;
  }
  .lp-section-title em {
    font-style: normal;
    color: var(--teal-700);
  }
  .lp-section-body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--slate-500);
    margin: 0;
  }

  /* ─── Buttons ─── */
  .lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--teal-700);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .18s, transform .14s, box-shadow .18s;
    box-shadow: 0 2px 8px rgba(15,118,110,.28);
  }
  .lp-btn-primary:hover {
    background: var(--teal-900);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15,118,110,.32);
  }
  .lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--slate-700);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1.5px solid var(--slate-200);
    cursor: pointer;
    transition: border-color .18s, color .18s, background .18s;
  }
  .lp-btn-secondary:hover {
    border-color: var(--teal-500);
    color: var(--teal-700);
    background: var(--teal-50);
  }
  .lp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: transparent;
    color: var(--teal-700);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .18s;
  }
  .lp-btn-ghost:hover {
    background: var(--teal-50);
  }
  .lp-btn-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
  }

  /* ─────────────────────────────────────
     SECTION 1 — HERO
  ───────────────────────────────────── */
  .lp-hero {
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
  }
  .lp-hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(20,184,166,.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .lp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--teal-50);
    border: 1px solid rgba(20,184,166,.25);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--teal-700);
    margin-bottom: 28px;
  }
  .lp-hero-badge span {
    width: 7px;
    height: 7px;
    background: var(--teal-500);
    border-radius: 50%;
    animation: lp-pulse 2.2s ease-in-out infinite;
  }
  @keyframes lp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(.85); }
  }
  .lp-hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-100);
    flex-wrap: wrap;
  }
  .lp-hero-trust-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--slate-500);
    letter-spacing: .04em;
    white-space: nowrap;
  }
  .lp-hero-trust-items {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .lp-hero-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--slate-100);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--slate-700);
  }

  /* Dashboard mockup */
  .lp-hero-visual {
    position: relative;
    padding-bottom: 0;
  }
  .lp-mockup-shell {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transform-origin: left center;
    transition: transform .4s ease;
  }
  .lp-hero-visual:hover .lp-mockup-shell {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  }
  .lp-mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
  }
  .lp-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  .lp-mockup-dot:nth-child(1) { background: #fc8181; }
  .lp-mockup-dot:nth-child(2) { background: #f6c90e; }
  .lp-mockup-dot:nth-child(3) { background: #68d391; }
  .lp-mockup-url {
    flex: 1;
    height: 22px;
    background: var(--slate-200);
    border-radius: 4px;
    margin-left: 12px;
  }
  .lp-mockup-body {
    display: grid;
    grid-template-columns: 52px 1fr;
    height: 320px;
  }
  .lp-mockup-sidebar {
    background: var(--slate-900);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .lp-mockup-nav-dot {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
  }
  .lp-mockup-nav-dot.active {
    background: var(--teal-700);
  }
  .lp-mockup-main {
    padding: 20px;
    background: var(--slate-50);
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
  }
  .lp-mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .lp-mock-stat {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    padding: 12px;
  }
  .lp-mock-stat-label {
    height: 8px;
    background: var(--slate-200);
    border-radius: 4px;
    margin-bottom: 8px;
    width: 60%;
  }
  .lp-mock-stat-val {
    height: 18px;
    background: var(--slate-300);
    border-radius: 4px;
    width: 40%;
  }
  .lp-mock-stat-val.accent { background: var(--teal-500); width: 55%; }
  .lp-mock-chart {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .lp-mock-chart-header {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .lp-mock-chart-title {
    height: 10px;
    width: 120px;
    background: var(--slate-200);
    border-radius: 4px;
  }
  .lp-mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    padding-top: 8px;
  }
  .lp-mock-bar {
    flex: 1;
    background: var(--slate-100);
    border-radius: 4px 4px 0 0;
  }
  .lp-mock-bar.t { background: var(--teal-200); }
  .lp-mock-bar.a { background: var(--teal-500); }
  .lp-mock-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .lp-mock-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 6px;
  }
  .lp-mock-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--teal-200);
    flex-shrink: 0;
  }
  .lp-mock-row-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
  }
  .lp-mock-line {
    height: 7px;
    background: var(--slate-200);
    border-radius: 4px;
  }
  .lp-mock-line.short { width: 55%; }
  .lp-mock-badge {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .04em;
  }
  .lp-mock-badge.green { background: #d1fae5; color: #065f46; }
  .lp-mock-badge.blue  { background: #dbeafe; color: #1e40af; }
  .lp-mock-badge.amber { background: #fef3c7; color: #92400e; }

  /* Floating accent cards */
  .lp-hero-float-1,
  .lp-hero-float-2 {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    animation: lp-float 4s ease-in-out infinite;
  }
  @keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
  }
  .lp-hero-float-1 {
    bottom: -20px;
    left: -66px;
    animation-delay: 0s;
    z-index: 1000;
  }
  .lp-hero-float-2 {
    top: -70px;
    right: -24px;
    animation-delay: 1.8s;
    z-index: 1000;
  }
  .lp-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--teal-50);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ─────────────────────────────────────
     SECTION 2 — SOCIAL PROOF STRIP
  ───────────────────────────────────── */
  .lp-proof-strip {
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
    padding: 28px 0;
  }
  .lp-proof-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .lp-proof-stat {
    text-align: center;
  }
  .lp-proof-num {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1;
    letter-spacing: -.02em;
  }
  .lp-proof-label {
    font-size: 13px;
    color: var(--slate-500);
    margin-top: 4px;
  }
  .lp-proof-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-200);
  }

  /* ─────────────────────────────────────
     SECTION 3 — PROBLEM
  ───────────────────────────────────── */
  .lp-problem {
    background: var(--white);
  }
  .lp-problem-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .lp-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .lp-problem-card {
    padding: 32px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    transition: border-color .2s, box-shadow .2s;
  }
  .lp-problem-card:hover {
    border-color: rgba(20,184,166,.3);
    box-shadow: var(--shadow-md);
  }
  .lp-problem-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .lp-problem-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--slate-500);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .lp-problem-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0 0 10px;
    letter-spacing: -.01em;
  }
  .lp-problem-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-500);
    margin: 0;
  }

  /* ─────────────────────────────────────
     SECTION 4 — SOLUTION
  ───────────────────────────────────── */
  .lp-solution {
    background: var(--slate-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .lp-solution::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(20,184,166,.12) 0%, transparent 65%);
    pointer-events: none;
  }
  .lp-solution-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .lp-solution-header .lp-eyebrow {
    color: var(--teal-200);
  }
  .lp-solution-header .lp-eyebrow::before {
    background: var(--teal-500);
  }
  .lp-solution-header .lp-section-title {
    color: var(--white);
  }
  .lp-solution-header .lp-section-body {
    color: rgba(255,255,255,.55);
  }
  .lp-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .lp-solution-feature {
    padding: 40px 36px;
    background: var(--slate-900);
    transition: background .2s;
  }
  .lp-solution-feature:hover {
    background: rgba(255,255,255,.04);
  }
  .lp-solution-num {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--teal-500);
    margin-bottom: 20px;
    display: block;
  }
  .lp-solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(20,184,166,.12);
    border: 1px solid rgba(20,184,166,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .lp-solution-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal-400, #2dd4bf);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .lp-solution-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 12px;
    letter-spacing: -.01em;
  }
  .lp-solution-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,.5);
    margin: 0;
  }
  .lp-solution-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 4px 12px;
    background: rgba(20,184,166,.1);
    border: 1px solid rgba(20,184,166,.18);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--teal-400, #2dd4bf);
  }

  /* ─────────────────────────────────────
     SECTION 5 — HOW IT WORKS
  ───────────────────────────────────── */
  .lp-howit {
    background: var(--white);
  }
  .lp-howit-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .lp-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 1px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-200));
  }
  .lp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    position: relative;
  }
  .lp-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--teal-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--teal-700);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  .lp-step-num.active {
    background: var(--teal-700);
    color: var(--white);
    border-color: var(--teal-700);
    box-shadow: 0 0 0 6px rgba(15,118,110,.12);
  }
  .lp-step-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0 0 8px;
  }
  .lp-step-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--slate-500);
    margin: 0;
  }

  /* ─────────────────────────────────────
     SECTION 6 — FEATURES
  ───────────────────────────────────── */
  .lp-features {
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
  }
  .lp-features-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .lp-feature-item {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    transition: box-shadow .2s, border-color .2s;
  }
  .lp-feature-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(20,184,166,.28);
  }
  .lp-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--teal-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .lp-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--teal-700);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .lp-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0 0 8px;
  }
  .lp-feature-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--slate-500);
    margin: 0;
  }

  /* ─────────────────────────────────────
     SECTION 7 — TESTIMONIALS
  ───────────────────────────────────── */
  .lp-testimonials {
    background: var(--white);
  }
  .lp-testimonials-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .lp-testimonial-card {
    padding: 32px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: box-shadow .2s;
  }
  .lp-testimonial-card:hover {
    box-shadow: var(--shadow-md);
  }
  .lp-testimonial-stars {
    display: flex;
    gap: 3px;
  }
  .lp-star {
    width: 14px;
    height: 14px;
    fill: #f59e0b;
  }
  .lp-testimonial-quote {
    font-size: 15px;
    line-height: 1.75;
    color: var(--slate-700);
    margin: 0;
    font-style: italic;
  }
  .lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
  }
  .lp-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--teal-900);
    flex-shrink: 0;
  }
  .lp-testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0 0 2px;
  }
  .lp-testimonial-role {
    font-size: 12px;
    color: var(--slate-500);
    margin: 0;
  }

  /* ─────────────────────────────────────
     SECTION 8 — CTA BANNER
  ───────────────────────────────────── */
  .lp-cta-banner {
    background: var(--teal-700);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
  }
  .lp-cta-banner::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%);
    pointer-events: none;
  }
  .lp-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .lp-cta-inner .lp-headline {
    color: var(--white);
    font-size: clamp(28px, 4vw, 46px);
  }
  .lp-cta-inner .lp-subheadline {
    color: rgba(255,255,255,.7);
    max-width: 520px;
    margin: 0 auto;
  }
  .lp-cta-inner .lp-btn-group {
    justify-content: center;
  }
  .lp-cta-inner .lp-btn-primary {
    background: var(--white);
    color: var(--teal-700);
    box-shadow: 0 4px 20px rgba(0,0,0,.16);
  }
  .lp-cta-inner .lp-btn-primary:hover {
    background: var(--slate-50);
    transform: translateY(-2px);
  }
  .lp-cta-inner .lp-btn-secondary {
    border-color: rgba(255,255,255,.35);
    color: var(--white);
  }
  .lp-cta-inner .lp-btn-secondary:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.55);
    color: var(--white);
  }
  .lp-cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
  }

  /* ─────────────────────────────────────
     LANDING NAV OVERRIDE
  ───────────────────────────────────── */
  .lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--slate-200);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }
  .lp-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    text-decoration: none;
    letter-spacing: -.02em;
  }
  .lp-nav-logo-mark {
    width: 30px;
    height: 30px;
    background: var(--teal-700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lp-nav-logo-mark svg {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .lp-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .lp-nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-500);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color .15s, background .15s;
  }
  .lp-nav-link:hover {
    color: var(--slate-900);
    background: var(--slate-100);
  }
  .lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  /* ─────────────────────────────────────
     FOOTER
  ───────────────────────────────────── */
  .lp-footer {
    background: var(--slate-900);
    padding: 64px 0 32px;
  }
  .lp-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .lp-footer-brand {}
  .lp-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 16px;
  }
  .lp-footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.45);
    margin: 0;
    max-width: 260px;
  }
  .lp-footer-col-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin: 0 0 16px;
  }
  .lp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .lp-footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .15s;
  }
  .lp-footer-links a:hover {
    color: var(--white);
  }
  .lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .lp-footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,.35);
    margin: 0;
  }

  /* ─── Deep Features ─── */
  .lp-deep-features {
    background: var(--white);
    border-top: 1px solid var(--slate-200);
  }
  .lp-deep-features-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .lp-deep-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--slate-200);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .lp-deep-feature {
    background: var(--white);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: background .18s;
    position: relative;
  }
  .lp-deep-feature:hover {
    background: var(--teal-50);
  }
  .lp-deep-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--slate-100);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 24px;
    width: fit-content;
  }
  .lp-deep-feature-tag.accent {
    background: var(--teal-50);
    color: var(--teal-700);
  }
  .lp-deep-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .lp-deep-feature:hover .lp-deep-feature-icon {
    background: var(--white);
    border-color: rgba(20,184,166,.3);
  }
  .lp-deep-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal-700);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .lp-deep-feature-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--slate-900);
    letter-spacing: -.01em;
    margin: 0 0 10px;
  }
  .lp-deep-feature-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--slate-500);
    margin: 0 0 20px;
    flex: 1;
  }
  .lp-deep-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .lp-deep-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--slate-600, #475569);
    line-height: 1.5;
  }
  .lp-deep-feature-list li::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ─── How It Works (detailed) ─── */
  .lp-hiw {
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
  }
  .lp-hiw-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .lp-hiw-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .lp-hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .lp-hiw-step {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 40px;
    cursor: pointer;
  }
  .lp-hiw-step:last-child {
    padding-bottom: 0;
  }
  .lp-hiw-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
  }
  .lp-hiw-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--slate-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--slate-400, #94a3b8);
    transition: background .2s, border-color .2s, color .2s;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .lp-hiw-step.is-active .lp-hiw-step-num,
  .lp-hiw-step:hover .lp-hiw-step-num {
    background: var(--teal-700);
    border-color: var(--teal-700);
    color: var(--white);
    box-shadow: 0 0 0 5px rgba(15,118,110,.1);
  }
  .lp-hiw-step-line {
    width: 1px;
    flex: 1;
    background: var(--slate-200);
    margin-top: 4px;
    margin-bottom: 0;
    min-height: 32px;
  }
  .lp-hiw-step:last-child .lp-hiw-step-line {
    display: none;
  }
  .lp-hiw-step-right {
    padding-top: 10px;
  }
  .lp-hiw-step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0 0 6px;
    letter-spacing: -.01em;
  }
  .lp-hiw-step-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate-500);
    margin: 0;
  }
  .lp-hiw-step-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--teal-700);
    background: var(--teal-50);
    padding: 3px 10px;
    border-radius: 999px;
  }

  /* Right side visual panel */
  .lp-hiw-visual {
    position: relative;
  }
  .lp-hiw-panel {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .lp-hiw-panel-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .lp-hiw-panel-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-900);
  }
  .lp-hiw-panel-badge {
    margin-left: auto;
    padding: 3px 10px;
    background: var(--teal-50);
    color: var(--teal-700);
    font-size: 11px;
    font-weight: 600;
    border-radius: 999px;
  }
  .lp-hiw-panel-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Patient profile mock */
  .lp-mock-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--slate-50);
    border-radius: 10px;
    border: 1px solid var(--slate-100);
  }
  .lp-mock-profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-200), var(--teal-500));
    flex-shrink: 0;
  }
  .lp-mock-profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .lp-mock-profile-name {
    height: 11px;
    width: 110px;
    background: var(--slate-300);
    border-radius: 4px;
  }
  .lp-mock-profile-sub {
    height: 8px;
    width: 75px;
    background: var(--slate-200);
    border-radius: 4px;
  }
  .lp-mock-tag-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }
  .lp-mock-tag {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
  }
  .lp-mock-tag.teal  { background: var(--teal-50);  color: var(--teal-700); border: 1px solid rgba(20,184,166,.25); }
  .lp-mock-tag.slate { background: var(--slate-100); color: var(--slate-600, #475569); }
  .lp-mock-tag.blue  { background: #eff6ff;          color: #1d4ed8; }
  .lp-mock-metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .lp-mock-metric {
    padding: 10px 12px;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 8px;
  }
  .lp-mock-metric-label {
    height: 7px;
    width: 48px;
    background: var(--slate-200);
    border-radius: 3px;
    margin-bottom: 7px;
  }
  .lp-mock-metric-val {
    height: 14px;
    width: 36px;
    background: var(--teal-200);
    border-radius: 3px;
  }
  .lp-mock-progress-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .lp-mock-prog-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .lp-mock-prog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .lp-mock-prog-label {
    height: 8px;
    width: 100px;
    background: var(--slate-200);
    border-radius: 3px;
  }
  .lp-mock-prog-pct {
    height: 8px;
    width: 28px;
    background: var(--teal-200);
    border-radius: 3px;
  }
  .lp-mock-prog-bar {
    height: 6px;
    background: var(--slate-100);
    border-radius: 999px;
    overflow: hidden;
  }
  .lp-mock-prog-fill {
    height: 100%;
    background: var(--teal-500);
    border-radius: 999px;
  }

  /* ─── Product Preview ─── */
  .lp-preview {
    background: var(--white);
    border-top: 1px solid var(--slate-200);
  }
  .lp-preview-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .lp-preview-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    background: var(--slate-100);
    padding: 4px;
    border-radius: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .lp-preview-tab {
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-500);
    border-radius: 7px;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: background .15s, color .15s, box-shadow .15s;
  }
  .lp-preview-tab.is-active {
    background: var(--white);
    color: var(--slate-900);
    box-shadow: var(--shadow-sm);
  }
  .lp-preview-panels {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  /* Primary large panel */
  .lp-preview-main {
    background: var(--slate-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
  }
  .lp-preview-main-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .lp-preview-dot { width: 10px; height: 10px; border-radius: 50%; }
  .lp-preview-dot:nth-child(1) { background: #fc8181; }
  .lp-preview-dot:nth-child(2) { background: #f6c90e; }
  .lp-preview-dot:nth-child(3) { background: #68d391; }
  .lp-preview-url-bar {
    flex: 1;
    height: 22px;
    background: rgba(255,255,255,.07);
    border-radius: 4px;
    margin-left: 12px;
    display: flex;
    align-items: center;
    padding: 0 10px;
  }
  .lp-preview-url-text {
    height: 8px;
    width: 160px;
    background: rgba(255,255,255,.15);
    border-radius: 3px;
  }
  .lp-preview-main-body {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 400px;
  }
  .lp-preview-main-sidebar {
    background: rgba(255,255,255,.03);
    border-right: 1px solid rgba(255,255,255,.06);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .lp-preview-sidebar-section {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    padding: 8px 12px 4px;
    margin-top: 8px;
  }
  .lp-preview-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    cursor: pointer;
    transition: background .15s, color .15s;
  }
  .lp-preview-nav-item.active {
    background: rgba(20,184,166,.15);
    color: var(--teal-200);
  }
  .lp-preview-nav-item svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
  .lp-preview-nav-dot {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
  }
  .lp-preview-nav-label {
    height: 9px;
    border-radius: 3px;
    background: currentColor;
    opacity: .4;
  }
  .lp-preview-main-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
  }
  .lp-preview-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .lp-preview-page-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .lp-preview-page-title-bar {
    height: 14px;
    width: 180px;
    background: rgba(255,255,255,.7);
    border-radius: 4px;
  }
  .lp-preview-page-subtitle-bar {
    height: 9px;
    width: 120px;
    background: rgba(255,255,255,.2);
    border-radius: 4px;
  }
  .lp-preview-add-btn {
    padding: 8px 16px;
    background: var(--teal-700);
    border-radius: 6px;
    height: 32px;
    width: 110px;
    flex-shrink: 0;
  }
  .lp-preview-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .lp-preview-stat-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .lp-preview-stat-label {
    height: 8px;
    width: 60px;
    background: rgba(255,255,255,.2);
    border-radius: 3px;
  }
  .lp-preview-stat-val {
    height: 20px;
    width: 50px;
    background: rgba(255,255,255,.55);
    border-radius: 4px;
  }
  .lp-preview-stat-delta {
    height: 8px;
    width: 40px;
    background: rgba(52,211,153,.5);
    border-radius: 3px;
  }
  .lp-preview-chart-area {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .lp-preview-chart-title {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .lp-preview-chart-title-bar {
    height: 10px;
    width: 140px;
    background: rgba(255,255,255,.35);
    border-radius: 3px;
  }
  .lp-preview-chart-legend {
    display: flex;
    gap: 16px;
  }
  .lp-preview-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .lp-preview-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
  .lp-preview-legend-label {
    height: 7px;
    width: 50px;
    background: rgba(255,255,255,.2);
    border-radius: 3px;
  }
  .lp-preview-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
  }
  .lp-preview-bar-group {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 3px;
  }
  .lp-preview-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
  }
  .lp-preview-patient-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .lp-preview-patient-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 8px;
  }
  .lp-preview-patient-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .lp-preview-patient-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .lp-preview-patient-name {
    height: 9px;
    width: 100px;
    background: rgba(255,255,255,.45);
    border-radius: 3px;
  }
  .lp-preview-patient-prog {
    height: 7px;
    width: 65px;
    background: rgba(255,255,255,.15);
    border-radius: 3px;
  }
  .lp-preview-patient-status {
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
  }

  /* Secondary 2-col panels */
  .lp-preview-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .lp-preview-panel {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .lp-preview-panel-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .lp-preview-panel-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-900);
  }
  .lp-preview-panel-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--teal-50);
    color: var(--teal-700);
  }
  .lp-preview-panel-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Program builder mock */
  .lp-pb-week {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .lp-pb-week-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--slate-400, #94a3b8);
    margin-bottom: 2px;
  }
  .lp-pb-session {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 7px;
    border-left: 3px solid var(--teal-500);
  }
  .lp-pb-session-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--teal-50);
    flex-shrink: 0;
  }
  .lp-pb-session-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .lp-pb-session-name {
    height: 9px;
    width: 120px;
    background: var(--slate-300);
    border-radius: 3px;
  }
  .lp-pb-session-meta {
    height: 7px;
    width: 70px;
    background: var(--slate-200);
    border-radius: 3px;
  }
  .lp-pb-session-dur {
    font-size: 11px;
    font-weight: 600;
    color: var(--slate-500);
  }
  .lp-pb-session.blue { border-left-color: #60a5fa; }
  .lp-pb-session.amber { border-left-color: #f59e0b; }
  .lp-pb-add-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1.5px dashed var(--slate-200);
    border-radius: 7px;
    cursor: pointer;
  }
  .lp-pb-add-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lp-pb-add-label {
    height: 8px;
    width: 80px;
    background: var(--slate-200);
    border-radius: 3px;
  }

  /* Tracking mock */
  .lp-track-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 8px;
    padding: 0 4px;
  }
  .lp-track-col-label {
    height: 8px;
    background: var(--slate-200);
    border-radius: 3px;
  }
  .lp-track-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 7px;
  }
  .lp-track-name {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .lp-track-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .lp-track-name-bar {
    height: 9px;
    width: 80px;
    background: var(--slate-300);
    border-radius: 3px;
  }
  .lp-track-score {
    height: 9px;
    border-radius: 3px;
  }
  .lp-track-progress {
    height: 6px;
    background: var(--slate-100);
    border-radius: 999px;
    overflow: hidden;
  }
  .lp-track-progress-fill {
    height: 100%;
    border-radius: 999px;
  }
  .lp-track-status {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .04em;
    width: fit-content;
  }

  /* ─────────────────────────────────────
     SECTION 7 — BENEFITS
  ───────────────────────────────────── */
  .lp-benefits {
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
  }
  .lp-benefits-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .lp-benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .lp-benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .lp-benefit-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    transition: border-color .2s, box-shadow .2s;
  }
  .lp-benefit-card:hover {
    border-color: rgba(20,184,166,.3);
    box-shadow: var(--shadow-md);
  }
  .lp-benefit-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 12px 8px;
    background: var(--teal-50);
    border: 1px solid rgba(20,184,166,.2);
    border-radius: 10px;
    text-align: center;
    flex-shrink: 0;
  }
  .lp-benefit-metric-num {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--teal-700);
    line-height: 1;
    letter-spacing: -.02em;
  }
  .lp-benefit-metric-unit {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--teal-700);
    opacity: .7;
    margin-top: 3px;
  }
  .lp-benefit-body {}
  .lp-benefit-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0 0 6px;
    letter-spacing: -.01em;
  }
  .lp-benefit-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--slate-500);
    margin: 0;
  }

  /* Right-side comparison block */
  .lp-benefits-compare {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .lp-compare-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
  }
  .lp-compare-col-label {
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .lp-compare-col-label:first-child {
    color: var(--slate-400, #94a3b8);
    border-right: 1px solid var(--slate-200);
  }
  .lp-compare-col-label:last-child {
    color: var(--teal-700);
  }
  .lp-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--slate-100);
  }
  .lp-compare-row:last-child {
    border-bottom: none;
  }
  .lp-compare-cell {
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .lp-compare-cell:first-child {
    color: var(--slate-500);
    border-right: 1px solid var(--slate-100);
  }
  .lp-compare-cell:last-child {
    color: var(--slate-700);
    font-weight: 500;
  }
  .lp-compare-icon-bad {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fee2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .lp-compare-icon-bad svg {
    width: 10px;
    height: 10px;
    stroke: #dc2626;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
  }
  .lp-compare-icon-good {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--teal-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .lp-compare-icon-good svg {
    width: 10px;
    height: 10px;
    stroke: var(--teal-700);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ─────────────────────────────────────
     SECTION 8 — SOCIAL PROOF
  ───────────────────────────────────── */
  .lp-social-proof {
    background: var(--white);
    border-top: 1px solid var(--slate-200);
  }
  .lp-social-proof-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .lp-proof-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
  }
  /* Left: aggregate score card */
  .lp-proof-score-card {
    background: var(--slate-900);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 80px;
  }
  .lp-proof-score-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .lp-proof-score-num {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -.04em;
  }
  .lp-proof-score-label {
    font-size: 14px;
    color: rgba(255,255,255,.5);
  }
  .lp-proof-score-stars {
    display: flex;
    gap: 4px;
  }
  .lp-proof-score-star {
    width: 18px;
    height: 18px;
    fill: #f59e0b;
  }
  .lp-proof-score-divider {
    height: 1px;
    background: rgba(255,255,255,.08);
  }
  .lp-proof-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .lp-proof-breakdown-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .lp-proof-breakdown-label {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    width: 80px;
    flex-shrink: 0;
  }
  .lp-proof-breakdown-bar {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,.1);
    border-radius: 999px;
    overflow: hidden;
  }
  .lp-proof-breakdown-fill {
    height: 100%;
    background: var(--teal-500);
    border-radius: 999px;
  }
  .lp-proof-breakdown-pct {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    width: 30px;
    text-align: right;
    flex-shrink: 0;
  }
  .lp-proof-score-source {
    font-size: 12px;
    color: rgba(255,255,255,.3);
  }

  /* Right: testimonial cards */
  .lp-proof-testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .lp-proof-tcard {
    padding: 32px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color .2s, box-shadow .2s;
  }
  .lp-proof-tcard:hover {
    border-color: rgba(20,184,166,.25);
    box-shadow: var(--shadow-md);
  }
  .lp-proof-tcard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }
  .lp-proof-tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .lp-proof-tcard-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .lp-proof-tcard-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0 0 3px;
  }
  .lp-proof-tcard-role {
    font-size: 12px;
    color: var(--slate-500);
    margin: 0;
  }
  .lp-proof-tcard-clinic {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--slate-600, #475569);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .lp-proof-tcard-quote {
    font-size: 15px;
    line-height: 1.8;
    color: var(--slate-700);
    margin: 0;
    position: relative;
    padding-left: 18px;
  }
  .lp-proof-tcard-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-family: 'Georgia', serif;
    font-size: 32px;
    color: var(--teal-200);
    line-height: 1;
  }
  .lp-proof-tcard-metrics {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--slate-200);
  }
  .lp-proof-tcard-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .lp-proof-tcard-metric-num {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--teal-700);
    letter-spacing: -.02em;
  }
  .lp-proof-tcard-metric-label {
    font-size: 11px;
    color: var(--slate-500);
  }

  /* ─────────────────────────────────────
     SECTION 9 — FINAL CTA
  ───────────────────────────────────── */
  .lp-final-cta {
    background: var(--slate-900);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  .lp-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 50%, rgba(15,118,110,.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 80% 50%, rgba(20,184,166,.08) 0%, transparent 70%);
    pointer-events: none;
  }
  /* Decorative grid lines */
  .lp-final-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }
  .lp-final-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .lp-final-cta-left {}
  .lp-final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(20,184,166,.1);
    border: 1px solid rgba(20,184,166,.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--teal-400, #2dd4bf);
    margin-bottom: 24px;
  }
  .lp-final-cta-headline {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -.025em;
    margin: 0 0 20px;
  }
  .lp-final-cta-headline em {
    font-style: normal;
    color: var(--teal-400, #2dd4bf);
  }
  .lp-final-cta-body {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,.55);
    margin: 0 0 36px;
  }
  .lp-final-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .lp-final-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--teal-500);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background .18s, transform .14s, box-shadow .18s;
    box-shadow: 0 4px 20px rgba(20,184,166,.3);
  }
  .lp-final-cta-primary:hover {
    background: var(--teal-400, #2dd4bf);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(20,184,166,.38);
  }
  .lp-final-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: transparent;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.2);
    transition: border-color .18s, color .18s, background .18s;
  }
  .lp-final-cta-secondary:hover {
    border-color: rgba(255,255,255,.4);
    color: var(--white);
    background: rgba(255,255,255,.05);
  }
  .lp-final-cta-note {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,.3);
  }
  /* Right card */
  .lp-final-cta-right {}
  .lp-demo-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .lp-demo-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
  }
  .lp-demo-card-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    margin: 0;
    line-height: 1.6;
  }
  .lp-demo-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .lp-demo-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
  }
  .lp-demo-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(20,184,166,.12);
    border: 1px solid rgba(20,184,166,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .lp-demo-step-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal-400, #2dd4bf);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .lp-demo-step-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
  }
  .lp-demo-step-time {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.3);
    white-space: nowrap;
  }
  .lp-demo-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--teal-700);
    border-radius: 10px;
    text-decoration: none;
    transition: background .18s;
  }
  .lp-demo-card-cta:hover {
    background: var(--teal-900);
  }
  .lp-demo-card-cta-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
  }
  .lp-demo-card-cta-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lp-demo-card-cta-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ─────────────────────────────────────
     SECTION 10 — FOOTER (upgraded)
  ───────────────────────────────────── */
  .lp-footer-v2 {
    background: var(--slate-900);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 72px 0 0;
  }
  .lp-footer-v2-inner {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .lp-footer-v2-brand {}
  .lp-footer-v2-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 16px;
    letter-spacing: -.02em;
  }
  .lp-footer-v2-logo-mark {
    width: 30px;
    height: 30px;
    background: var(--teal-700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .lp-footer-v2-logo-mark svg {
    width: 15px;
    height: 15px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .lp-footer-v2-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.4);
    margin: 0 0 24px;
    max-width: 280px;
  }
  .lp-footer-v2-socials {
    display: flex;
    gap: 8px;
  }
  .lp-footer-v2-social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .15s, border-color .15s;
  }
  .lp-footer-v2-social-link:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.15);
  }
  .lp-footer-v2-social-link svg {
    width: 15px;
    height: 15px;
    stroke: rgba(255,255,255,.5);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .lp-footer-v2-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin: 0 0 18px;
  }
  .lp-footer-v2-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }
  .lp-footer-v2-links a {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .15s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .lp-footer-v2-links a:hover {
    color: var(--white);
  }
  .lp-footer-v2-links .new-badge {
    display: inline-block;
    padding: 1px 6px;
    background: rgba(20,184,166,.15);
    border: 1px solid rgba(20,184,166,.2);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    color: var(--teal-400, #2dd4bf);
    letter-spacing: .04em;
  }
  .lp-footer-v2-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .lp-footer-v2-copy {
    font-size: 13px;
    color: rgba(255,255,255,.3);
    margin: 0;
  }
  .lp-footer-v2-bottom-links {
    display: flex;
    gap: 20px;
  }
  .lp-footer-v2-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,.3);
    text-decoration: none;
    transition: color .15s;
  }
  .lp-footer-v2-bottom-links a:hover {
    color: rgba(255,255,255,.6);
  }
  .lp-footer-v2-compliance {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }
  .lp-footer-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.4);
    letter-spacing: .04em;
  }
  .lp-footer-v2-badge svg {
    width: 12px;
    height: 12px;
    stroke: rgba(255,255,255,.4);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
.logo-principal {height: 40px; width: auto; display: block;}

  /* --- Header actions group --- */
.header-actions {
  display:     flex;
  align-items: center;
  gap:         var(--space-2);
  margin-left: auto;
}

.header-icon-btn {
  width:           36px;
  height:          36px;
  border-radius:   var(--radius);
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--muted);
  transition:      all var(--transition-fast);
  position:        relative;
  background:      none;
  flex-shrink:     0;
}

.header-icon-btn:hover {
  background: var(--bg);
  color:      var(--text);
}

.header-icon-btn svg { width: 18px; height: 18px; }

/* Mobile-only toggle is hidden on desktop */
#sidebarToggle { display: none; }

/* Notification dot */
.notif-dot {
  position:     absolute;
  top:          6px;
  right:        6px;
  width:        7px;
  height:       7px;
  background:   var(--danger);
  border-radius: 50%;
  border:       2px solid var(--surface);
  animation:    pulse 2.5s ease-in-out infinite;
}

/* --- Profile dropdown trigger --- */
.header-profile {
  display:      flex;
  align-items:  center;
  gap:          var(--space-2);
  padding:      var(--space-2) var(--space-3);
  border-radius: var(--radius);
  cursor:       pointer;
  transition:   background var(--transition-fast);
  position:     relative;
  user-select:  none;
}

.header-profile:hover { background: var(--bg); }

.header-avatar {
  width:           32px;
  height:          32px;
  border-radius:   var(--radius-full);
  background:      linear-gradient(135deg, var(--primary), var(--primary-light));
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       var(--text-xs);
  font-weight:     700;
  color:           #fff;
  flex-shrink:     0;
}

.header-profile-name {
  font-size:   var(--text-sm);
  font-weight: 500;
  color:       var(--text);
}

/* --- Profile dropdown panel --- */
.profile-dropdown {
  position:     absolute;
  top:          calc(100% + 8px);
  right:        0;
  width:        220px;
  background:   var(--surface);
  border:       1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:   var(--shadow-lg);
  display:      none;
  z-index:      200;
  overflow:     hidden;
}

.profile-dropdown.open { display: block; }

.profile-dropdown-header {
  padding:        var(--space-4);
  border-bottom:  1px solid var(--border-light);
}

.profile-dropdown-name {
  font-weight: 600;
  font-size:   var(--text-sm);
}

.profile-dropdown-email {
  font-size:  var(--text-xs);
  color:      var(--muted);
  margin-top: 2px;
}

.profile-dropdown-menu { padding: var(--space-2); }

.profile-dropdown-item {
  display:         flex;
  align-items:     center;
  gap:             var(--space-3);
  padding:         var(--space-2) var(--space-3);
  border-radius:   var(--radius);
  font-size:       var(--text-sm);
  color:           var(--text-secondary);
  cursor:          pointer;
  transition:      background var(--transition-fast);
  text-decoration: none;
}

.profile-dropdown-item:hover {
  background:      var(--bg);
  color:           var(--text);
  text-decoration: none;
}

.profile-dropdown-item svg {
  width:  15px;
  height: 15px;
  color:  var(--muted);
}

.profile-dropdown-divider {
  height:     1px;
  background: var(--border-light);
  margin:     var(--space-2) 0;
}

/* ─────────────────────────────────────
     RESPONSIVE
  ───────────────────────────────────── */
  @media (max-width: 1024px) {
    .lp-hero-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .lp-mockup-shell {
      transform: none;
      max-width: 540px;
      margin: 0 auto;
    }
    .lp-hero-float-1,
    .lp-hero-float-2 { display: none; }
    .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .lp-steps::before { display: none; }
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-solution-grid { grid-template-columns: 1fr; gap: 1px; }
    .lp-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .lp-deep-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-hiw-layout { grid-template-columns: 1fr; gap: 48px; }
    .lp-preview-stat-row { grid-template-columns: repeat(2, 1fr); }
    .lp-preview-main-body { grid-template-columns: 160px 1fr; }
    .lp-preview-secondary { grid-template-columns: 1fr; }
    .lp-benefits-layout { grid-template-columns: 1fr; gap: 48px; }
    .lp-proof-layout { grid-template-columns: 1fr; }
    .lp-proof-score-card { position: static; }
    .lp-final-cta-inner { grid-template-columns: 1fr; gap: 48px; }
    .lp-footer-v2-inner { grid-template-columns: 1fr 1fr 1fr; }
    .lp-footer-v2-brand { grid-column: 1 / -1; }

  }
  @media (max-width: 768px) {
    .lp-section { padding: 64px 0; }
    .lp-container, .lp-container--narrow { padding: 0 20px; }
    .lp-problem-grid { grid-template-columns: 1fr; }
    .lp-testimonials-grid { grid-template-columns: 1fr; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-nav-links { display: none; }
    .lp-hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
    .lp-proof-divider { display: none; }
    .lp-proof-inner { gap: 24px; }
    .lp-footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .lp-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .lp-deep-features-grid { grid-template-columns: 1fr; }
    .lp-preview-main-sidebar { display: none; }
    .lp-preview-main-body { grid-template-columns: 1fr; }
    .lp-preview-tabs { flex-wrap: wrap; width: 100%; justify-content: flex-start; }
    .lp-preview-stat-row { grid-template-columns: repeat(2, 1fr); }
    .lp-footer-v2-inner { grid-template-columns: 1fr 1fr; }
    .lp-footer-v2-bottom { flex-direction: column; align-items: flex-start; }
    .lp-proof-tcard-top { flex-direction: column; align-items: flex-start; }
    .lp-compare-row { grid-template-columns: 1fr; }
    .lp-compare-cell:first-child { border-right: none; border-bottom: 1px solid var(--slate-100); }
    .lp-compare-header { display: none; }
    .logo-principal {height: 28px; width: auto; display: block;}
    .header-profile-name{display:none}
  }
