/* ══════════════════════════════════════════════════
   Demo & Consultation Booking — Page Styles
   ══════════════════════════════════════════════════ */

/* ── Hero Layout ────────────────────────────────── */
.dcb-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--bg-primary);
    overflow: hidden;
}

.dcb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    animation: dcbGridDrift 20s linear infinite;
}

.dcb-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 900px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(120, 75, 250, 0.08) 0%, rgba(0, 113, 227, 0.04) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: dcbGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes dcbGridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes dcbGlowPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.06); }
}

.dcb-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dcb-hero-text {
    animation: dcbFadeSlideUp 0.8s ease-out both;
}

.dcb-hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(120, 75, 250, 0.08);
    color: #784bfa;
    margin-bottom: 24px;
}

.dcb-hero-overline svg {
    width: 14px;
    height: 14px;
}

.dcb-hero-text .headline-hero {
    margin-bottom: 20px;
}

.dcb-hero-text .subhead {
    margin-bottom: 36px;
    max-width: 480px;
}

.dcb-hero-trust {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.dcb-hero-trust-dots {
    display: flex;
    gap: 4px;
}

.dcb-hero-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #30d158;
}

@keyframes dcbFadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Hero Right: Phone + Scheduling Card ─────── */
.dcb-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: dcbFadeSlideUp 0.8s 0.3s ease-out both;
    min-height: 520px;
}

/* ── Phone Mockup ───────────────────────────────── */
.dcb-phone {
    position: relative;
    width: 260px;
    background: #111;
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.18),
        0 16px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    animation: dcbPhoneFloat 6s ease-in-out infinite;
    z-index: 2;
}

.dcb-phone::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 50px;
    background: radial-gradient(ellipse, rgba(120, 75, 250, 0.12), transparent 70%);
    filter: blur(16px);
    z-index: -1;
}

@keyframes dcbPhoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.dcb-screen {
    background: var(--bg-section);
    border-radius: 32px;
    overflow: hidden;
}

