/* ===== CSS Variables ===== */
:root {
    --white: #ffffff;
    --black: #000000;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    --gray-950: #09090b;
    --accent: #14b8a6;
    --accent-light: #5eead4;
    --accent-dark: #0d9488;
    --accent-glow: rgba(20, 184, 166, 0.4);
    --gradient-1: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    --gradient-2: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px var(--accent-glow);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--gray-950);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Container ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Custom Cursor ===== */
.cursor-follower,
.cursor-dot {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    opacity: 0.5;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
}

/* ===== Loading Screen ===== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--gray-950);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    transform: translate(-50%, -50%);
    animation: pulse-ring 1.5s ease-out infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.3s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.loader-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.loader-text {
    display: block;
    margin-top: 16px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

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

.nav-cta {
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--gradient-1);
    color: var(--white) !important;
}

/* Header (Contact Page Style) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-800);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-link:hover img {
    transform: scale(1.05);
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--gray-700);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: var(--white);
    background: rgba(20, 184, 166, 0.1);
    border-color: var(--accent);
}

.back-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.back-btn:hover svg {
    transform: translateX(-4px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 24px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    bottom: -100px;
    left: -100px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: 50%;
    left: 30%;
}

.grid-overlay {
    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;
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.highlight {
    color: #ef4444;
}

.highlight-alt {
    color: var(--accent-light);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    filter: blur(20px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary:hover .btn-glow {
    opacity: 0.5;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--gray-700);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(20, 184, 166, 0.1);
}

.btn-secondary svg {
    width: 16px;
    height: 16px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-prefix,
.stat-suffix {
    font-size: 1.5rem;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-800);
}

.hero-visual {
    position: relative;
}

.visual-container {
    position: relative;
}

.waveform-container {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 80px;
    z-index: 2;
}

#waveformCanvas {
    width: 100%;
    height: 100%;
}

.waveform-glow {
    position: absolute;
    inset: 0;
    background: var(--accent-glow);
    filter: blur(30px);
    opacity: 0.5;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-800);
    box-shadow: var(--shadow-xl);
}

.visual-card img {
    width: 100%;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(9, 9, 11, 0.8) 100%);
}

.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(24, 24, 27, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gray-800);
    font-size: 0.85rem;
    animation: float 3s ease-in-out infinite;
}

.floating-element svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.fe-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.fe-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 0.5s;
}

.fe-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.metric {
    font-weight: 700;
    color: var(--accent);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.8rem;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-600);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* ===== Client Overview ===== */
.client-overview {
    padding: 120px 0;
    background: var(--gray-950);
}

.overview-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.frame-border {
    position: absolute;
    inset: -2px;
    border: 2px solid transparent;
    background: var(--gradient-1);
    border-radius: 22px;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.image-caption {
    text-align: center;
    margin-top: 16px;
}

.caption-name {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}

.caption-title {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
}

.overview-text {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 40px;
}

.overview-stats {
    display: flex;
    gap: 48px;
}

.o-stat {
    text-align: center;
}

.o-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.o-stat-label {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ===== Challenge Section ===== */
.challenge-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-950) 0%, var(--gray-900) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.challenge-card {
    padding: 32px;
    border-radius: 20px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    transition: all var(--transition-base);
}

.challenge-card:hover {
    border-color: var(--gray-700);
    transform: translateY(-4px);
}

.challenge-main {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
}

.challenge-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(239, 68, 68, 0.1);
    margin-bottom: 20px;
}

.challenge-main .challenge-icon {
    margin-bottom: 0;
}

.challenge-icon svg {
    width: 28px;
    height: 28px;
    color: #ef4444;
}

.challenge-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.challenge-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.challenge-metric {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-800);
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #ef4444;
}

.metric-label {
    display: block;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.no-show-bar {
    width: 200px;
    height: 12px;
    background: var(--gray-800);
    border-radius: 6px;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: #ef4444;
    border-radius: 6px;
    width: var(--fill);
}

.bar-label {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.burnout-indicator {
    margin-top: 16px;
}

.burnout-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
}

.burnout-label {
    display: block;
    color: var(--gray-500);
    font-size: 0.8rem;
}

.quote-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.quote-icon {
    margin-bottom: 24px;
}

.quote-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
    opacity: 0.5;
}

