/* ============================================
   Aspalo - General AI Call Center Landing
   Sector-agnostic, professional
   ============================================ */

:root {
    --primary: #0f172a;
    --primary-dark: #020617;
    --primary-light: #334155;
    --accent: #475569;
    --bg: #e2e8f0;
    --bg-card: #f1f5f9;
    --bg-elevated: #cbd5e1;
    --text: #0f172a;
    --text-muted: #475569;
    --text-dim: #64748b;
    --border: #e2e8f0;
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    --gradient-text: linear-gradient(135deg, #334155 0%, #475569 100%);
    --glow: 0 4px 24px rgba(15, 23, 42, 0.12);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 16px;
    --radius-sm: 12px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

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

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
/* Daha belirgin gradient başlık */
.hero-title .gradient-text {
    background: linear-gradient(90deg, #1e3a5f, #0f172a, #334155, #0f172a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shine 4s ease-in-out infinite;
}
@keyframes gradient-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.btn-primary {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(30, 58, 95, 0.4);
}

.btn-ghost {
    background: #f1f5f9;
    color: var(--text);
    border: 1px solid #cbd5e1;
}
.btn-ghost:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.btn-nav {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: #ffffff !important;
    border: 1px solid transparent;
}
.btn-nav:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.35);
}

.btn-large { padding: 14px 28px; font-size: 16px; }
.btn-small { padding: 10px 18px; font-size: 14px; font-weight: 500; }
.btn-full { width: 100%; }

.btn-glow {
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.15);
}
.btn-glow:hover {
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.2);
}
.btn-glow-secondary {
    border-color: var(--border);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}
.btn-glow-secondary:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(226, 232, 240, 0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
    height: auto;
    line-height: 1;
}
.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
}
.logo-img {
    width: auto;
    height: 70px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.logo { color: var(--text); }
.mobile-menu-btn span { background: var(--text); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .navbar.open .mobile-nav { display: flex; }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(15, 23, 42, 0.06) 0%, transparent 55%);
    animation: glow-pulse 6s ease-in-out infinite;
}
.hero-gradient::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -20%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(51, 65, 85, 0.05) 0%, transparent 70%);
    animation: glow-pulse 8s ease-in-out infinite reverse;
}
.hero-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Dinamik sektör badge'leri */
.sector-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    animation: fade-in-up 0.6s ease-out;
}
.sector-badge {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}
.sector-badge.active {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(30, 58, 95, 0.35);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fade-in-up 0.6s ease-out;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}
.hero-badge::before {
    content: '✦';
    font-size: 12px;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    animation: fade-in-up 0.6s ease-out 0.1s both;
    max-width: 18em;
}

.hero-sub {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 16px;
    animation: fade-in-up 0.6s ease-out 0.15s both;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.65;
    animation: fade-in-up 0.6s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    margin-bottom: 28px;
    animation: fade-in-up 0.6s ease-out 0.3s both;
}
.hero-cta-primary { flex-shrink: 0; }

/* Canlı Örnek Dinle - can alıcı, hem web hem mobil */
.hero-cta-secondary {
    position: relative;
    padding: 12px 20px;
    border: 2px solid #334155;
    background: #fff;
    color: var(--text);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.hero-cta-secondary:hover {
    color: var(--text);
    border-color: #0f172a;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.hero-cta-secondary:active {
    transform: translateY(0);
}
.hero-cta-secondary svg {
    flex-shrink: 0;
}

/* Hero: 3-step "Nasıl çalışır" - kısa, taranabilir */
.hero-how {
    margin-bottom: 40px;
    animation: fade-in-up 0.6s ease-out 0.35s both;
}
.hero-how-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
}
.hero-how-steps li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 8px;
}
.hero-how-steps li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.hero-how-steps strong { color: var(--text); font-weight: 600; }
.hero-badge-industry { margin-bottom: 12px; }
.sector-badges { margin-bottom: 20px; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
    animation: fade-in-up 0.6s ease-out 0.4s both;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.stat-icon {
    font-size: 20px;
    margin-bottom: 2px;
}
.stat-num { font-weight: 700; font-size: 18px; color: var(--text); }
.stat-label { font-size: 13px; color: var(--text-dim); }
.stat-sep {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* Hero visual - telefon etrafı geçişli, gerçek telefon hissi */
.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}
.phone-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 32px;
    background: radial-gradient(ellipse 90% 80% at 50% 50%, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.02) 50%, transparent 70%);
    border-radius: 48px;
    box-shadow: inset 0 0 80px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(15, 23, 42, 0.06);
}
.phone-mockup {
    position: relative;
    width: 260px;
    height: 520px;
    background: linear-gradient(165deg, #e2e8f0 0%, #cbd5e1 35%, #94a3b8 100%);
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.9),
        0 0 0 4px rgba(15, 23, 42, 0.08),
        0 2px 0 2px rgba(0,0,0,0.06) inset,
        0 25px 50px -12px rgba(15, 23, 42, 0.25),
        0 50px 100px -24px rgba(15, 23, 42, 0.2),
        20px 40px 60px -20px rgba(0,0,0,0.15);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: #0f172a;
    border-radius: 0 0 14px 14px;
    z-index: 3;
    opacity: 0.9;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.06);
}

