/* HCEP Ana Sayfa — design-taste-frontend
   Dials: VARIANCE 4 / MOTION 4 / DENSITY 4
   Trust-first healthtech, red-white-gray brand lock */

.home-page {
    --dt-font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --dt-site-width: var(--site-width, 1140px);
    --dt-site-gutter: var(--site-gutter, 24px);
    --dt-accent: #c41e3a;
    --dt-accent-dark: #a01830;
    --dt-ink: #171717;
    --dt-muted: #525252;
    --dt-subtle: #737373;
    --dt-border: #e5e5e5;
    --dt-surface: #fafafa;
    --dt-white: #ffffff;
    --dt-radius: 12px;
    --dt-ease: cubic-bezier(0.23, 1, 0.32, 1);
    font-family: var(--dt-font);
    -webkit-font-smoothing: antialiased;
}

.home-page h1,
.home-page h2,
.home-page .dt-lead {
    text-wrap: balance;
}

.home-page p {
    text-wrap: pretty;
}

.home-page .dt-stat-val {
    font-variant-numeric: tabular-nums;
}

/* ── Reveal (MOTION 4) ── */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--dt-ease), transform 0.45s var(--dt-ease);
    transition-delay: calc(var(--i, 0) * 60ms);
}

.reveal.visible,
.reveal-delay-1.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: opacity 0.2s ease;
    }
}

/* ── Hero: minimal professional ── */
.dt-hero {
    padding: 64px 0 72px;
    background: var(--dt-white);
    border-bottom: 1px solid var(--dt-border);
}

.dt-hero-grid {
    gap: 64px;
}

.dt-hero-note {
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--dt-subtle);
    letter-spacing: 0.01em;
}

.dt-hero h1 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.dt-lead {
    font-size: 1rem;
    max-width: 40ch;
    margin-bottom: 32px;
}

/* Minimal panel preview */
.hcep-preview {
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(23, 23, 23, 0.06);
}

.hcep-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--dt-border);
}

.hcep-preview-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dt-ink);
}

.hcep-preview-status {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--dt-accent);
    padding: 4px 8px;
    background: rgba(196, 30, 58, 0.06);
    border-radius: 6px;
}

.hcep-preview-row {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--dt-border);
}

.hcep-preview-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hcep-preview-row.is-active {
    background: rgba(196, 30, 58, 0.03);
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 10px;
    border-bottom-color: transparent;
}

.hcep-preview-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dt-subtle);
}

.hcep-preview-main strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dt-ink);
}

.hcep-preview-main span {
    display: block;
    font-size: 0.72rem;
    color: var(--dt-subtle);
    margin-top: 2px;
}

.hcep-preview-meta {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dt-accent);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* Trust: text only */
.dt-trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dt-trust-logos li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dt-muted);
}

.dt-trust-logos li:not(:last-child)::after {
    content: '·';
    margin-left: 20px;
    color: var(--dt-border);
    font-weight: 400;
}

/* Stats: flat */
.dt-stat-card {
    background: transparent;
    border: none;
    border-top: 2px solid var(--dt-border);
    border-radius: 0;
    padding: 24px 12px 0;
    min-height: auto;
}

.dt-stat-card:first-child {
    border-top-color: var(--dt-accent);
}

/* Live: duo, calmer */
.dt-live-grid--duo {
    grid-template-columns: repeat(2, 1fr);
}

.dt-live-widget {
    min-height: 460px;
    box-shadow: none;
}

.dt-live-widget-head {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dt-muted);
    margin-bottom: 16px;
}

.dt-live-widget-head .hcep-pulse {
    display: none;
}

/* Flow: cleaner cards */
.dt-flow-card {
    min-height: auto;
    padding: 28px 24px;
    background: var(--dt-white);
    box-shadow: none;
}

.dt-flow-card.is-active {
    box-shadow: none;
    border-color: rgba(196, 30, 58, 0.15);
}

.dt-flow-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 14px;
}

/* Section spacing */
.section {
    padding: 64px 0;
}

.dt-cta {
    padding: 72px 0;
    background: var(--dt-white);
}

@media (max-width: 900px) {
    .dt-live-grid--duo {
        grid-template-columns: 1fr;
    }

    .dt-trust-logos li:not(:last-child)::after {
        display: none;
    }
}


.dt-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    width: 100%;
}

.dt-hero-copy {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dt-hero-integrations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.dt-hero-int {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(196, 30, 58, 0.06);
    color: var(--dt-accent);
    border: 1px solid rgba(196, 30, 58, 0.12);
}

.dt-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 360px;
    margin-bottom: 24px;
}

.dt-hero-metric {
    padding: 12px 10px;
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: 12px;
    text-align: center;
}

.dt-hero-metric.accent {
    border-color: rgba(196, 30, 58, 0.2);
    background: rgba(196, 30, 58, 0.04);
}

.dt-hero-metric strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dt-ink);
    font-variant-numeric: tabular-nums;
}

.dt-hero-metric.accent strong { color: var(--dt-accent); }

.dt-hero-metric span {
    display: block;
    margin-top: 2px;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dt-subtle);
}

.dt-hero-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    max-width: 360px;
    margin-top: 24px;
}

.dt-hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dt-muted);
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: 99px;
}

.dt-hero-pill .hcep-pulse { width: 6px; height: 6px; }

.dt-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dt-accent);
    margin-bottom: 16px;
}