.quote-block blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 24px;
}

.quote-block cite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.quote-block cite img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-block cite span {
    text-align: left;
}

.quote-block cite strong {
    display: block;
    color: var(--white);
}

/* ===== Solution Section ===== */
.solution-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.solution-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.sol-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 50%, var(--gray-900) 100%);
}

.sol-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(var(--accent) 1px, transparent 1px);
    background-size: 40px 40px;
}

.solution-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.solution-visual {
    position: relative;
}

.voice-demo {
    background: var(--gray-900);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-800);
}

.demo-screen {
    position: relative;
    aspect-ratio: 16/9;
}

.demo-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.waveform-bars {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
}

.waveform-bars span {
    width: 4px;
    background: var(--accent);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.waveform-bars span:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.waveform-bars span:nth-child(2) {
    height: 35px;
    animation-delay: 0.1s;
}

.waveform-bars span:nth-child(3) {
    height: 25px;
    animation-delay: 0.2s;
}

.waveform-bars span:nth-child(4) {
    height: 40px;
    animation-delay: 0.3s;
}

.waveform-bars span:nth-child(5) {
    height: 30px;
    animation-delay: 0.4s;
}

.waveform-bars span:nth-child(6) {
    height: 35px;
    animation-delay: 0.5s;
}

.waveform-bars span:nth-child(7) {
    height: 20px;
    animation-delay: 0.6s;
}

.waveform-bars span:nth-child(8) {
    height: 40px;
    animation-delay: 0.7s;
}

.waveform-bars span:nth-child(9) {
    height: 25px;
    animation-delay: 0.8s;
}

.waveform-bars span:nth-child(10) {
    height: 15px;
    animation-delay: 0.9s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

.demo-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--gray-800);
}

.demo-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.demo-play:hover {
    transform: scale(1.1);
}

.demo-play svg {
    width: 16px;
    height: 16px;
    color: var(--white);
    margin-left: 2px;
}

.demo-waveform {
    flex: 1;
    height: 30px;
}

.demo-duration {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.conversation-preview {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.conversation-bubble {
    max-width: 85%;
    padding: 16px 20px;
    border-radius: 16px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
}

.conversation-bubble.ai {
    border-radius: 16px 16px 16px 4px;
}

.conversation-bubble.patient {
    align-self: flex-end;
    border-radius: 16px 16px 4px 16px;
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
}

.bubble-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conversation-bubble p {
    font-size: 0.95rem;
    color: var(--gray-300);
}

.conversation-bubble.empathetic {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.empathy-tag {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    padding: 4px 10px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    color: #22c55e;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateX(8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(20, 184, 166, 0.1);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.feature-highlight {
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    background: var(--gradient-1);
    margin-top: 8px;
}

.highlight-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
}

.highlight-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-highlight p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.workflow-section {
    margin-top: 80px;
}

.workflow-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 48px;
}

.workflow-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.workflow-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 32px;
    border-radius: 20px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    text-align: center;
}

.workflow-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.workflow-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.workflow-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.workflow-connector {
    color: var(--accent);
}

.workflow-connector svg {
    width: 24px;
    height: 24px;
}