.call-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 14px 16px;
    overflow: hidden;
}

.caller-avatar {
    width: 72px;
    height: 72px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 12px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.1);
}
.caller-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.caller-name {
    display: none;
}

.call-status {
    font-size: 12px;
    color: #22c55e;
    margin-bottom: 6px;
    font-weight: 500;
}

.call-timer {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.call-transcript {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    padding-right: 4px;
    margin-bottom: 10px;
    min-height: 0;
}

.call-transcript .message {
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 8px;
    max-width: 90%;
    word-wrap: break-word;
}

.call-transcript .message.ai {
    background: var(--gradient-hero);
    color: #fff;
    align-self: flex-start;
    margin-right: auto;
    border-bottom-left-radius: 4px;
}

.call-transcript .message.customer {
    background: rgba(15, 23, 42, 0.06);
    color: var(--text);
    align-self: flex-end;
    margin-left: auto;
    border: 1px solid var(--border);
    border-bottom-right-radius: 4px;
}

.call-transcript .speaker {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    font-size: 9px;
    opacity: 0.9;
    text-transform: uppercase;
}

.call-controls {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    justify-content: center;
    flex-shrink: 0;
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.control-btn.end {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Integration logos - Bağlantı yapılıyor */
.integration-logos-right {
    position: absolute;
    left: calc(50% + 180px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
    width: 88px;
}

.connection-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    white-space: nowrap;
}

/* Uygulamalardan telefona doğru akan noktalar (HubSpot vb. → telefon) */
.integration-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: var(--transition);
    min-height: 56px;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.integration-logo-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(15, 23, 42, 0.5);
    opacity: 0;
    animation: data-flow-to-phone 3s ease-in-out infinite;
    z-index: 2;
}

.integration-logo-item:nth-child(2)::before { animation-delay: 0s; }
.integration-logo-item:nth-child(3)::before { animation-delay: 0.5s; }
.integration-logo-item:nth-child(4)::before { animation-delay: 1s; }
.integration-logo-item:nth-child(5)::before { animation-delay: 1.5s; }
.integration-logo-item:nth-child(6)::before { animation-delay: 2s; }

@keyframes data-flow-to-phone {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(0) scale(0.6);
    }
    15% {
        opacity: 1;
        transform: translateY(-50%) translateX(-30px) scale(1);
    }
    85% {
        opacity: 1;
        transform: translateY(-50%) translateX(-75px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(-75px) scale(0.6);
    }
}

.integration-logo-item:hover {
    border-color: var(--primary-light);
    transform: translateX(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.logo-container {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 6px;
    position: relative;
}

.logo-container.logo-pulse {
    animation: logo-pulse 2.5s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 4px rgba(15, 23, 42, 0); }
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

.logo-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
}

.integration-logo-item:hover .logo-label {
    color: var(--primary-light);
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-title { margin-left: auto; margin-right: auto; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    /* Yazılar önce, telefon altında (DOM sırası: hero-content → hero-visual) */
    .hero-visual { min-height: 420px; }
    .phone-mockup { width: 220px; height: 440px; }
    .integration-logos-right { left: 50%; transform: translate(80px, -50%); }
}


@media (max-width: 600px) {
    .hero-visual { min-height: 380px; }
    .phone-mockup { width: 200px; height: 400px; }
    .integration-logos-right { display: none; }
}

/* Section common */
.section-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 40px;
}

/* Dashboard section - pencere mockup (landing-page / frontend benzeri, beyaz sade) */
.dashboard-section {
    padding: 100px 0;
    background: var(--bg-elevated);
}
.dashboard-mockup {
    perspective: 1000px;
    margin-top: 32px;
}
.dashboard-frame {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}
.dashboard-frame:hover {
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.45);
}
.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}
.window-controls {
    display: flex;
    gap: 8px;
}
.window-controls .control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.control.red { background: #ff5f57; }
.control.yellow { background: #febc2e; }
.control.green { background: #28c840; }
.dashboard-url {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}
.dashboard-content {
    display: flex;
    min-height: 380px;
}
.dash-sidebar {
    width: 220px;
    background: #f1f5f9;
    padding: 20px;
    border-right: 1px solid #e2e8f0;
}
.dash-logo {
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 24px;
}
.dash-menu-item {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 4px;
    transition: var(--transition);
}
.dash-menu-item.active {
    background: #0f172a;
    color: #fff;
    font-weight: 500;
}
.dash-features {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.dash-features-title {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.dash-features-list {
    list-style: none;
    font-size: 13px;
    color: #475569;
    line-height: 1.8;
}
.dash-features-list li::before {
    content: '✓ ';
    color: #0f172a;
    font-weight: 600;
}
.dash-main {
    flex: 1;
    padding: 24px;
    background: #f8fafc;
}
.dash-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.dash-card {
    flex: 1;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
}
.dash-card:hover {
    border-color: #cbd5e1;
}
.dash-card-title {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}
.dash-card-value {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}
.dash-chart {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    height: 180px;
    margin-bottom: 20px;
}
.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    gap: 12px;
}
.chart-bars .bar {
    flex: 1;
    min-width: 24px;
    background: linear-gradient(180deg, #334155 0%, #64748b 100%);
    border-radius: 8px 8px 0 0;
    transition: height 0.3s ease;
}
.dash-lead-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.lead-tag {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}
.lead-tag.hot {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}
.lead-tag.warm {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
}
.lead-tag.cold {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}
@media (max-width: 900px) {
    .dashboard-content { flex-direction: column; }
    .dash-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
    }
    .dash-logo { margin-bottom: 0; }
    .dash-menu { display: flex; flex-wrap: wrap; gap: 4px; }
    .dash-features { margin-top: 0; padding-top: 12px; border-top: none; width: 100%; }
    .dash-cards { flex-wrap: wrap; }
}
@media (max-width: 600px) {
    .dash-cards { flex-direction: column; }
    .dash-chart { height: 140px; }
}

/* Sectors */
.sectors {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.6) 0%, rgba(248, 250, 252, 0.9) 100%);
}

/* Sektörel uyumluluk kartları */
.sector-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sector-compat-card {
    position: relative;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.sector-compat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.25s ease;
}
.sector-compat-card:hover {
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.04);
    transform: translateY(-6px);
}
.sector-compat-card:hover::before {
    opacity: 1;
}
.sector-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 28px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 14px;
    line-height: 1;
}
.sector-compat-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
    letter-spacing: -0.02em;
}
.sector-compat-card .sector-scenario {
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 0;
}
.sector-compat-card .sector-hint {
    font-size: 12px;
    color: var(--text-dim);
}
.sector-compat-card:hover .sector-hint {
    opacity: 0.8;
}
.sector-compat-card.active {
    border-color: var(--primary-light);
    border-width: 2px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(51, 65, 85, 0.15);
}
.sector-compat-card.active::before {
    opacity: 1;
}