.dcb-screen-header {
    padding: 12px 16px 10px;
    text-align: center;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dcb-screen-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #784bfa, #0071e3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

.dcb-screen-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.dcb-chat {
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 200px;
}

.dcb-msg {
    max-width: 85%;
    padding: 9px 13px;
    border-radius: 18px;
    font-size: 12.5px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dcb-msg.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dcb-msg-ai {
    align-self: flex-start;
    background: #e9e9eb;
    color: #000;
    border-bottom-left-radius: 4px;
}

.dcb-msg-user {
    align-self: flex-end;
    background: #784bfa;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.dcb-typing {
    align-self: flex-start;
    display: flex;
    gap: 5px;
    padding: 12px 16px;
    background: #e9e9eb;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    opacity: 0;
    transition: opacity 0.25s;
}

.dcb-typing.visible { opacity: 1; }

.dcb-typing-dot {
    width: 7px;
    height: 7px;
    background: #86868b;
    border-radius: 50%;
    animation: dcbTypingBounce 1.4s infinite;
}

.dcb-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.dcb-typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes dcbTypingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

.dcb-screen-input {
    padding: 10px 12px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dcb-screen-input-field {
    flex: 1;
    height: 30px;
    border-radius: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.dcb-screen-input-send {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #784bfa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dcb-screen-input-send svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

/* ── Scheduling Card (Creative Hero Element) ─── */
.dcb-sched-card {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 220px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
    padding: 16px;
    z-index: 3;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: dcbCardFloat 5s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.dcb-sched-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation-play-state: running;
}

@keyframes dcbCardFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

.dcb-sched-card-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.dcb-sched-mini-cal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    margin-bottom: 14px;
}

.dcb-sched-mini-day {
    text-align: center;
    font-size: 9px;
    font-weight: 600;
    color: var(--text-tertiary);
    padding-bottom: 4px;
}

.dcb-sched-mini-slot {
    height: 22px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.03);
    transition: background 0.4s, transform 0.3s;
}

.dcb-sched-mini-slot.booked {
    background: rgba(120, 75, 250, 0.15);
}

.dcb-sched-mini-slot.active {
    background: #784bfa;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(120, 75, 250, 0.3);
}

.dcb-sched-mini-slot.open {
    background: rgba(48, 209, 88, 0.12);
}

.dcb-sched-tz-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(120, 75, 250, 0.06);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #784bfa;
}

.dcb-sched-tz-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(120, 75, 250, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dcb-sched-tz-icon svg {
    width: 10px;
    height: 10px;
    stroke: #784bfa;
    fill: none;
    stroke-width: 2;
}

/* ── Floating Badges ────────────────────────────── */
.dcb-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s;
    z-index: 3;
    white-space: nowrap;
}

.dcb-badge.visible {
    opacity: 1;
    transform: translateY(0);
}

.dcb-badge-1 {
    bottom: 15%;
    left: -40px;
    animation: dcbBadgeFloat1 4s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.dcb-badge-2 {
    bottom: 5%;
    right: -20px;
    animation: dcbBadgeFloat2 4.5s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.dcb-badge.visible { animation-play-state: running; }

.dcb-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dcb-badge-icon svg {
    width: 14px;
    height: 14px;
}

@keyframes dcbBadgeFloat1 { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }
@keyframes dcbBadgeFloat2 { 0% { transform: translateY(0); } 100% { transform: translateY(-6px); } }

/* ── Notification Toast ─────────────────────────── */
.dcb-notif {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: #fff;
    padding: 10px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 4;
}

.dcb-notif.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dcb-notif-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #30d158;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dcb-notif-icon svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
}

/* ── Device Morph Dashboard Section ───────────── */
.dcb-device-morph {
    position: relative;
    height: 300vh;
    background: var(--bg-primary);
}

.dcb-device-morph-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dcb-device-frame {
    position: relative;
    width: 80%;
    max-width: 1000px;
    height: 56vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.dcb-device-frame .app-demo-titlebar { flex-shrink: 0; }
.dcb-device-frame .app-demo-body { flex: 1; height: auto; }

.dcb-device-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 110;
}

.dcb-device-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 111;
    opacity: 0;
    transform: translateY(24px);
}

.dcb-device-content .headline-section {
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.dcb-device-content .subhead {
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* ── Section Spacing ───────────────────────────── */
.dcb-process,
.dcb-benefits,
.dcb-related,
.dcb-heatmap,
.dcb-feed { padding: 100px 0; }

/* ── Process Steps ──────────────────────────────── */
.dcb-process { text-align: center; }
.dcb-process .headline-section { margin-bottom: 12px; }
.dcb-process .subhead { margin: 0 auto 56px; max-width: 500px; }

.dcb-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.dcb-step {
    text-align: center;
    padding: 0 16px;
}

.dcb-step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(120, 75, 250, 0.08);
    color: #784bfa;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.dcb-step:hover .dcb-step-num {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(120, 75, 250, 0.15);
}

.dcb-step .headline-card { margin-bottom: 10px; font-size: 20px; }
.dcb-step .body-text { font-size: 15px; }

/* ══════════════════════════════════════════════════
   UNIQUE ELEMENT 1 — Booking Heatmap
   ══════════════════════════════════════════════════ */
.dcb-heatmap {
    background: var(--bg-section);
}

.dcb-heatmap .headline-section { text-align: center; margin-bottom: 12px; }
.dcb-heatmap .subhead { text-align: center; margin: 0 auto 56px; max-width: 540px; }

.dcb-heatmap-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.dcb-heatmap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
}

.dcb-heatmap-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.dcb-heatmap-legend {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-tertiary);
}

.dcb-heatmap-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dcb-heatmap-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.dcb-heatmap-legend-dot.empty { background: rgba(0, 0, 0, 0.04); }
.dcb-heatmap-legend-dot.low { background: rgba(120, 75, 250, 0.15); }
.dcb-heatmap-legend-dot.med { background: rgba(120, 75, 250, 0.35); }
.dcb-heatmap-legend-dot.high { background: rgba(120, 75, 250, 0.65); }

.dcb-heatmap-grid {
    display: grid;
    grid-template-columns: 72px repeat(7, 1fr);
    padding: 20px 28px 12px;
    gap: 4px;
}

.dcb-heatmap-day-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    padding-bottom: 8px;
}

.dcb-heatmap-day-label:first-child {
    text-align: right;
    padding-right: 12px;
}

.dcb-heatmap-time-label {
    text-align: right;
    padding-right: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 32px;
}

.dcb-heatmap-cell {
    height: 32px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.03);
    transition: background 0.5s ease, transform 0.3s ease;
    cursor: default;
    position: relative;
}

.dcb-heatmap-cell:hover {
    transform: scale(1.12);
    z-index: 2;
}

.dcb-heatmap-cell.h-1 { background: rgba(120, 75, 250, 0.12); }
.dcb-heatmap-cell.h-2 { background: rgba(120, 75, 250, 0.25); }
.dcb-heatmap-cell.h-3 { background: rgba(120, 75, 250, 0.4); }
.dcb-heatmap-cell.h-4 { background: rgba(120, 75, 250, 0.55); }
.dcb-heatmap-cell.h-5 { background: rgba(120, 75, 250, 0.7); }

.dcb-heatmap-cell.today-highlight {
    box-shadow: inset 0 0 0 2px #784bfa;
}