/* ===== Impact Section ===== */
.impact-section {
    padding: 120px 0;
    background: var(--gray-950);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.impact-card {
    padding: 32px;
    border-radius: 20px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    transition: all var(--transition-base);
}

.impact-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.impact-card.primary {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.chart-container {
    height: 200px;
}

.chart-legend {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.legend-item {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.legend-item.before::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 2px;
    margin-right: 8px;
}

.legend-item.after::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 2px;
    margin-right: 8px;
}

.impact-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.impact-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.metric-from {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.6;
}

.metric-to {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.impact-metric svg {
    width: 24px;
    height: 24px;
    color: var(--gray-500);
}

.impact-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.impact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 20px;
}

.impact-icon svg {
    width: 28px;
    height: 28px;
}

.impact-icon.revenue {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.impact-icon.calls {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.impact-icon.time {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.impact-icon.access {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.impact-icon.nps {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.impact-icon.turnover {
    background: rgba(20, 184, 166, 0.1);
    color: var(--accent);
}

.impact-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.impact-number small {
    font-size: 1rem;
    color: var(--gray-400);
}

.nps-compare,
.turnover-compare {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.nps-before,
.turnover-before {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-500);
    text-decoration: line-through;
}

.nps-after {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #ec4899;
}

.turnover-after {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

/* Testimonial */
.testimonial-section {
    margin-bottom: 60px;
}

.testimonial-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.testimonial-bg {
    position: relative;
    height: 300px;
}

.testimonial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 9, 11, 0.9) 0%, rgba(20, 184, 166, 0.2) 100%);
}

.testimonial-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.stars svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-content cite {
    color: var(--gray-400);
}

.cite-dash {
    margin-right: 8px;
    color: var(--accent);
}

/* Expansion Banner */
.expansion-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 48px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.expansion-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.expansion-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--accent);
}

.expansion-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.expansion-text h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.expansion-text p {
    color: var(--gray-400);
}

.expansion-text strong {
    color: var(--accent);
}

.clinic-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.dot.existing {
    background: var(--gray-600);
}

.dot.new {
    background: var(--accent);
}

.dot.pulse {
    animation: pulse 1.5s infinite;
}

/* ===== Dashboard Section ===== */
.dashboard-section {
    padding: 120px 0;
    background: var(--gray-900);
}

.dashboard-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.dashboard-content {
    max-width: 500px;
}

.dashboard-content p {
    color: var(--gray-400);
    margin-bottom: 32px;
}

.dashboard-features {
    list-style: none;
}

.dashboard-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-800);
}

.dashboard-features li:last-child {
    border-bottom: none;
}

.dashboard-features svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.dashboard-image {
    position: relative;
}

.dashboard-frame {
    background: var(--gray-800);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-700);
}

.frame-dots {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: var(--gray-900);
}

.frame-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-700);
}

.frame-dots span:first-child {
    background: #ef4444;
}

.frame-dots span:nth-child(2) {
    background: #fbbf24;
}

.frame-dots span:nth-child(3) {
    background: #22c55e;
}

.dashboard-frame img {
    width: 100%;
}

.dashboard-glow {
    position: absolute;
    inset: -20px;
    background: var(--accent-glow);
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

/* ===== Why Section ===== */
.why-section {
    padding: 120px 0;
    background: var(--gray-950);
    text-align: center;
}

.why-content {
    max-width: 700px;
    margin: 0 auto;
}

.why-text {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 48px;
}

.channel-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.channel-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    border-radius: 16px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    min-width: 100px;
}

.channel-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.channel-icon span {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.channel-connector {
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 40px;
    background: var(--gray-900);
    border-top: 1px solid var(--gray-800);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-back {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-back:hover {
    color: var(--accent);
}

.footer-back svg {
    width: 20px;
    height: 20px;
}

.related-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.related-links {
    display: flex;
    gap: 16px;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    transition: all var(--transition-fast);
}

.related-link:hover {
    border-color: var(--accent);
}

.related-icon {
    font-size: 1.25rem;
}

.related-tag {
    font-size: 0.75rem;
    padding: 4px 8px;
    background: var(--gray-700);
    border-radius: 4px;
    color: var(--gray-400);
}

.footer-bottom {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.footer-logo svg {
    width: 100%;
    height: 100%;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .overview-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .overview-stats {
        justify-content: center;
    }

    .challenge-main {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .solution-showcase {
        grid-template-columns: 1fr;
    }

    .impact-card.primary {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .dashboard-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dashboard-content {
        margin: 0 auto;
    }

    .expansion-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .workflow-timeline {
        flex-direction: column;
    }

    .workflow-connector {
        transform: rotate(90deg);
    }

    .channel-icons {
        flex-direction: column;
    }

    .channel-connector {
        width: 2px;
        height: 24px;
    }

    .related-links {
        flex-direction: column;
    }

    .cursor-follower,
    .cursor-dot {
        display: none;
    }
}