/* Sektör fayda paneli (karta tıklanınca) */
.sector-benefit-panel {
    margin-top: 32px;
    padding: 32px 36px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.sector-benefit-panel-inner {
    max-width: 720px;
}
.sector-benefit-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}
.sector-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 32px;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    flex-shrink: 0;
}
.sector-benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.sector-benefit-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}
.sector-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px 24px;
}
.sector-benefit-list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.55;
}
.sector-benefit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
@media (max-width: 640px) {
    .sector-benefit-panel { padding: 24px 20px; }
    .sector-benefit-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .sector-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .sector-cards-grid { grid-template-columns: 1fr; }
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.sector-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.sector-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px);
}

.sector-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.sector-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.sector-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* İnsan vs AI Karşılaştırma */
.comparison {
    padding: 100px 0;
    background: var(--bg-elevated);
}
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.comparison-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}
.comparison-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.comparison-metric {
    margin-bottom: 12px;
}
.comparison-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
}
.comparison-value--up {
    color: #15803d;
}
.comparison-value--zero {
    color: #15803d;
    font-variant-numeric: tabular-nums;
}
.comparison-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.comparison-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.comparison-table thead th {
    background: var(--bg-elevated);
    font-weight: 700;
    color: var(--text);
}
.comparison-table th:first-child,
.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-muted);
    min-width: 140px;
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}
.comparison-table tbody tr:hover td {
    background: rgba(15, 23, 42, 0.02);
}
.comparison-good {
    color: #15803d;
    font-weight: 600;
}
.comparison-bad {
    color: #b91c1c;
    font-weight: 500;
}
.comparison-ok {
    color: var(--text-muted);
}
@media (max-width: 900px) {
    .comparison-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .comparison-table th,
    .comparison-table td { padding: 12px 14px; font-size: 14px; }
    .comparison-value { font-size: 2rem; }
}

