/* ==========================================
   SmartCare - Enhanced Design (Cursor-inspired)
   ========================================== */

:root {
    --primary: #0891b2;
    --primary-dark: #0e7490;
    --primary-light: #22d3ee;
    --primary-bg: #ecfeff;
    --primary-glow: rgba(8, 145, 178, 0.15);
    --text-dark: #0f172a;
    --text-body: #475569;
    --text-light: #94a3b8;
    --text-muted: #cbd5e1;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-section: #f1f5f9;
    --bg-dark: #0b1120;
    --bg-dark-card: #131c31;
    --bg-dark-border: #1e293b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   Fullpage Scroll Snap
   ========================================== */

section {
    height: 100vh;
    scroll-snap-align: start;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

section::-webkit-scrollbar {
    display: none;
}

/* Footer as last snap section */
.footer {
    scroll-snap-align: start;
}

/* ==========================================
   Page Dot Navigation
   ========================================== */

.page-dots {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.page-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.page-dot:hover {
    background: var(--primary-light);
    border-color: white;
    transform: scale(1.3);
}

.page-dot.active {
    background: var(--primary);
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(8, 145, 178, 0.5);
}

/* Tooltip on hover */
.page-dot::before {
    content: attr(data-label);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-dark);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, right 0.2s ease;
}

.page-dot:hover::before {
    opacity: 1;
    right: 28px;
}

.page-dot {
    position: relative;
}

/* ==========================================
   Navigation (Enhanced with Dropdowns)
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-logo .logo-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links > a {
    text-decoration: none;
    color: var(--text-body);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-links > a:hover {
    color: var(--text-dark);
    background: var(--bg-light);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.nav-dropdown-btn:hover {
    color: var(--text-dark);
    background: var(--bg-light);
}

.nav-dropdown-btn svg {
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-btn svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-light);
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    color: var(--primary);
    flex-shrink: 0;
}

.dropdown-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.dropdown-desc {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-email-link {
    font-size: 0.825rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition);
}

.nav-email-link:hover {
    color: var(--primary);
}

.btn-nav {
    padding: 8px 20px;
    font-size: 0.85rem;
    background: var(--text-dark);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-nav:hover {
    background: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   Hero Section (Dark, Cursor-inspired)
   ========================================== */

.hero {
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 110px 0 48px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.glow-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: rgba(8, 145, 178, 0.15);
}

.glow-2 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
    background: rgba(34, 211, 238, 0.1);
}

.glow-3 {
    width: 300px;
    height: 300px;
    bottom: 100px;
    left: 30%;
    background: rgba(8, 145, 178, 0.08);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.hero-text {
    flex: 0 0 38%;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 145, 178, 0.1);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(8, 145, 178, 0.2);
    margin-bottom: 20px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 0;
}

.hero-description strong {
    color: var(--primary-light);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-full { width: 100%; }

/* ==========================================
   Hero Preview Window
   ========================================== */

.hero-preview {
    flex: 1;
    min-width: 0;
}

.preview-window {
    background: var(--bg-dark-card);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 100px rgba(8, 145, 178, 0.1);
}

.preview-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--bg-dark-border);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.preview-dots span:nth-child(1) { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #f59e0b; }
.preview-dots span:nth-child(3) { background: #22c55e; }

.preview-tabs {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 2px;
}

.preview-tab {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748b;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.preview-tab.active {
    background: rgba(8, 145, 178, 0.2);
    color: var(--primary-light);
}

.preview-tab:hover:not(.active) {
    color: #94a3b8;
}

.preview-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #22c55e;
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.preview-content {
    padding: 20px;
    height: 480px;
    overflow: hidden;
}

.preview-panel {
    display: none;
    animation: fadeSlideUp 0.3s ease;
    height: 100%;
}

.preview-panel.active {
    display: flex;
    flex-direction: column;
}

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

/* Panel entry animations */
.preview-panel.active .sc-choice,
.preview-panel.active .sc-choice-other {
    opacity: 0;
    animation: scChoiceFadeIn 0.4s ease forwards;
}
.preview-panel.active .sc-choice:nth-child(1) { animation-delay: 0.1s; }
.preview-panel.active .sc-choice:nth-child(2) { animation-delay: 0.2s; }
.preview-panel.active .sc-choice:nth-child(3) { animation-delay: 0.3s; }
.preview-panel.active .sc-choice:nth-child(4) { animation-delay: 0.4s; }
.preview-panel.active .sc-choice-other { animation-delay: 0.5s; }

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

.preview-panel.active .dr-transcript-card {
    opacity: 0;
    animation: drCardSlideIn 0.5s ease forwards;
}
.preview-panel.active .dr-transcript-card:nth-child(1) { animation-delay: 0.2s; }
.preview-panel.active .dr-transcript-card:nth-child(2) { animation-delay: 0.6s; }

@keyframes drCardSlideIn {
    from { opacity: 0; transform: translateX(-12px); }
    to { opacity: 1; transform: translateX(0); }
}

.preview-panel.active .dr-patient-card {
    opacity: 0;
    animation: drPatientFadeIn 0.35s ease forwards;
}
.preview-panel.active .dr-patient-card:nth-child(1) { animation-delay: 0.1s; }
.preview-panel.active .dr-patient-card:nth-child(2) { animation-delay: 0.18s; }
.preview-panel.active .dr-patient-card:nth-child(3) { animation-delay: 0.26s; }
.preview-panel.active .dr-patient-card:nth-child(4) { animation-delay: 0.34s; }
.preview-panel.active .dr-patient-card:nth-child(5) { animation-delay: 0.42s; }
.preview-panel.active .dr-patient-card:nth-child(6) { animation-delay: 0.50s; }

@keyframes drPatientFadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.preview-panel.active .dr-msg {
    opacity: 0;
    animation: drMsgFadeIn 0.4s ease forwards;
}
.preview-panel.active .dr-msg:nth-child(3) { animation-delay: 0.15s; }
.preview-panel.active .dr-msg:nth-child(4) { animation-delay: 0.4s; }
.preview-panel.active .dr-msg:nth-child(5) { animation-delay: 0.65s; }

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

.preview-panel.active .dr-keypoint {
    opacity: 0;
    animation: drKpFadeIn 0.35s ease forwards;
}
.preview-panel.active .dr-keypoint:nth-child(1) { animation-delay: 0.3s; }
.preview-panel.active .dr-keypoint:nth-child(2) { animation-delay: 0.5s; }
.preview-panel.active .dr-keypoint:nth-child(3) { animation-delay: 0.7s; }
.preview-panel.active .dr-keypoint:nth-child(4) { animation-delay: 0.9s; }

@keyframes drKpFadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ---- SmartChat Demo (Patient App Style) ---- */
.sc-app {
    background: #fdfcfc;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.sc-app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fdfcfc;
    border-bottom: 1px solid #ededed;
}

.sc-app-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0e0e0e;
    flex: 1;
}

.sc-lang-toggle {
    font-size: 0.65rem;
    color: #5d5d5d;
    padding: 3px 8px;
    background: #ededed;
    border-radius: 4px;
    font-weight: 500;
}

.sc-app-body {
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.sc-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0e0e0e;
    text-align: center;
    line-height: 1.4;
}

.sc-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 300px;
}

.sc-choice {
    background: #daeef8;
    border: 1px solid #3f91b1;
    color: #0e0e0e;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    flex: 1 1 auto;
    text-align: center;
    font-family: inherit;
}

.sc-choice.selected {
    background: #65b7d8;
    color: white;
    border-color: #3f91b1;
}

.sc-choice-other {
    width: 100%;
    background: white;
    border: 2px solid #65b7d8;
    color: #3f91b1;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
}

.sc-voice-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.sc-voice-circles {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(101, 183, 216, 0.2);
}

.sc-circle-1 { width: 100%; height: 100%; animation: sc-pulse 2s ease-in-out infinite; }
.sc-circle-2 { width: 80%; height: 80%; animation: sc-pulse 2s ease-in-out 0.3s infinite; }
.sc-circle-3 { width: 60%; height: 60%; animation: sc-pulse 2s ease-in-out 0.6s infinite; }

@keyframes sc-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.sc-voice-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #65b7d8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(101, 183, 216, 0.4);
    animation: sc-btn-pulse 2s ease-in-out infinite;
}

@keyframes sc-btn-pulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(101, 183, 216, 0.4); }
    50% { box-shadow: 0 2px 16px rgba(101, 183, 216, 0.7); }
}