.dt-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--dt-ink);
    margin-bottom: 16px;
}

.dt-accent { color: var(--dt-accent); }

.dt-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dt-muted);
    max-width: 42ch;
    margin-bottom: 28px;
}

.dt-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: var(--dt-radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s var(--dt-ease), background 0.2s ease, border-color 0.2s ease;
}

.dt-btn-lg { padding: 14px 28px; font-size: 1rem; }

.dt-btn-primary {
    background: var(--dt-accent-dark);
    color: #fff;
}

.dt-btn-ghost {
    background: var(--dt-white);
    color: var(--dt-ink);
    border-color: var(--dt-border);
}

.dt-btn:focus-visible {
    outline: 2px solid var(--dt-accent);
    outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
    .dt-btn-primary:hover {
        background: var(--dt-accent);
        text-decoration: none;
    }
    .dt-btn-ghost:hover {
        border-color: var(--dt-accent);
        color: var(--dt-accent);
        text-decoration: none;
    }
}

.dt-btn:active { transform: scale(0.98); }

.dt-hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(23, 23, 23, 0.12);
    outline: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── Coded UI mockups (hero, lab, phone) ── */
.hcep-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dt-accent);
    flex-shrink: 0;
    animation: hcepPulse 2s ease-in-out infinite;
}

@keyframes hcepPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hcep-mock--hero {
    display: grid;
    grid-template-columns: 58px 1fr;
    min-height: 480px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--dt-border);
    box-shadow: 0 24px 64px rgba(23, 23, 23, 0.1);
    overflow: hidden;
    position: relative;
}

.hcep-mock-shell {
    position: relative;
}

.hcep-mock-live-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--dt-accent);
    background: #fff;
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 99px;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.12);
}

.dt-hero-visual {
    overflow: visible;
}

.hcep-mock-sidebar {
    background: linear-gradient(180deg, #1a1a1a 0%, #262626 100%);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hcep-mock-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.62rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
}

.hcep-mock-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--dt-accent), var(--dt-accent-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.hcep-mock-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hcep-mock-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.25);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.hcep-mock-profile-name {
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.hcep-mock-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hcep-mock-nav-item {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 auto;
    border: none;
    padding: 0;
    cursor: default;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease;
}

.hcep-mock-nav-item svg {
    width: 16px;
    height: 16px;
}

.hcep-mock-nav-item.is-active {
    background: rgba(196, 30, 58, 0.35);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(196, 30, 58, 0.5);
}

.hcep-mock-kvkk {
    margin-top: auto;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hcep-mock-kvkk-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

.hcep-mock-body {
    padding: 14px 16px 16px;
    background: var(--dt-surface);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

.hcep-mock-sidebar {
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.hcep-mock-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    gap: 12px;
}

.hcep-mock-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.hcep-mock-time {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--dt-subtle);
    font-variant-numeric: tabular-nums;
    padding: 3px 8px;
    background: #fff;
    border: 1px solid var(--dt-border);
    border-radius: 6px;
}

.hcep-mock-progress {
    height: 4px;
    background: var(--dt-border);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 10px;
}

.hcep-mock-progress i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--dt-accent-dark), var(--dt-accent));
    border-radius: 99px;
    transition: width 1s var(--dt-ease);
}

.hcep-mock-mini-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.hcep-mock-mini-card {
    padding: 10px;
    background: #fff;
    border: 1px solid var(--dt-border);
    border-radius: 10px;
}

.hcep-mock-mini-card strong {
    display: block;
    font-size: 0.72rem;
    color: var(--dt-ink);
    margin-bottom: 2px;
}

.hcep-mock-mini-card span:last-child {
    font-size: 0.62rem;
    color: var(--dt-subtle);
}

.hcep-mock-mini-tag {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.hcep-mock-mini-tag.appt {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.hcep-mock-mini-tag.lab {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.hcep-mock-notif-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hcep-mock-notif-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid var(--dt-border);
    border-radius: 10px;
    font-size: 0.68rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hcep-mock-notif-list li.is-live {
    border-color: rgba(196, 30, 58, 0.25);
    box-shadow: 0 0 0 1px rgba(196, 30, 58, 0.08);
}

.hcep-mock-notif-list strong {
    display: block;
    color: var(--dt-ink);
    font-size: 0.72rem;
}

.hcep-mock-notif-list span {
    color: var(--dt-subtle);
    font-size: 0.62rem;
}

.hcep-mock-notif-list .hcep-toast-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.hcep-mock-crumb { font-weight: 700; color: var(--dt-ink); }

.hcep-mock-ai {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--dt-accent);
    font-weight: 600;
    font-size: 0.68rem;
}

.hcep-mock-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.hcep-mock-kpi {
    background: #fff;
    border: 1px solid var(--dt-border);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
}

.hcep-mock-kpi.accent {
    border-color: rgba(196, 30, 58, 0.2);
    background: rgba(196, 30, 58, 0.04);
}

.hcep-mock-kpi-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dt-ink);
    font-variant-numeric: tabular-nums;
}

.hcep-mock-kpi.accent .hcep-mock-kpi-val { color: var(--dt-accent); }

.hcep-mock-kpi-lbl {
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--dt-subtle);
}

.hcep-mock-queue-card {
    background: #fff;
    border: 1px solid var(--dt-border);
    border-radius: 12px;
    padding: 14px;
    flex: 1;
}