/* How it works - Caralo tarzı 4 adım */
.how,
.how-it-works {
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.03);
}

.section-header {
    margin-bottom: 48px;
}
.section-header .section-badge {
    margin-bottom: 12px;
}
.section-header .section-title {
    margin-bottom: 0;
}

/* 4 adım: dikey liste, her adım yatay satır (numara | içerik | ikon) */
.steps.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 0;
}

.step.step-row {
    display: grid;
    grid-template-columns: 100px 1fr 150px;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
    transition: var(--transition);
}
.step.step-row:hover {
    border-color: var(--primary-light);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-visual {
    display: flex;
    justify-content: center;
}

.step-icon {
    font-size: 48px;
}

@media (max-width: 768px) {
    .step.step-row {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .step-number {
        font-size: 40px;
        order: -1;
    }
    .step-visual {
        order: -2;
    }
    .step-content h3 {
        font-size: 18px;
    }
    .step-content p {
        font-size: 14px;
    }
}

/* Features */
.features {
    padding: 100px 0;
}

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

.feature-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.feature-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.feature-icon { font-size: 32px; margin-bottom: 16px; display: block; }

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.5) 0%, rgba(248, 250, 252, 0.95) 50%, rgba(241, 245, 249, 0.6) 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 56px;
}
.pricing-header .section-badge { margin-bottom: 12px; }
.pricing-header .section-title { margin-bottom: 16px; }
.pricing-subheadline {
    max-width: 560px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 40px;
}
.pricing-toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}
.pricing-toggle {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px;
    gap: 0;
}
.pricing-toggle-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pricing-toggle-btn:hover {
    color: var(--text);
}
.pricing-toggle-btn.active {
    background: var(--primary);
    color: #fff;
}
.pricing-toggle-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(34, 197, 94, 0.2);
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.pricing-toggle-btn.active .pricing-toggle-badge {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.pricing-savings {
    font-size: 13px;
    color: #16a34a;
    font-weight: 600;
    margin: -8px 0 16px 0;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 100px;
    display: inline-block;
}
.pricing-savings[hidden] {
    display: none;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
    transform: translateY(-6px);
}

.pricing-card--popular {
    border-color: var(--primary-light);
    border-width: 2px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(51, 65, 85, 0.2);
}
.pricing-card--popular:hover {
    box-shadow: 0 20px 56px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(51, 65, 85, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-hero);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.pricing-plan-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.pricing-card--popular .pricing-plan-name {
    margin-top: 12px;
}

.pricing-price-wrap {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}
.pricing-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.pricing-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 2px;
}
.pricing-period {
    font-size: 15px;
    color: var(--text-dim);
    font-weight: 500;
}

.pricing-price-wrap--custom {
    margin-bottom: 24px;
}
.pricing-price-custom {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}
.pricing-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.pricing-card--popular .pricing-features li::before {
    background: var(--primary-light);
}

.pricing-extra {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 12px;
    font-weight: 500;
}

.pricing-plus {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
    margin-top: 0;
}

.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}
.pricing-cta--primary {
    background: var(--gradient-hero);
    color: #fff;
    border: none;
}
.pricing-cta--primary:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .pricing { padding: 72px 0; }
    .pricing-header { margin-bottom: 40px; }
    .pricing-card { padding: 28px 24px; }
    .pricing-price { font-size: 32px; }
    .pricing-plan-name { font-size: 20px; }
}

/* CTA */
.cta {
    padding: 100px 0;
}