.sc-voice-label {
    font-size: 0.6rem;
    color: #5d5d5d;
    font-weight: 500;
}

.sc-summary-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f0f9ff;
    border-top: 1px solid #daeef8;
}

.sc-code-label {
    font-size: 0.7rem;
    color: #5d5d5d;
}

.sc-code {
    font-size: 0.85rem;
    font-weight: 800;
    color: #3f91b1;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    background: white;
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid #65b7d8;
}

.sc-code-action {
    font-size: 0.65rem;
    color: white;
    background: #65b7d8;
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
    margin-left: auto;
}

/* ---- SmartConsult Demo (Doctor App Style) ---- */
.dr-app {
    background: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dr-layout {
    display: flex;
    flex: 1;
}

.dr-sidebar {
    width: 48px;
    background: #f9fafb;
    border-right: 1px solid #d1d5db;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 12px;
    flex-shrink: 0;
}

.dr-sidebar-logo {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.dr-sidebar-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #6b7280;
    cursor: pointer;
    transition: var(--transition);
}

.dr-sidebar-icon.active {
    background: #e0f2fe;
    color: #5196e0;
}

.dr-main {
    flex: 1;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.dr-info-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    flex-wrap: wrap;
}

.dr-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1f2937;
}

.dr-info-tag {
    font-size: 0.7rem;
    padding: 3px 10px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 4px;
    font-weight: 500;
}