.hcep-mock-queue-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.hcep-mock-queue-head strong {
    display: block;
    font-size: 0.82rem;
    color: var(--dt-ink);
}

.hcep-mock-queue-head span {
    font-size: 0.68rem;
    color: var(--dt-subtle);
}

.hcep-mock-ring {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.hcep-mock-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.hcep-ring-bg {
    fill: none;
    stroke: var(--dt-border);
    stroke-width: 4;
}

.hcep-ring-fill {
    fill: none;
    stroke: var(--dt-accent);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    transition: stroke-dashoffset 1s var(--dt-ease);
}

.hcep-mock--hero .hcep-ring-fill {
    stroke-dashoffset: 66;
}

.hcep-mock-ring-num {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: var(--dt-subtle);
}

.hcep-mock-ring-num strong {
    font-size: 0.95rem;
    color: var(--dt-accent);
    line-height: 1;
}

.hcep-mock-tickets {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.hcep-ticket {
    flex: 1;
    text-align: center;
    padding: 6px 4px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--dt-surface);
    border: 1px solid var(--dt-border);
    color: var(--dt-muted);
}

.hcep-ticket.called {
    background: rgba(196, 30, 58, 0.12);
    border-color: var(--dt-accent);
    color: var(--dt-accent);
    animation: hcepTicketCall 1.5s ease-in-out infinite;
}

.hcep-ticket.user {
    background: rgba(196, 30, 58, 0.08);
    border-color: var(--dt-accent);
    color: var(--dt-ink);
    box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.15);
}

@keyframes hcepTicketCall {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

.hcep-mock-ai-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(196, 30, 58, 0.06);
    border-radius: 8px;
    font-size: 0.68rem;
    color: var(--dt-muted);
}

.hcep-mock-ai-bar strong { color: var(--dt-accent); }

.hcep-mock-toasts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.hcep-mock-toasts--inline {
    position: static;
    width: 100%;
    margin-top: 10px;
    flex-direction: column;
}

.hcep-mock-toasts--inline .hcep-toast {
    transform: translateY(8px);
}

.hcep-mock-toasts--inline .hcep-toast.is-visible {
    transform: translateY(0);
}

.hcep-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--dt-border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s var(--dt-ease), transform 0.4s var(--dt-ease);
}

.hcep-toast.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.hcep-toast-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
}

.hcep-toast-icon.queue { background: rgba(196, 30, 58, 0.12); }
.hcep-toast-icon.lab { background: rgba(59, 130, 246, 0.12); }
.hcep-toast-icon.rx { background: rgba(34, 197, 94, 0.12); }

.hcep-toast strong {
    display: block;
    font-size: 0.72rem;
    color: var(--dt-ink);
}

.hcep-toast span {
    font-size: 0.62rem;
    color: var(--dt-subtle);
}

/* Live activity strip */
.dt-live {
    padding: 72px 0;
    background: var(--dt-surface);
    border-bottom: 1px solid var(--dt-border);
}

.dt-live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
    width: 100%;
}

.dt-live-widget {
    background: #fff;
    border: 1px solid var(--dt-border);
    border-radius: 16px;
    padding: 22px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.dt-live-widget-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dt-ink);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.dt-live-feed {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.82rem;
    color: var(--dt-muted);
    flex: 0 0 auto;
    --live-row-h: 42px;
    height: calc(var(--live-row-h) * 10);
    overflow: hidden;
}

.dt-live-feed li {
    padding: 0;
    height: var(--live-row-h);
    min-height: var(--live-row-h);
    border-bottom: 1px solid var(--dt-border);
    animation: hcepFeedIn 0.4s var(--dt-ease);
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dt-live-feed li:last-child { border-bottom: none; }

@keyframes hcepFeedIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.dt-live-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 6px;
    text-transform: uppercase;
}

.dt-live-tag.queue { background: rgba(196, 30, 58, 0.1); color: var(--dt-accent); }
.dt-live-tag.lab { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
.dt-live-tag.rx { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.dt-live-tag.appt { background: rgba(245, 158, 11, 0.12); color: #d97706; }

.dt-live-modules {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(var(--live-row-h, 42px) * 10);
}

.dt-live-mod {
    margin-bottom: 12px;
}

.dt-live-mod:last-child { margin-bottom: 0; }

.dt-live-mod span {
    display: block;
    font-size: 0.75rem;
    color: var(--dt-muted);
    margin-bottom: 4px;
}

.dt-live-bar {
    height: 6px;
    background: var(--dt-border);
    border-radius: 99px;
    overflow: hidden;
}

.dt-live-bar i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--dt-accent-dark), var(--dt-accent));
    border-radius: 99px;
    transition: width 1.2s var(--dt-ease);
}

.dt-live-bar i.animated { width: var(--w); }

/* Lab mock (bento) */
.hcep-mock--lab {
    height: 100%;
    min-height: 320px;
    padding: 20px;
    background: linear-gradient(165deg, #fff 0%, var(--dt-surface) 100%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hcep-lab-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.hcep-lab-head strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dt-ink);
}

.hcep-lab-head span {
    font-size: 0.72rem;
    color: var(--dt-subtle);
}

.hcep-lab-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
    white-space: nowrap;
    transition: background 0.3s, color 0.3s;
}