.cta-box {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--glow), 0 24px 60px rgba(15, 23, 42, 0.08);
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: center;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    transition: border-color 0.2s;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: var(--text-dim); }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.cta-form textarea { resize: vertical; min-height: 80px; }

@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

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

.footer .logo {
    justify-content: center;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}
.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-light); }

.footer-copy {
    font-size: 13px;
    color: var(--text-dim);
}

/* ============================================
   DEMO TALEP MODALI (takvim + saat + form)
   ============================================ */
.demo-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    animation: demoModalFadeIn 0.3s ease;
}
.demo-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.demo-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
}
.demo-modal-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    animation: demoModalSlideUp 0.3s ease;
}
.demo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: var(--transition);
}
.demo-modal-close:hover {
    background: var(--border);
}
.demo-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    overflow-y: auto;
    max-height: calc(90vh - 20px);
}
.demo-info-panel {
    padding: 32px;
    background: var(--bg-elevated);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.demo-brand { display: flex; align-items: center; gap: 12px; }
.demo-logo {
    font-size: 24px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    color: #fff;
    border-radius: 12px;
}
.demo-logo-img {
    width: auto;
    height: 70px;
    object-fit: contain;
    display: block;
}
.demo-brand-name { font-size: 18px; font-weight: 600; color: var(--text); }
.demo-title { font-size: 24px; font-weight: 700; color: var(--text); margin: 0; line-height: 1.2; }
.demo-description { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.demo-details { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.demo-detail-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.demo-detail-icon { font-size: 14px; width: 20px; text-align: center; }
.demo-calendar-panel {
    padding: 32px;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.calendar-nav-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}
.calendar-nav-btn:hover { border-color: var(--primary-light); }
.calendar-month-year { font-size: 17px; font-weight: 600; color: var(--text); margin: 0; }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 10px; }
.calendar-weekdays > div { text-align: center; font-size: 11px; font-weight: 600; color: var(--text-dim); padding: 6px 0; }
.calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
    position: relative;
}
.calendar-day:hover:not(.disabled):not(.selected) { border-color: var(--primary-light); background: rgba(15, 23, 42, 0.06); }
.calendar-day.disabled { opacity: 0.35; cursor: not-allowed; }
.calendar-day.selected { background: var(--primary); color: #fff; border-color: var(--primary); font-weight: 600; }
.calendar-day.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
}
.calendar-day.selected.today::after { background: #fff; }
.demo-form-panel {
    padding: 32px;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}
.selected-date-info { font-size: 15px; font-weight: 600; color: var(--text); padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.time-format-toggle { display: flex; gap: 6px; background: var(--bg-elevated); padding: 4px; border-radius: 8px; }
.time-toggle-btn {
    flex: 1;
    padding: 8px 14px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}
.time-toggle-btn.active { background: var(--primary); color: #fff; font-weight: 600; }
.time-slots { display: flex; flex-direction: column; gap: 6px; max-height: 180px; overflow-y: auto; }
.no-date-selected { color: var(--text-dim); font-size: 13px; text-align: center; padding: 16px; margin: 0; }
.time-slot {
    padding: 10px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    transition: var(--transition);
}
.time-slot:hover { border-color: var(--primary-light); }
.time-slot.selected { background: var(--primary); color: #fff; border-color: var(--primary); font-weight: 600; }
.demo-form-inner { display: flex; flex-direction: column; gap: 16px; }
.demo-form-inner .form-group { display: flex; flex-direction: column; gap: 6px; }
.demo-form-inner .form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.demo-form-inner .form-group input {
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    font-family: var(--font);
}
.demo-form-inner .form-group input:focus { outline: none; border-color: var(--primary); }
.form-disclaimer { font-size: 11px; color: var(--text-dim); line-height: 1.5; margin: 0; }
.form-disclaimer a { color: var(--primary-light); text-decoration: underline; }
.form-actions { display: flex; gap: 10px; margin-top: 4px; }
.demo-form-inner .btn-back {
    flex: 1;
    padding: 12px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.demo-form-inner .btn-confirm {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
@keyframes demoModalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes demoModalSlideUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 1024px) {
    .demo-modal-body { grid-template-columns: 1fr; }
    .demo-info-panel, .demo-calendar-panel { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
    .demo-modal-content { width: 95%; max-height: 95vh; }
    .demo-modal-body { padding: 16px; }
    .calendar-day { font-size: 12px; }
}