.dcb-heatmap-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 28px;
    border-top: 1px solid var(--border);
}

.dcb-heatmap-stat {
    text-align: center;
}

.dcb-heatmap-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.dcb-heatmap-stat-num.purple { color: #784bfa; }
.dcb-heatmap-stat-num.green { color: #30d158; }
.dcb-heatmap-stat-num.blue { color: #0071e3; }

.dcb-heatmap-stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 4px;
}

/* ══════════════════════════════════════════════════
   UNIQUE ELEMENT 2 — Live Timezone Confirmation Feed
   ══════════════════════════════════════════════════ */
.dcb-feed { text-align: center; }
.dcb-feed .headline-section { margin-bottom: 12px; }
.dcb-feed .subhead { margin: 0 auto 56px; max-width: 540px; }

.dcb-feed-wrap {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
}

.dcb-feed-list {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.dcb-feed-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
}

.dcb-feed-list-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.dcb-feed-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #30d158;
}

.dcb-feed-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #30d158;
    animation: dcbLivePulse 2s ease-in-out infinite;
}

@keyframes dcbLivePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(48, 209, 88, 0); }
}

.dcb-feed-items {
    padding: 8px;
}

.dcb-feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s;
}

.dcb-feed-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.dcb-feed-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.dcb-feed-item-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.dcb-feed-item-avatar.purple { background: linear-gradient(135deg, #784bfa, #a78bfa); }
.dcb-feed-item-avatar.blue { background: linear-gradient(135deg, #0071e3, #5ac8fa); }
.dcb-feed-item-avatar.green { background: linear-gradient(135deg, #30d158, #34c759); }
.dcb-feed-item-avatar.orange { background: linear-gradient(135deg, #ff9f0a, #ffcc02); }

.dcb-feed-item-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.dcb-feed-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.dcb-feed-item-detail {
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.dcb-feed-item-tz {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 980px;
    flex-shrink: 0;
    white-space: nowrap;
}

.dcb-feed-item-tz.tz-est { background: rgba(0, 113, 227, 0.08); color: #0071e3; }
.dcb-feed-item-tz.tz-cst { background: rgba(120, 75, 250, 0.08); color: #784bfa; }
.dcb-feed-item-tz.tz-pst { background: rgba(48, 209, 88, 0.08); color: #1a8a3e; }
.dcb-feed-item-tz.tz-mst { background: rgba(255, 159, 10, 0.08); color: #cc7f08; }

.dcb-feed-item-status {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 980px;
    flex-shrink: 0;
    white-space: nowrap;
    background: rgba(48, 209, 88, 0.1);
    color: #1a8a3e;
}

/* World clock sidebar */
.dcb-feed-clocks {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.dcb-feed-clocks-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.dcb-clock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.dcb-clock-row:last-child { border-bottom: none; }

.dcb-clock-zone {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.dcb-clock-time {
    font-size: 16px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--text-primary);
}

.dcb-clock-time.purple { color: #784bfa; }
.dcb-clock-time.blue { color: #0071e3; }
.dcb-clock-time.green { color: #30d158; }
.dcb-clock-time.orange { color: #ff9f0a; }

.dcb-clock-status {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 980px;
    margin-top: 4px;
    display: inline-block;
}

.dcb-clock-status.active { background: rgba(48, 209, 88, 0.1); color: #1a8a3e; }
.dcb-clock-status.closed { background: rgba(255, 69, 58, 0.08); color: #ff453a; }

/* ── Benefits Bento Grid ── */
.dcb-benefits { text-align: center; }
.dcb-benefits .headline-section { margin-bottom: 12px; }
.dcb-benefits .subhead { margin: 0 auto 56px; max-width: 520px; }

.dcb-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.dcb-bento-grid .bento-card:nth-child(1) { grid-column: 1 / 3; }
.dcb-bento-grid .bento-card:nth-child(2) { grid-column: 3; grid-row: 1 / 3; }
.dcb-bento-grid .bento-card:nth-child(6) { grid-column: 2 / 4; }

.dcb-bento-grid .bento-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dcb-bento-grid .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.dcb-bento-grid .bento-card-graphic svg {
    transition: transform 0.4s ease;
}

.dcb-bento-grid .bento-card:hover .bento-card-graphic svg {
    transform: scale(1.05);
}

.dcb-bento-grid .bento-card-graphic .pulse-ring {
    animation: dcbIconPulse 3s ease-in-out infinite;
}

@keyframes dcbIconPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.dcb-bento-grid .bento-app-icon:nth-child(1) { animation: dcbIconFloat 3s ease-in-out infinite; }
.dcb-bento-grid .bento-app-icon:nth-child(2) { animation: dcbIconFloat 3s 0.3s ease-in-out infinite; }
.dcb-bento-grid .bento-app-icon:nth-child(3) { animation: dcbIconFloat 3s 0.6s ease-in-out infinite; }
.dcb-bento-grid .bento-app-icon:nth-child(4) { animation: dcbIconFloat 3s 0.9s ease-in-out infinite; }

@keyframes dcbIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes dcbClockSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dcb-clock-hand {
    transform-origin: 80px 50px;
    animation: dcbClockSpin 8s linear infinite;
}

/* ── Stats Banner Override ── */
.dcb-stats-section { background: var(--bg-card); }

/* ── Related Use Cases ── */
.dcb-related { text-align: center; }
.dcb-related .headline-section { margin-bottom: 12px; }
.dcb-related .subhead { margin: 0 auto 48px; max-width: 480px; }

.dcb-related .feature-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.dcb-related .feature-card .ind-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
}

.dcb-related .feature-card:hover .ind-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.dcb-related .ind-icon-graphic {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dcb-related .ind-icon-graphic-blue   { background: rgba(0, 113, 227, 0.04); }
.dcb-related .ind-icon-graphic-green  { background: rgba(29, 185, 84, 0.04); }
.dcb-related .ind-icon-graphic-purple { background: rgba(120, 75, 250, 0.04); }

.dcb-related .feature-card:hover .ind-icon-graphic {
    transform: translateY(-4px);
}

.dcb-related .ind-icon-graphic svg {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dcb-related .feature-card:hover .ind-icon-graphic svg {
    transform: scale(1.08);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
    .dcb-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .dcb-hero-text .subhead {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .dcb-hero-text .hero-actions { justify-content: center; }
    .dcb-hero-trust { justify-content: center; }
    .dcb-badge { display: none; }
    .dcb-sched-card { right: -10px; top: 10px; width: 200px; }
    .dcb-phone { width: 240px; }

    .dcb-device-frame { width: 90%; }

    .dcb-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
    .dcb-bento-grid .bento-card:nth-child(1) { grid-column: 1 / 3; }
    .dcb-bento-grid .bento-card:nth-child(2) { grid-column: 1; grid-row: auto; }
    .dcb-bento-grid .bento-card:nth-child(6) { grid-column: 1 / 3; }

    .dcb-feed-wrap { grid-template-columns: 1fr; }
    .dcb-feed-clocks { display: none; }

    .dcb-heatmap-footer { gap: 24px; }
    .dcb-heatmap-legend { display: none; }
}

@media (max-width: 768px) {
    .dcb-hero { padding: 140px 0 60px; }

    .dcb-process,
    .dcb-benefits,
    .dcb-related,
    .dcb-heatmap,
    .dcb-feed { padding: 80px 0; }

    .dcb-phone { width: 220px; border-radius: 34px; padding: 8px; }
    .dcb-screen { border-radius: 28px; }
    .dcb-chat { min-height: 160px; padding: 10px 8px; }
    .dcb-msg { font-size: 11.5px; }
    .dcb-sched-card { display: none; }

    .dcb-steps {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }

    .dcb-device-morph { height: 250vh; }
    .dcb-device-frame { width: 94%; height: 40vh; }
    .dcb-device-frame .app-demo-sidebar { display: none; }
    .dcb-device-frame .app-demo-body { grid-template-columns: 1fr; }
    .dcb-device-content { padding: 24px; }
    .dcb-device-content .headline-section { font-size: 28px; }
    .dcb-device-content .subhead { font-size: 16px; }

    .dcb-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(180px, auto);
    }
    .dcb-bento-grid .bento-card:nth-child(1),
    .dcb-bento-grid .bento-card:nth-child(2),
    .dcb-bento-grid .bento-card:nth-child(6) { grid-column: 1; grid-row: auto; }

    .dcb-heatmap-grid { grid-template-columns: 56px repeat(7, 1fr); gap: 3px; padding: 12px 16px 8px; }
    .dcb-heatmap-cell { height: 24px; border-radius: 4px; }
    .dcb-heatmap-time-label { font-size: 10px; padding-right: 8px; height: 24px; }
    .dcb-heatmap-day-label { font-size: 10px; }
    .dcb-heatmap-footer { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
    .dcb-heatmap-stat-num { font-size: 22px; }
}

@media (max-width: 480px) {
    .dcb-heatmap-grid { grid-template-columns: 44px repeat(7, 1fr); gap: 2px; padding: 8px 10px; }
    .dcb-heatmap-cell { height: 20px; border-radius: 3px; }
    .dcb-heatmap-time-label { font-size: 9px; }
}