.hcep-lab-badge.ready {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.hcep-lab-rows { flex: 1; }

.hcep-lab-row {
    display: grid;
    grid-template-columns: 72px 1fr 56px;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.75rem;
    color: var(--dt-muted);
}

.hcep-lab-track {
    height: 8px;
    background: var(--dt-border);
    border-radius: 99px;
    overflow: hidden;
}

.hcep-lab-fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--dt-accent);
    border-radius: 99px;
    transition: width 1s var(--dt-ease);
}

.hcep-lab-fill.warn { background: #f59e0b; }

.hcep-lab-fill.animated { width: calc(var(--target) * 1%); }

.hcep-lab-val {
    font-weight: 700;
    color: var(--dt-ink);
    font-size: 0.72rem;
    text-align: right;
}

.hcep-lab-ai {
    padding: 14px;
    background: #fff;
    border: 1px solid var(--dt-border);
    border-radius: 12px;
}

.hcep-lab-ai-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dt-accent);
    margin-bottom: 8px;
}

.hcep-lab-ai-text {
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--dt-muted);
    min-height: 2.8em;
}

.hcep-lab-ai-text::after {
    content: '|';
    animation: hcepBlink 1s step-end infinite;
    color: var(--dt-accent);
    margin-left: 1px;
}

.hcep-lab-ai-text.done::after { display: none; }

@keyframes hcepBlink {
    50% { opacity: 0; }
}

/* Phone mock */
.hcep-phone {
    width: 290px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 8px 10px;
    background: linear-gradient(180deg, #1f1f22 0%, #101012 100%);
    border-radius: 42px;
    box-shadow:
        0 32px 80px rgba(23, 23, 23, 0.25),
        0 8px 24px rgba(23, 23, 23, 0.12),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.06);
    position: relative;
}

.hcep-phone::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 40%);
    pointer-events: none;
}

.hcep-phone-notch {
    width: 90px;
    height: 22px;
    background: #050505;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hcep-phone-screen {
    position: relative;
    height: 500px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-radius: 32px;
    overflow: hidden;
    z-index: 1;
}

.hcep-phone-slide {
    position: absolute;
    inset: 0;
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.45s var(--dt-ease), transform 0.45s var(--dt-ease);
    pointer-events: none;
}

.hcep-phone-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hcep-phone-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 24px 0;
    height: 20px;
}

.hcep-phone-time {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dt-ink);
    letter-spacing: -0.01em;
}

.hcep-phone-signal svg {
    width: 16px;
    height: 8px;
    color: var(--dt-ink);
}

.hcep-phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2px;
}

.hcep-phone-hello {
    display: block;
    font-size: 0.72rem;
    color: var(--dt-subtle);
    font-weight: 500;
    margin-bottom: 1px;
}

.hcep-phone-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dt-ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hcep-phone-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dt-accent), #a01830);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.28);
}

.hcep-phone-queue-card {
    background: linear-gradient(135deg, #fff 0%, #fefaf9 100%);
    border: 1px solid rgba(196, 30, 58, 0.15);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.06);
}

.hcep-phone-queue-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.hcep-phone-tag {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--dt-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(196, 30, 58, 0.08);
    padding: 4px 8px;
    border-radius: 6px;
}

.hcep-phone-live-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    position: relative;
}

.hcep-phone-live-dot span {
    width: 6px;
    height: 6px;
    background: #16a34a;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
    animation: hcepPhoneDot 1.8s ease-in-out infinite;
}

@keyframes hcepPhoneDot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.08); }
}

.hcep-phone-queue-title {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--dt-ink);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.hcep-phone-queue-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.hcep-phone-eta {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dt-accent);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hcep-phone-sub {
    font-size: 0.7rem;
    color: var(--dt-muted);
    font-weight: 500;
    line-height: 1.3;
}

.hcep-phone-progress {
    height: 5px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.hcep-phone-progress span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 72%;
    background: linear-gradient(90deg, var(--dt-accent), #e2455e);
    border-radius: 99px;
    animation: hcepPhoneProg 3s ease-in-out infinite alternate;
}

@keyframes hcepPhoneProg {
    from { width: 68%; }
    to { width: 84%; }
}

.hcep-phone-section-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--dt-subtle);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 2px;
    margin-top: 2px;
}

.hcep-phone-homebar {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 99px;
    z-index: 3;
}

.hcep-phone-queue-ring {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
}

.hcep-phone-queue-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.hcep-phone-queue-ring .hcep-ring-fill.phone-ring {
    stroke-dasharray: 214;
    stroke-dashoffset: 54;
}

.hcep-phone-queue-ring > span {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--dt-subtle);
}

.hcep-phone-queue-ring strong {
    font-size: 1.5rem;
    color: var(--dt-accent);
    line-height: 1;
}

.hcep-phone-tickets {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.hcep-phone-tickets span {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    background: #fff;
    border: 1px solid var(--dt-border);
}

.hcep-phone-tickets .called {
    background: rgba(196, 30, 58, 0.12);
    border-color: var(--dt-accent);
    color: var(--dt-accent);
}

.hcep-phone-tickets .user {
    border-color: var(--dt-accent);
    box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.15);
}

.hcep-phone-ai-tip {
    text-align: center;
    font-size: 0.75rem;
    padding: 10px;
    background: rgba(196, 30, 58, 0.06);
    border-radius: 8px;
    color: var(--dt-muted);
}

.hcep-phone-notifs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hcep-phone-notifs li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--dt-border);
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.hcep-phone-notifs li:hover {
    transform: translateX(2px);
}