.dr-info-tag.urgent {
    background: #fef3c7;
    color: #d97706;
}

.dr-voice-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
}

.dr-voice-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dr-recording-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-dot 1s ease-in-out infinite;
}

.dr-recording-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #ef4444;
}

.dr-lang-select {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: #6b7280;
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 4px;
    font-weight: 500;
}

.dr-transcriptions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow: hidden;
}

.dr-transcript-card {
    padding: 10px 12px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #e5e7eb;
}

.dr-transcript-card.active {
    background: #f1f7fd;
    border-left-color: #5196e0;
}

.dr-transcript-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.dr-transcript-num {
    font-size: 0.6rem;
    font-weight: 600;
    color: #6b7280;
}

.dr-transcript-time {
    font-size: 0.6rem;
    color: #9ca3af;
}

.dr-transcript-text {
    font-size: 0.85rem;
    color: #374151;
    line-height: 1.5;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 0.85em;
    background: #5196e0;
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ---- SmartDoc Demo (Doctor Summary Style) ---- */
.dr-doc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
    flex: 1;
}

.dr-doc-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dr-doc-card {
    background: white;
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.dr-doc-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f2937;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}

.dr-doc-card-header .dr-doc-actions {
    margin-left: auto;
    display: flex;
    gap: 4px;
}

.dr-doc-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    color: #9ca3af;
    cursor: pointer;
    transition: var(--transition);
}

.dr-doc-action-btn:hover {
    background: #f3f4f6;
    color: #5196e0;
}

.dr-doc-divider {
    font-size: 0.55rem;
    color: #9ca3af;
    text-align: center;
    padding: 3px 0;
    border-bottom: 1px solid #f3f4f6;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dr-doc-divider:last-of-type {
    border-bottom: none;
    border-top: 1px solid #f3f4f6;
}

.dr-msg {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 2px 0;
}

.dr-msg-user { align-items: flex-start; }
.dr-msg-ai { align-items: flex-end; }

.dr-msg-role {
    font-size: 0.5rem;
    color: #9ca3af;
    font-weight: 500;
}

.dr-msg-bubble {
    max-width: 88%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
}

.dr-msg-bubble-user {
    background: #dbeafe;
    color: #1e3a5f;
    border-bottom-left-radius: 2px;
}

.dr-msg-bubble-ai {
    background: #f3f4f6;
    color: #374151;
    border-bottom-right-radius: 2px;
}

.dr-keypoints {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dr-keypoint {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: #374151;
    line-height: 1.4;
    padding: 8px 10px;
    background: #fafafa;
    border-radius: 6px;
    border: 1px solid #f3f4f6;
}

.dr-keypoint-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5196e0;
    flex-shrink: 0;
    margin-top: 4px;
}