.hcep-phone-notifs .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.hcep-phone-notifs .dot.queue { background: var(--dt-accent); box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1); }
.hcep-phone-notifs .dot.lab { background: #2563eb; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
.hcep-phone-notifs .dot.rx { background: #16a34a; box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1); }

.hcep-phone-notifs > li > div { flex: 1; min-width: 0; }

.hcep-phone-notifs strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dt-ink);
    line-height: 1.2;
    margin-bottom: 2px;
}

.hcep-phone-notifs span {
    display: block;
    font-size: 0.68rem;
    color: var(--dt-subtle);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hcep-phone-map {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, #e8f4ea 0%, #dbeafe 100%);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}

.hcep-map-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.hcep-map-pin.you {
    bottom: 28%;
    left: 22%;
    background: var(--dt-accent);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.2);
    animation: hcepPinPulse 2s ease-in-out infinite;
}

.hcep-map-pin.rx {
    top: 22%;
    right: 24%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

@keyframes hcepPinPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(196, 30, 58, 0.08); }
}

.hcep-map-route {
    position: absolute;
    bottom: 32%;
    left: 26%;
    width: 48%;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--dt-accent) 0 6px, transparent 6px 12px);
    transform: rotate(-28deg);
    transform-origin: left center;
    animation: hcepRouteDraw 2s ease-in-out infinite;
}

.hcep-map-route.mini {
    position: relative;
    bottom: auto;
    left: auto;
    width: 40px;
    height: 2px;
    display: inline-block;
    vertical-align: middle;
    transform: rotate(0);
}

@keyframes hcepRouteDraw {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hcep-phone-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.hcep-phone-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #444;
    transition: background 0.3s, transform 0.3s;
}

.hcep-phone-dots span.is-active {
    background: var(--dt-accent);
    transform: scale(1.2);
}

/* Flow inline demos */
.dt-flow-demo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 14px;
    background: var(--dt-surface);
    border: 1px solid var(--dt-border);
    border-radius: 10px;
    font-size: 0.78rem;
}

.dt-flow-demo--queue .hcep-ticket { flex: none; padding: 6px 12px; }

.dt-flow-demo-eta {
    color: var(--dt-accent);
    font-weight: 700;
    animation: hcepEtaPulse 1.5s ease-in-out infinite;
}

@keyframes hcepEtaPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hcep-lab-mini-bar {
    display: block;
    width: 80px;
    height: 8px;
    background: var(--dt-border);
    border-radius: 99px;
    overflow: hidden;
}

.hcep-lab-mini-bar i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--dt-accent);
    border-radius: 99px;
}

.dt-flow-item.is-active .hcep-lab-mini-bar i,
.dt-flow-card.is-active .hcep-lab-mini-bar i {
    animation: hcepMiniBar 1.5s var(--dt-ease) forwards;
}

.dt-flow-item.is-active .dt-flow-demo-ai,
.dt-flow-card.is-active .dt-flow-demo-ai {
    animation: hcepFadeIn 0.5s 1.2s ease forwards;
}

.dt-flow-item.is-active .dt-flow-demo--rx span:last-child,
.dt-flow-card.is-active .dt-flow-demo--rx span:last-child {
    color: var(--dt-accent);
    font-weight: 700;
}

/* ── Trust strip ── */
.dt-trust {
    padding: 32px 0;
    background: var(--dt-white);
    border-bottom: 1px solid var(--dt-border);
}

.dt-trust-label {
    text-align: center;
    font-size: 0.78rem;
    color: var(--dt-subtle);
    margin-bottom: 20px;
}

.dt-trust-logos--equal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dt-trust-logos--equal li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dt-muted);
    background: var(--dt-surface);
    border: 1px solid var(--dt-border);
    border-radius: 12px;
    text-align: center;
}

.dt-trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(196, 30, 58, 0.08);
    color: var(--dt-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
}

/* ── Stats band ── */
.dt-stats {
    padding: 48px 0;
    background: var(--dt-surface);
    border-bottom: 1px solid var(--dt-border);
}

.dt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.dt-stat-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: 16px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── Capabilities (6 equal tiles) ── */
.dt-capabilities {
    background: var(--dt-white);
    border-bottom: 1px solid var(--dt-border);
}

.dt-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.dt-cap-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--dt-surface);
    border: 1px solid var(--dt-border);
    border-radius: 16px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, transform 0.25s var(--dt-ease);
}

@media (hover: hover) and (pointer: fine) {
    .dt-cap-card:hover {
        border-color: rgba(196, 30, 58, 0.25);
        transform: translateY(-2px);
    }
}

.dt-cap-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(196, 30, 58, 0.08);
    color: var(--dt-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.dt-cap-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dt-ink);
    margin-bottom: 6px;
}

.dt-cap-card p {
    font-size: 0.82rem;
    color: var(--dt-subtle);
    line-height: 1.5;
}

/* ── Section head centered ── */
.dt-section-head--center {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    text-align: center;
}

.dt-stat-val {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dt-accent);
    line-height: 1;
}

.dt-stat-lbl {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dt-subtle);
}

/* ── Section head (no eyebrows) ── */
.section { padding: 72px 0; }

.dt-section-head {
    max-width: 640px;
    margin-bottom: 40px;
}

.dt-section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dt-ink);
    margin-bottom: 12px;
}

.dt-section-head p {
    color: var(--dt-muted);
    font-size: 1rem;
    line-height: 1.65;
}