.dr-keypoint-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.6rem;
    color: #5196e0;
    font-weight: 600;
    padding: 5px;
    border: 1px dashed #5196e0;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.dr-keypoint-add:hover {
    background: #f1f7fd;
}

/* ---- SmartTriage Demo (Nurse Dashboard Style) ---- */
.dr-triage {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.dr-triage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
}

.dr-triage-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f2937;
}

.dr-triage-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dr-triage-sort {
    font-size: 0.6rem;
    color: #6b7280;
    padding: 3px 8px;
    background: #f3f4f6;
    border-radius: 4px;
    font-weight: 500;
}

.dr-triage-refresh {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    color: #6b7280;
    cursor: pointer;
}

.dr-triage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex: 1;
    overflow: hidden;
}

.dr-patient-card {
    background: white;
    border-radius: 8px;
    padding: 10px 12px;
    border-top: 3px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.dr-patient-card.urgency-critical { border-top-color: #fca5a5; }
.dr-patient-card.urgency-urgent { border-top-color: #fdba74; }
.dr-patient-card.urgency-normal { border-top-color: #93c5fd; }

.dr-patient-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dr-patient-code {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1f2937;
}

.dr-urgency-badge {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.dr-urgency-badge.critical {
    background: #fef2f2;
    color: #dc2626;
}

.dr-urgency-badge.urgent {
    background: #fff7ed;
    color: #ea580c;
}

.dr-urgency-badge.normal {
    background: #eff6ff;
    color: #2563eb;
}

.dr-patient-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 4px;
    border-top: 1px solid #f3f4f6;
}

.dr-patient-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: #374151;
}

.dr-detail-label {
    color: #9ca3af;
    font-weight: 500;
}

.dr-patient-complaint {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.7rem;
    color: #374151;
    margin-top: 2px;
}

.dr-patient-complaint span:last-child {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dr-unassigned {
    color: #ef4444;
    font-weight: 600;
}

.dr-assigned {
    color: #1f2937;
}

/* ==========================================
   Social Proof / Trusted By
   ========================================== */

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

.trusted-label {
    text-align: center;
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color var(--transition);
}

.logo-item:hover {
    color: var(--text-body);
}

/* ==========================================
   Stats Section
   ========================================== */

.stats {
    padding: 60px 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    display: inline;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ==========================================
   Section Shared Styles
   ========================================== */

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid rgba(8, 145, 178, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================
   Core Modules (Tabbed Interface)
   ========================================== */

.modules {
    padding: 60px 0;
    background: var(--bg-white);
}

.module-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    background: var(--bg-section);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 24px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.module-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.module-tab:hover {
    color: var(--text-body);
}

.module-tab.active {
    background: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.module-tab svg {
    color: inherit;
}

.module-panels {
    position: relative;
}

.module-panel {
    display: none;
    animation: fadeSlideUp 0.4s ease;
}

.module-panel.active {
    display: block;
}

.module-panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.module-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.module-phase-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.module-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.module-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.module-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-body);
    font-weight: 500;
}

/* Module Demo Cards */
.module-demo-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.demo-card-header {
    padding: 12px 16px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.demo-card-dot.green { background: #22c55e; }
.demo-card-dot.yellow { background: #f59e0b; }
.demo-card-dot.red { background: #ef4444; animation: pulse-dot 1s ease-in-out infinite; }

/* Chat Flow Demo */
.demo-chat-flow {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flow-step {
    width: 28px;
    height: 28px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.flow-text {
    font-size: 0.825rem;
    color: var(--text-body);
}

/* Triage Queue Demo */
.triage-queue {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.queue-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.queue-priority {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.queue-item.urgent .queue-priority { background: #fef2f2; color: #ef4444; }
.queue-item.moderate .queue-priority { background: #fffbeb; color: #f59e0b; }
.queue-item.low .queue-priority { background: #f0fdf4; color: #22c55e; }

.queue-name {
    font-size: 0.825rem;
    color: var(--text-body);
    font-weight: 500;
}

.queue-time {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Transcript Demo */
.transcript-demo {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.transcript-line-demo {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
}

.transcript-line-demo.active {
    background: var(--primary-bg);
}

.speaker-tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    min-width: 54px;
    text-align: center;
}

.speaker-tag.doctor { background: #ecfeff; color: var(--primary); }
.speaker-tag.patient { background: #f3e8ff; color: #9333ea; }

.transcript-line-demo span:last-child {
    font-size: 0.825rem;
    color: var(--text-body);
    line-height: 1.5;
}

.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--primary);
}

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

/* Doc Gen Demo */
.doc-gen-demo {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.doc-gen-field {
    display: flex;
    align-items: center;
    gap: 12px;
}

.doc-gen-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
    min-width: 100px;
}

.doc-gen-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-section);
    border-radius: 100px;
    overflow: hidden;
}

.doc-gen-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 100px;
    animation: fillBar 1.5s ease forwards;
}

@keyframes fillBar {
    from { width: 0 !important; }
}

/* ---- SmartVoice Hero Preview ---- */
.sv-app {
    background: linear-gradient(160deg, #2d2a5e, #1a1640);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
    flex: 1;
}

.sv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv-avatar {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #e2e8f0;
}

.sv-status-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 8px;
    border-radius: 100px;
}

.sv-status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 3s ease-in-out infinite;
}

.sv-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 14px 8px;
    gap: 8px;
}

.sv-lang-selector {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 2px;
}

.sv-lang {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    padding: 3px 10px;
    border-radius: 100px;
    transition: all 0.2s;
}

.sv-lang.active {
    background: rgba(8, 145, 178, 0.3);
    color: var(--primary-light);
}

.sv-orb-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sv-ring {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-ring svg {
    position: absolute;
    inset: 0;
}

.sv-ring-level {
    animation: svRingPulse 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes svRingPulse {
    0%, 100% { stroke-dasharray: 80 260; opacity: 0.6; }
    50% { stroke-dasharray: 180 160; opacity: 1; }
}

.sv-orb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #67e8f9, var(--primary), #4338ca);
    box-shadow: 0 0 30px rgba(8, 145, 178, 0.4), 0 0 60px rgba(8, 145, 178, 0.15);
    animation: svOrbGlow 4.5s ease-in-out infinite;
}

@keyframes svOrbGlow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(8, 145, 178, 0.4); }
    50% { transform: scale(1.06); box-shadow: 0 0 45px rgba(8, 145, 178, 0.6), 0 0 80px rgba(8, 145, 178, 0.2); }
}

.sv-status-text {
    font-size: 0.7rem;
    color: var(--primary-light);
    font-weight: 500;
}

.sv-transcript-preview {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sv-transcript-line {
    font-size: 0.68rem;
    line-height: 1.5;
    padding: 6px 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.75);
}

.sv-transcript-user {
    background: rgba(255, 255, 255, 0.05);
}

.sv-transcript-ai {
    background: rgba(8, 145, 178, 0.1);
}

.sv-speaker {
    font-weight: 700;
    color: var(--primary-light);
    margin-right: 4px;
}

.sv-footer {
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sv-mic-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
}

.sv-mic-level {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, #6366f1, var(--primary-light));
    border-radius: 100px;
    animation: svMicPulse 3.5s ease-in-out infinite;
}

@keyframes svMicPulse {
    0%, 100% { width: 35%; }
    30% { width: 70%; }
    60% { width: 45%; }
    80% { width: 60%; }
}

.sv-call-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 20px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 100px;
    color: #fca5a5;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: inherit;
    cursor: default;
}

.sv-call-dot {
    width: 7px;
    height: 7px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-dot 3s ease-in-out infinite;
}

/* SmartVoice preview entry animation */
.preview-panel.active .sv-transcript-line {
    opacity: 0;
    animation: drCardSlideIn 0.5s ease forwards;
}
.preview-panel.active .sv-transcript-line:nth-child(1) { animation-delay: 0.3s; }
.preview-panel.active .sv-transcript-line:nth-child(2) { animation-delay: 0.7s; }

/* ---- SmartVoice Module Demo Card ---- */
.voice-demo {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.voice-demo-orb-wrap {
    position: relative;
    width: 72px;
    height: 72px;
}

.voice-demo-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid var(--primary-bg);
    animation: voiceDemoRing 4s ease-in-out infinite;
}

@keyframes voiceDemoRing {
    0%, 100% { border-color: var(--primary-bg); transform: scale(1); }
    50% { border-color: var(--primary-light); transform: scale(1.08); }
}

.voice-demo-orb {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, var(--primary-light), var(--primary), var(--primary-dark));
    animation: svOrbGlow 4.5s ease-in-out infinite;
}

.voice-demo-status {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
}

.voice-demo-transcript {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.voice-demo-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-body);
}

.voice-demo-speaker {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}

.voice-demo-speaker.patient {
    background: var(--primary-bg);
    color: var(--primary);
}

.voice-demo-speaker.ai {
    background: #f0f9ff;
    color: #0284c7;
}

.voice-demo-langs {
    display: flex;
    gap: 6px;
}

.voice-demo-lang-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--bg-section);
    color: var(--text-light);
}

.voice-demo-lang-tag.active {
    background: var(--primary-bg);
    color: var(--primary);
}

/* ==========================================
   Workflow Timeline
   ========================================== */

.workflow {
    padding: 100px 0;
    background: var(--bg-dark);
}

.workflow .section-badge {
    background: rgba(8, 145, 178, 0.1);
    color: var(--primary-light);
    border-color: rgba(8, 145, 178, 0.2);
}

.workflow .section-title {
    color: #e2e8f0;
}

.workflow .section-subtitle {
    color: #94a3b8;
}

.workflow-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0 0;
}

.timeline-track {
    position: absolute;
    top: 82px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--bg-dark-border);
}

.timeline-track::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    animation: trackFill 2s ease forwards;
    animation-play-state: paused;
}

.workflow-timeline.animated .timeline-track::after {
    animation-play-state: running;
}

@keyframes trackFill {
    to { width: 100%; }
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.workflow-timeline.animated .timeline-step {
    opacity: 1;
    transform: translateY(0);
}

.workflow-timeline.animated .timeline-step[data-step="1"] { transition-delay: 0.15s; }
.workflow-timeline.animated .timeline-step[data-step="2"] { transition-delay: 0.35s; }
.workflow-timeline.animated .timeline-step[data-step="3"] { transition-delay: 0.55s; }
.workflow-timeline.animated .timeline-step[data-step="4"] { transition-delay: 0.75s; }

.step-marker {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 0 24px rgba(8, 145, 178, 0.35);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .step-marker {
    transform: scale(1.12);
    box-shadow: 0 0 32px rgba(8, 145, 178, 0.5);
}

.step-number {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.step-content {
    background: var(--bg-dark-card);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    width: 100%;
    text-align: left;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .step-content {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 4px 24px rgba(8, 145, 178, 0.08);
}

.step-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.step-product {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--primary-light);
    background: rgba(8, 145, 178, 0.12);
    padding: 2px 8px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.step-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-bullets li {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.5;
    padding: 3px 0 3px 16px;
    position: relative;
}

.step-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

/* ==========================================
   Features (Enhanced Cards)
   ========================================== */

.features {
    padding: 100px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: rgba(8, 145, 178, 0.2);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    color: var(--primary);
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ==========================================
   Team Gallery
   ========================================== */

.team-gallery {
    padding: 100px 0;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Gallery Marquee (horizontal auto-scroll with fade edges) */
.gallery-marquee {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.gallery-track {
    display: flex;
    gap: 24px;
    animation: gallery-scroll 90s linear infinite;
    width: max-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes gallery-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
}

.gallery-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.gallery-img-wrap {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.gallery-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.04);
}

.gallery-caption {
    padding: 20px;
}

.gallery-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.gallery-caption h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 4px;
}

.gallery-caption p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ==========================================
   Testimonials
   ========================================== */

.testimonials {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-role {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ==========================================
   Media Coverage
   ========================================== */

.media-coverage {
    padding: 100px 0;
    background: var(--bg-section);
}

/* Media Logos Marquee */
.media-logos-strip {
    overflow: hidden;
    margin-bottom: 48px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.media-logos-track {
    display: flex;
    gap: 16px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.media-logo-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Media Marquee (horizontal auto-scroll with fade edges) */
.media-marquee {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    margin-top: 32px;
}

.media-marquee-track {
    display: flex;
    gap: 20px;
    animation: media-scroll 120s linear infinite;
    width: max-content;
}

.media-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes media-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Partnership Highlights */

.partnership-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #162033 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 360px;
    max-width: 360px;
    flex-shrink: 0;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.partnership-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partnership-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.partnership-logo {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.15;
}

.partnership-card:hover .partnership-logo {
    opacity: 0.7;
}

.partnership-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(8, 145, 178, 0.15);
    color: var(--primary-light);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partnership-card h3 {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.partnership-card p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.partnership-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    transition: gap var(--transition);
}

.partnership-card:hover .partnership-link {
    gap: 10px;
}

/* Media Card */
.media-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-decoration: none;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
}

.media-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.media-card-source {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.source-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.media-type-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.media-type-badge.type-article {
    background: #ecfdf5;
    color: #059669;
}

.media-type-badge.type-video {
    background: #fef3c7;
    color: #d97706;
}

.media-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 8px;
    flex: 1;
}

.media-card-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.media-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    margin-left: auto;
    transition: all var(--transition);
}

.media-card:hover .media-card-arrow {
    background: var(--primary);
    color: white;
}

/* Media Video Cards */
.media-video-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-decoration: none;
    transition: all var(--transition);
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

.media-video-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.video-play-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-play-icon.radio {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.video-info {
    min-width: 0;
}

.video-info .source-name {
    display: block;
    margin-bottom: 4px;
}

.video-info h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ==========================================
   Pricing
   ========================================== */

.pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-xl);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.pricing-card-header p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.pricing-amount-block {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}

.pricing-value.custom {
    font-size: 2rem;
}

.pricing-interval {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-body);
}

/* ==========================================
   Contact
   ========================================== */

.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
}

.contact-item a:hover { text-decoration: underline; }

.contact-item p {
    font-size: 0.85rem;
    color: var(--text-body);
}

.contact-map {
    margin-top: 4px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 180px;
}

/* ==========================================
   Footer (Multi-column, Cursor-style)
   ========================================== */

.footer {
    background: var(--bg-dark);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--bg-dark-border);
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand-desc {
    font-size: 0.825rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: none;
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #475569;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: #475569;
    transition: color var(--transition);
    display: flex;
}

.footer-social a:hover {
    color: white;
}

/* ==========================================
   Animations
   ========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    .hero-text { flex: none; width: 100%; max-width: 600px; margin: 0 auto; text-align: center; }
    .hero-preview { width: 100%; }
    .hero-title { font-size: 2.25rem; }
    .preview-content { height: 400px; }

    .modules .module-panel-content {
        grid-template-columns: 1fr;
    }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .workflow-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .timeline-track {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        scroll-snap-type: none;
    }
    section {
        height: auto;
        scroll-snap-align: none;
        overflow-y: visible;
    }
    .page-dots {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active { display: flex; }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0 0 0 12px;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle { display: flex; }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { padding: 100px 0 40px; }
    .hero-title { font-size: 1.85rem; }
    .hero-description { font-size: 0.9rem; }

    .preview-tabs { display: none; }
    .preview-content { height: 340px; }
    .sc-app { max-width: 100%; }

    .dr-doc-layout { grid-template-columns: 1fr; }
    .dr-triage-grid { grid-template-columns: repeat(2, 1fr); }

    .section-title { font-size: 1.75rem; }

    .module-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .modules, .features, .team-gallery, .testimonials, .media-coverage, .pricing, .contact { padding: 60px 0; }
    .gallery-card { min-width: 260px; max-width: 260px; }
    .media-card { min-width: 260px; max-width: 260px; }
    .partnership-card { min-width: 280px; max-width: 280px; padding: 24px; }
    .media-video-card { min-width: 240px; max-width: 240px; }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }

    .trusted-logos { gap: 24px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.85rem; }
    .section-header { margin-bottom: 36px; }
    .section-title { font-size: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .module-panel-content { padding: 24px; }

    .workflow-timeline {
        grid-template-columns: 1fr;
    }

    .footer-grid { grid-template-columns: 1fr; }
}