/* ── Bento symmetric 3-column ── */
.dt-bento { background: var(--dt-white); }

.dt-bento-grid--symmetric {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
}

.dt-bento-grid--symmetric .dt-bento-feature:nth-child(1) { grid-column: 1; grid-row: 1; }
.dt-bento-grid--symmetric .dt-bento-visual { grid-column: 2; grid-row: 1 / 3; min-height: 100%; }
.dt-bento-grid--symmetric .dt-bento-feature:nth-child(3) { grid-column: 3; grid-row: 1; }
.dt-bento-grid--symmetric .dt-bento-feature:nth-child(4) { grid-column: 1; grid-row: 2; }
.dt-bento-grid--symmetric .dt-bento-feature:nth-child(5) { grid-column: 3; grid-row: 2; }
.dt-bento-grid--symmetric .dt-bento-accent { grid-column: 1 / 4; grid-row: 3; }

.dt-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.dt-bento-visual {
    position: relative;
    min-height: 320px;
    background: var(--dt-surface);
    border: 1px solid var(--dt-border);
}

.dt-bento-feature {
    padding: 28px 22px;
    background: var(--dt-surface);
    border: 1px solid var(--dt-border);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.dt-bento-feature .dt-bento-icon { margin-bottom: 14px; }

.dt-bento-accent {
    padding: 0;
    background: var(--dt-accent-dark);
    color: #fff;
    min-height: 120px;
}

.dt-bento-accent-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 28px 32px;
    height: 100%;
    text-align: center;
}

.dt-bento-accent-inner > div { flex: 0 1 auto; text-align: center; max-width: 520px; }

.dt-bento-accent-inner .dt-btn {
    flex-shrink: 0;
    background: #fff;
    color: var(--dt-accent-dark);
}

.dt-bento-accent-inner .dt-btn:hover {
    background: var(--dt-surface);
}

.dt-bento-cell {
    border-radius: 16px;
    overflow: hidden;
}

.dt-bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(196, 30, 58, 0.08);
    color: var(--dt-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.dt-bento-feature h3,
.dt-bento-accent h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dt-ink);
}

.dt-bento-accent h3 { color: #fff; }

.dt-bento-feature p,
.dt-bento-accent p {
    font-size: 0.9rem;
    color: var(--dt-muted);
    line-height: 1.6;
}

.dt-bento-accent p { color: rgba(255, 255, 255, 0.85); }

.dt-link-arrow {
    margin-top: 16px;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
}

.dt-link-arrow:hover { text-decoration: underline; }

/* ── Platform symmetric ── */
.dt-platform {
    background: var(--dt-surface);
    border-top: 1px solid var(--dt-border);
    border-bottom: 1px solid var(--dt-border);
}

.dt-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.dt-platform-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.dt-check-list--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    width: 100%;
    text-align: left;
    margin-bottom: 28px;
}

.dt-check-list--grid li {
    margin-bottom: 0;
}

.dt-platform-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--dt-muted);
    margin: 12px 0 24px;
    max-width: 480px;
}

.dt-platform-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dt-platform-feats li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.dt-platform-feats li:hover {
    background: var(--dt-white);
    border-color: var(--dt-border);
    transform: translateX(2px);
    box-shadow: var(--dt-shadow-sm, 0 1px 3px rgba(23, 23, 23, 0.05));
}

.dt-platform-feat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(196, 30, 58, 0.08);
    color: var(--dt-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-platform-feat-icon svg {
    width: 20px;
    height: 20px;
}

.dt-platform-feats li > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dt-platform-feats strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dt-ink);
    letter-spacing: -0.01em;
}

.dt-platform-feats span {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--dt-muted);
}

.dt-platform-stats {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    padding: 18px 4px;
    border-top: 1px solid var(--dt-border);
    border-bottom: 1px solid var(--dt-border);
}

.dt-platform-stat {
    flex: 1;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.dt-platform-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    width: 1px;
    background: var(--dt-border);
}

.dt-platform-stat strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--dt-accent);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.dt-platform-stat span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dt-subtle);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dt-platform-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 8px;
}

.dt-platform-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dt-accent);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dt-platform-link:hover {
    text-decoration: none;
    opacity: 0.75;
    transform: translateX(3px);
}

.dt-platform-devices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.hcep-mock--mini {
    width: 200px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--dt-border);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(23, 23, 23, 0.08);
    display: none;
}

.hcep-mock-mini-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--dt-ink);
    margin-bottom: 12px;
}

.hcep-mock-mini-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}

.hcep-mock-mini-kpis div {
    text-align: center;
    padding: 8px 4px;
    background: var(--dt-surface);
    border-radius: 8px;
    font-size: 0.58rem;
    color: var(--dt-subtle);
}

.hcep-mock-mini-kpis strong {
    display: block;
    font-size: 1rem;
    color: var(--dt-ink);
}

.hcep-mock-mini-kpis .accent strong { color: var(--dt-accent); }

.hcep-mock-mini-queue {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(196, 30, 58, 0.06);
    border-radius: 8px;
    font-size: 0.65rem;
    color: var(--dt-muted);
}

.hcep-mock-mini-queue .hcep-ticket {
    flex: none;
    padding: 4px 10px;
}

@media (min-width: 901px) {
    .hcep-mock--mini { display: block; }
}

/* ── AI flow: 3 equal cards ── */
.dt-flow { background: var(--dt-white); }

.dt-flow-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.dt-flow-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--dt-surface);
    border: 1px solid var(--dt-border);
    border-radius: 16px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dt-flow-card.is-active {
    border-color: rgba(196, 30, 58, 0.25);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.08);
}

.dt-flow-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.08);
    color: var(--dt-accent);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.dt-flow-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dt-ink);
}

.dt-flow-card p {
    font-size: 0.88rem;
    color: var(--dt-muted);
    line-height: 1.6;
    margin-bottom: auto;
    flex: 1;
}

.dt-flow-card .dt-flow-demo {
    width: 100%;
    margin-top: 16px;
    justify-content: center;
}

.dt-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dt-check-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: var(--dt-muted);
}

.dt-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dt-accent);
}

/* ── Compare ── */
.dt-compare { background: var(--dt-surface); }

.compare-table-wrap--home {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--dt-border);
    background: var(--dt-white);
    width: 100%;
}

.compare-table--home th.highlight,
.compare-table--home td.highlight {
    background: rgba(196, 30, 58, 0.05);
    border-left: 3px solid var(--dt-accent);
}

@keyframes hcepMiniBar {
    to { width: 72%; }
}

.dt-flow-demo-ai {
    color: #16a34a;
    font-weight: 700;
    opacity: 0;
}

@keyframes hcepFadeIn {
    to { opacity: 1; }
}

.dt-flow-demo--rx {
    gap: 8px;
}

.dt-flow-demo--rx .hcep-map-pin {
    position: relative;
    bottom: auto;
    left: auto;
    top: auto;
    right: auto;
    display: inline-block;
}

/* ── CTA band ── */
.dt-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dt-white) 0%, var(--dt-surface) 100%);
}

.dt-cta-inner {
    text-align: center;
    width: 100%;
}

.dt-cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 32px;
}

.dt-cta-stats div {
    padding: 20px 16px;
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: 14px;
    text-align: center;
}

.dt-cta-stats strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dt-accent);
    line-height: 1;
}

.dt-cta-stats span {
    display: block;
    margin-top: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dt-subtle);
}

.dt-cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--dt-ink);
}

.dt-cta-inner p {
    color: var(--dt-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.dt-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .dt-hero-grid,
    .dt-platform-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .dt-hero-visual { order: -1; }

    .dt-trust-logos--equal {
        grid-template-columns: repeat(2, 1fr);
    }

    .dt-trust-logos--equal li:last-child {
        grid-column: span 2;
    }

    .dt-cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dt-live-grid {
        grid-template-columns: 1fr;
    }

    .hcep-mock--hero {
        grid-template-columns: 1fr;
    }

    .hcep-mock-sidebar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px;
        border-radius: 20px 20px 0 0;
    }

    .hcep-mock-nav { flex-direction: row; }

    .hcep-mock-kvkk {
        margin-top: 0;
        flex-direction: row;
    }

    .hcep-mock-body { border-radius: 0 0 20px 20px; }

    .dt-bento-grid--symmetric,
    .dt-bento-grid {
        grid-template-columns: 1fr;
    }

    .dt-bento-grid--symmetric .dt-bento-feature,
    .dt-bento-grid--symmetric .dt-bento-visual,
    .dt-bento-grid--symmetric .dt-bento-accent {
        grid-column: 1;
        grid-row: auto;
    }

    .dt-bento-accent-inner {
        flex-direction: column;
        text-align: center;
    }

    .dt-bento-accent-inner > div { text-align: center; }

    .dt-flow-grid {
        grid-template-columns: 1fr;
    }

    .dt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dt-check-list--grid {
        grid-template-columns: 1fr;
    }

    .dt-platform-devices {
        flex-direction: column;
    }

    .hcep-mock--mini { display: block; width: 100%; max-width: 280px; }
}

/* ── Minimal pass: global calm overrides ── */
.dt-section-head h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.dt-section-head p {
    font-size: 0.95rem;
    color: var(--dt-subtle);
    max-width: 48ch;
    margin-left: auto;
    margin-right: auto;
}

.dt-trust {
    padding: 28px 0;
    background: var(--dt-surface);
    border-bottom: 1px solid var(--dt-border);
}

.dt-trust-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dt-subtle);
    margin-bottom: 12px;
}

.dt-stats {
    padding: 48px 0;
    background: var(--dt-white);
    border-bottom: 1px solid var(--dt-border);
}

.dt-live {
    background: var(--dt-surface);
}

.dt-live-widget {
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: 12px;
    padding: 24px;
}

.dt-bento-cell {
    border-radius: 12px;
    box-shadow: none;
}

.dt-bento-feature {
    background: var(--dt-white);
    min-height: 130px;
    padding: 24px 20px;
}

.dt-bento-visual {
    background: var(--dt-white);
    border-radius: 12px;
}

.dt-bento-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(196, 30, 58, 0.06);
}

.dt-bento-accent {
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    color: var(--dt-ink);
}

.dt-bento-accent h3 {
    color: var(--dt-ink);
}

.dt-bento-accent p {
    color: var(--dt-muted);
}

.dt-bento-accent-inner {
    padding: 28px 24px;
    gap: 24px;
}

.dt-bento-accent-inner .dt-btn {
    background: var(--dt-accent);
    color: #fff;
}

.dt-bento-accent-inner .dt-btn:hover {
    background: var(--dt-accent-dark);
}

.dt-platform {
    background: var(--dt-white);
    border-top: 1px solid var(--dt-border);
}

.hcep-phone {
    box-shadow: 0 12px 40px rgba(23, 23, 23, 0.08);
    border: 1px solid var(--dt-border);
}

.dt-flow {
    background: var(--dt-surface);
}

.dt-compare {
    background: var(--dt-white);
}

.compare-table-wrap--home {
    border: 1px solid var(--dt-border);
    border-radius: 12px;
    box-shadow: none;
}

.dt-cta-inner {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.dt-cta-inner h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    margin-bottom: 12px;
}

.dt-cta-inner p {
    color: var(--dt-subtle);
    margin-bottom: 28px;
}

.dt-cta-actions {
    justify-content: center;
}

@media (max-width: 480px) {
    .dt-hero { padding: 40px 0 48px; }
    .section { padding: 48px 0; }
    .dt-stats-grid { grid-template-columns: 1fr 1fr; }
    .dt-hero-grid { gap: 40px; }
}

/* ── Mission & vision (sunum anlatısı) ── */
.dt-mission {
    background: var(--dt-surface);
    border-bottom: 1px solid var(--dt-border);
}

.dt-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.dt-mission-col {
    padding: 28px 24px;
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: 12px;
}

.dt-mission-col h3 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.dt-mission-problem h3 { color: var(--dt-subtle); }
.dt-mission-solution h3 { color: var(--dt-accent); }

.dt-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dt-mission-list li {
    font-size: 0.9rem;
    color: var(--dt-muted);
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}

.dt-mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--dt-border);
}

.dt-mission-solution .dt-mission-list li::before {
    background: var(--dt-accent);
}

.dt-ecosystem {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: 16px;
    box-shadow: var(--dt-shadow-sm, 0 1px 3px rgba(23, 23, 23, 0.06));
}

.dt-eco-node {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--dt-ink);
    padding: 18px 12px;
    background: var(--dt-surface);
    border: 1px solid var(--dt-border);
    border-radius: 12px;
    min-height: 68px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dt-eco-node:hover {
    transform: translateY(-2px);
    box-shadow: var(--dt-shadow-md, 0 4px 12px rgba(23, 23, 23, 0.06));
}

.dt-eco-node--accent {
    color: var(--dt-accent);
    background: linear-gradient(180deg, rgba(196, 30, 58, 0.06) 0%, rgba(196, 30, 58, 0.12) 100%);
    border-color: rgba(196, 30, 58, 0.25);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.1);
}

.dt-eco-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dt-accent);
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.6;
}

@media (max-width: 720px) {
    .dt-ecosystem {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .dt-eco-arrow { transform: rotate(90deg); padding: 4px 0; }
}

.dt-personas {
    background: var(--dt-white);
    border-bottom: 1px solid var(--dt-border);
}

.dt-personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dt-persona {
    padding: 24px 22px;
    border: 1px solid var(--dt-border);
    border-radius: 12px;
    background: var(--dt-white);
}

.dt-persona-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dt-accent);
    margin-bottom: 12px;
}

.dt-persona h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dt-ink);
    margin-bottom: 10px;
    line-height: 1.4;
}

.dt-persona p {
    font-size: 0.85rem;
    color: var(--dt-muted);
    line-height: 1.6;
}

.dt-journey {
    background: var(--dt-white);
    border-bottom: 1px solid var(--dt-border);
}

.dt-journey-track {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.dt-journey-step {
    display: flex;
    gap: 14px;
    padding: 20px 18px;
    background: var(--dt-surface);
    border: 1px solid var(--dt-border);
    border-radius: 12px;
}

.dt-journey-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--dt-accent);
    background: rgba(196, 30, 58, 0.08);
    border-radius: 8px;
}

.dt-journey-step strong {
    display: block;
    font-size: 0.88rem;
    color: var(--dt-ink);
    margin-bottom: 4px;
}

.dt-journey-step span {
    font-size: 0.78rem;
    color: var(--dt-subtle);
    line-height: 1.5;
}

.dt-vision {
    background: var(--dt-surface);
    border-top: 1px solid var(--dt-border);
}

.dt-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.dt-vision-card {
    padding: 24px 22px;
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: 12px;
}

.dt-vision-card--accent {
    border-color: rgba(196, 30, 58, 0.2);
    background: rgba(196, 30, 58, 0.03);
}

.dt-vision-year {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--dt-subtle);
    margin-bottom: 10px;
}

.dt-vision-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dt-ink);
    margin-bottom: 8px;
}

.dt-vision-card p {
    font-size: 0.85rem;
    color: var(--dt-muted);
    line-height: 1.6;
}

.dt-vision-quote {
    text-align: center;
    font-size: clamp(0.72rem, 1.6vw, 1.05rem);
    font-weight: 600;
    color: var(--dt-ink);
    max-width: none;
    margin: 0 auto;
    line-height: 1.55;
    font-style: italic;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .dt-mission-grid,
    .dt-personas-grid,
    .dt-journey-track,
    .dt-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dt-btn { transition: none; }
    .hcep-pulse,
    .hcep-ticket.called,
    .dt-flow-demo-eta,
    .hcep-map-pin.you,
    .hcep-map-route { animation: none; }
    .hcep-phone-slide { transition: opacity 0.2s ease; }
    .hcep-toast { transition: opacity 0.2s ease; }
}
