/* ============================================
   Caralo AI - Landing Page Styles
   Modern, Clean, Professional
   ============================================ */

/* CSS Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    
    --bg-dark: #0a0a0f;
    --bg-card: #111118;
    --bg-card-hover: #1a1a24;
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-text: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 0;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    min-width: 0;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-nav {
    padding: 12px 24px;
    font-size: 15px;
    background: var(--gradient-primary);
    color: #ffffff !important;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transition: var(--transition);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.5);
    color: #ffffff !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    padding-right: 8px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    font-size: 28px;
}

.logo-img {
    width: auto;
    height: 70px;
    object-fit: contain;
    display: block;
}

.logo-icon.logo-img {
    height: 28px;
}

.logo-fallback-hide {
    display: none !important;
}

.logo-highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 101;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: rgb(10, 10, 15);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 80px 20px 40px;
    display: none;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
    display: flex;
}

body.menu-open .navbar {
    z-index: 1001;
}

body.menu-open .mobile-menu-btn {
    position: relative;
    z-index: 1002;
}

.mobile-nav a {
    font-size: 18px;
    color: var(--text-primary);
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a:active {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    color: var(--primary-light);
}

.mobile-nav .btn-nav {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: var(--gradient-glow);
    opacity: 0.6;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: visible;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
    padding: 24px 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    overflow: visible;
    min-height: 600px;
}

.phone-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a24 0%, #0f0f17 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 0 0 2px rgba(255,255,255,0.1),
        0 0 0 4px rgba(99, 102, 241, 0.1),
        0 50px 100px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.05);
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f0f17 0%, #1a1a24 100%);
    border-radius: 32px;
    overflow: hidden;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.call-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 20px;
    overflow: hidden;
    position: relative;
}

.caller-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5); }
    50% { box-shadow: 0 0 0 20px rgba(99, 102, 241, 0); }
}

.caller-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
    text-align: center;
    white-space: nowrap;
}

.call-status {
    font-size: 13px;
    color: #10b981;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 500;
}

.call-timer {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.call-transcript {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    margin-bottom: 12px;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.3) transparent;
}

.call-transcript::-webkit-scrollbar {
    width: 4px;
}

.call-transcript::-webkit-scrollbar-track {
    background: transparent;
}

.call-transcript::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 2px;
}

.message {
    padding: 10px 12px;
    border-radius: 16px;
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 10px;
    animation: fadeIn 0.5s ease;
    max-width: 85%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.message.ai {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    align-self: flex-start;
    margin-right: auto;
    margin-left: 0;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.message.customer {
    background: rgba(255,255,255,0.08);
    color: var(--text-primary);
    align-self: flex-end;
    margin-left: auto;
    margin-right: 0;
    border-bottom-right-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.message .speaker {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    font-size: 9px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.call-controls {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.control-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.1);
}

.control-btn.end {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.control-btn.end:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.5);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.floating-card .card-icon {
    font-size: 24px;
}

.floating-card .card-title {
    font-size: 12px;
    color: var(--text-muted);
}

.floating-card .card-value {
    font-size: 14px;
    font-weight: 600;
}

.card-1 {
    top: 80px;
    right: 40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 120px;
    left: 20px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 60px;
    right: 20px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Integration Logos - Right Side of Phone */
.integration-logos-right {
    position: absolute;
    top: 50%;
    left: calc(50% + 280px);
    transform: translateY(-50%);
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
    width: 100px;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible;
}

/* Flow Arrow - Shows data flowing from CRM to phone */
.flow-arrow {
    position: absolute;
    left: -80px;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.flow-arrow-svg {
    width: 100%;
    height: 100%;
}

.flow-path {
    stroke-dasharray: 8, 4;
    animation: flow-dash 2s linear infinite;
}

@keyframes flow-dash {
    to {
        stroke-dashoffset: -12;
    }
}

.integration-logo-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px 10px 4px;
    background: rgba(26, 26, 36, 1);
    border: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(12px);
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 72px;
    overflow: visible;
    position: relative;
}

/* Data flow indicator - shows phone numbers flowing from CRM to phone */
.integration-logo-item::after {
    content: '📞';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0;
    animation: data-flow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(99, 102, 241, 0.8));
    z-index: 2;
}

.integration-logo-item:nth-child(2)::after { animation-delay: 0s; }
.integration-logo-item:nth-child(3)::after { animation-delay: 0.4s; }
.integration-logo-item:nth-child(4)::after { animation-delay: 0.8s; }
.integration-logo-item:nth-child(5)::after { animation-delay: 1.2s; }
.integration-logo-item:nth-child(6)::after { animation-delay: 1.6s; }
.integration-logo-item:nth-child(7)::after { animation-delay: 2s; }
.integration-logo-item:nth-child(8)::after { animation-delay: 2.4s; }
.integration-logo-item:nth-child(9)::after { animation-delay: 2.8s; }
.integration-logo-item:nth-child(10)::after { animation-delay: 3.2s; }

@keyframes data-flow {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(0) scale(0.8);
    }
    15% {
        opacity: 1;
        transform: translateY(-50%) translateX(-10px) scale(1);
    }
    85% {
        opacity: 1;
        transform: translateY(-50%) translateX(-70px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(-80px) scale(0.8);
    }
}

.integration-logo-item:hover {
    border-color: var(--primary);
    transform: translateX(-8px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    background: var(--bg-card-hover);
}

.integration-logo-item:hover::after {
    animation-duration: 2s;
}

.logo-container {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px;
    overflow: visible;
    position: relative;
}

.logo-container.logo-pulse {
    animation: logo-pulse 3s ease-in-out infinite;
}

.logo-container.logo-pulse::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #a855f7, #6366f1);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: logo-border-flow 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.integration-logo-item:hover .logo-container.logo-pulse::before {
    opacity: 1;
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0);
    }
}

@keyframes logo-border-flow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.logo-container img,
.logo-container svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.5) contrast(1.4) saturate(1.3);
    transition: var(--transition);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100%;
    max-height: 100%;
    position: relative;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.integration-logo-item:hover .logo-container img,
.integration-logo-item:hover .logo-container svg {
    transform: scale(1.1);
    filter: brightness(1.3);
}

.logo-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1.2;
    padding: 0 2px;
    overflow: visible;
}

.integration-logo-item:hover .logo-label {
    color: var(--text-primary);
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .integration-logos-right {
        left: calc(50% + 260px);
    }
}

@media (max-width: 1200px) {
    .integration-logos-right {
        left: calc(50% + 200px);
        gap: 8px;
        width: 90px;
    }
    
    .integration-logo-item {
        padding: 6px 4px;
    }
    
    .logo-container {
        width: 38px;
        height: 38px;
    }
    
    .logo-label {
        font-size: 9px;
    }
    
    .flow-arrow {
        left: -70px;
        width: 60px;
    }
}

@media (max-width: 1024px) {
    .integration-logos-right {
        display: none !important;
    }
    
    .flow-arrow {
        display: none !important;
    }
}

/* Brands Section */
.brands {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-label {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.brands-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
}

.brand-logo:hover {
    opacity: 1;
    color: var(--text-primary);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Features Grid */
.features {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d14 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: var(--bg-dark);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr 150px;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: var(--transition);
}

.step:hover {
    border-color: var(--primary);
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-secondary);
}

.step-visual {
    display: flex;
    justify-content: center;
}

.step-icon {
    font-size: 48px;
}

/* Dashboard Preview */
.dashboard-preview {
    background: linear-gradient(180deg, #0d0d14 0%, var(--bg-dark) 100%);
}

.dashboard-mockup {
    perspective: 1000px;
}

.dashboard-frame {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotateX(5deg);
    transition: var(--transition);
}

.dashboard-frame:hover {
    transform: rotateX(0);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border-color);
}

.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: var(--text-muted);
}

.dashboard-content {
    display: flex;
    min-height: 400px;
}

.dash-sidebar {
    width: 200px;
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-right: 1px solid var(--border-color);
}

.dash-logo {
    font-weight: 700;
    margin-bottom: 24px;
}

.dash-menu-item {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    cursor: pointer;
}

.dash-menu-item.active {
    background: var(--primary);
    color: white;
}

.dash-main {
    flex: 1;
    padding: 24px;
}

.dash-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.dash-card {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.dash-card-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.dash-card-value {
    font-size: 28px;
    font-weight: 700;
}

.dash-chart {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    height: 200px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    gap: 16px;
}

.chart-bars .bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 8px 8px 0 0;
    transition: var(--transition);
}

.chart-bars .bar:hover {
    opacity: 0.8;
}

/* Pricing */
.pricing {
    background: var(--bg-dark);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, var(--bg-card) 100%);
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .currency {
    font-size: 24px;
    color: var(--text-muted);
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
}

.price .period {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
}

/* CTA Section */
.cta {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d14 100%);
    padding: 100px 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-form input {
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        height: 450px;
        min-height: 450px;
        position: relative;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        margin: 0 auto 32px;
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 260px;
        height: 520px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }
    
    .phone-screen {
        padding: 0;
    }
    
    .call-interface {
        padding: 20px 14px 16px;
    }
    
    .caller-avatar {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .caller-name {
        font-size: 20px;
    }
    
    .call-status {
        font-size: 12px;
    }
    
    .call-timer {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .message {
        font-size: 10px;
        padding: 8px 10px;
        max-width: 90%;
    }
    
    .call-controls {
        gap: 12px;
        padding-top: 12px;
    }
    
    .control-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .integration-logos-right {
        left: calc(50% + 200px);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .auto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step {
        grid-template-columns: 80px 1fr 100px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }
    
    .hero {
        min-height: auto;
        /* Alttaki sabit Vapi butonuyla çakışmaması için alt padding artırıldı */
        padding: 80px 0 140px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-visual {
        order: 2;
        height: 350px;
        min-height: 350px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-description {
        max-width: 100%;
        margin: 0 auto 24px;
        font-size: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 24px;
        margin-bottom: 32px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        box-sizing: border-box;
    }
    
    .hero-cta .btn {
        display: flex;
        width: 100%;
        max-width: 320px;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 14px 24px;
        min-height: 48px;
        box-sizing: border-box;
    }
    .hero-cta .btn span,
    .hero-cta .btn svg {
        flex-shrink: 0;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 12px;
        margin-top: 24px;
        padding: 16px 0 32px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        position: relative;
        z-index: 10;
    }
    
    .stat {
        padding: 8px 12px;
        flex: 0 1 auto;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 22px;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .stat-divider {
        display: block;
        height: 25px;
        width: 1px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }
    
    .phone-screen {
        padding: 0;
    }
    
    .call-interface {
        padding: 16px 12px 14px;
    }
    
    .caller-avatar {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .caller-name {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .call-status {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .call-timer {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .call-transcript {
        margin-bottom: 10px;
    }
    
    .message {
        font-size: 10px;
        padding: 8px 10px;
        margin-bottom: 8px;
        max-width: 92%;
    }
    
    .message .speaker {
        font-size: 8px;
        margin-bottom: 3px;
    }
    
    .call-controls {
        gap: 10px;
        padding-top: 10px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        height: auto;
        padding-bottom: 24px;
        gap: 0;
    }
    
    .phone-mockup {
        flex-shrink: 0;
        order: 1;
    }
    
    .integration-logos-right {
        display: flex !important;
        position: static;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0 8px;
        gap: 8px;
        min-height: 0;
        order: -1;
        position: relative;
    }
    
    .integration-logos-right::before {
        content: '';
        display: block;
        width: 2px;
        height: 36px;
        flex-basis: 100%;
        margin: 12px auto 0;
        background: repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.35) 0px,
            rgba(255, 255, 255, 0.35) 3px,
            transparent 3px,
            transparent 8px
        );
        background-size: 2px 11px;
        border-radius: 0;
        animation: mobile-flow-dots 1.5s linear infinite;
    }
    
    .integration-logos-right::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        flex-basis: 100%;
        margin: 0 auto 14px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid rgba(255, 255, 255, 0.4);
    }
    
    @keyframes mobile-flow-dots {
        0% { background-position: 0 0; }
        100% { background-position: 0 11px; }
    }
    
    .integration-logos-right .flow-arrow {
        display: none !important;
    }
    
    .integration-logo-item {
        width: 52px;
        min-height: 52px;
        padding: 6px 4px;
        flex: 0 0 auto;
    }
    
    .integration-logo-item::after {
        display: none;
    }
    
    .logo-container {
        width: 32px;
        height: 32px;
    }
    
    .logo-label {
        font-size: 8px;
    }
    
    .flow-arrow {
        display: none !important;
    }
    
    .floating-card {
        display: flex !important;
        position: static;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin-top: 12px;
        animation: none;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        order: 2;
    }
    
    .floating-card .card-icon {
        font-size: 20px;
    }
    
    .floating-card .card-title {
        font-size: 11px;
    }
    
    .floating-card .card-value {
        font-size: 13px;
    }
    
    .floating-card.card-1,
    .floating-card.card-2,
    .floating-card.card-3 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 20px;
        gap: 20px;
    }
    
    .step-number {
        font-size: 40px;
        order: -1;
    }
    
    .step-visual {
        order: -2;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 24px;
    }
    
    .price .amount {
        font-size: 36px;
    }
    
    .auto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .auto-card {
        padding: 24px 20px;
    }
    
    .auto-icon {
        font-size: 40px;
    }
    
    .dashboard-preview {
        padding: 40px 0;
    }
    
    .dashboard-frame {
        transform: none;
    }
    
    .dashboard-content {
        flex-direction: column;
    }
    
    .dash-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        gap: 30px;
        flex-wrap: wrap;
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .brands {
        padding: 40px 0;
    }
    
    .brands-logos {
        gap: 24px;
    }
    
    .brand-logo {
        font-size: 16px;
    }
}

/* ============================================
   DEMO CALL WIDGET
   ============================================ */

.demo-call-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.demo-call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    transition: var(--transition);
    animation: pulse-glow 2s infinite;
}

.demo-call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    }
    50% {
        box-shadow: 0 10px 60px rgba(99, 102, 241, 0.6);
    }
}

.call-icon {
    font-size: 20px;
}

.demo-call-modal {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.demo-call-modal.hidden {
    display: none;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 16px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-content {
    padding: 24px;
}

.call-status {
    text-align: center;
    padding: 30px 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
}

.status-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.status-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.modal-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 15px;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.hidden {
    display: none !important;
}

.demo-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    padding: 12px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Automotive Theme Enhancement */
.hero-badge {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Automotive Focus Section */
.automotive-focus {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(99, 102, 241, 0.05) 50%, var(--bg-dark) 100%);
}

.auto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.auto-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.auto-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.auto-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.auto-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.auto-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .auto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero {
        /* Küçük ekranlarda da alt tarafta ekstra boşluk bırak */
        padding: 70px 0 140px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .hero-stats {
        gap: 10px;
        margin-top: 20px;
        padding: 12px 0 28px;
        justify-content: center;
        position: relative;
        z-index: 10;
    }
    
    .stat {
        min-width: 80px;
        padding: 6px 8px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .stat-divider {
        height: 20px;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .caller-avatar {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .caller-name {
        font-size: 18px;
    }
    
    .call-status {
        font-size: 11px;
    }
    
    .call-timer {
        font-size: 14px;
    }
    
    .message {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .auto-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .price .amount {
        font-size: 32px;
    }
    
    .step {
        padding: 20px 16px;
    }
    
    .step-number {
        font-size: 36px;
    }
    
    .step-content h3 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 20px 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .phone-mockup {
        width: 160px;
        height: 320px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .price .amount {
        font-size: 28px;
    }
    
    .step-number {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .demo-call-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .demo-call-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .demo-call-modal {
        width: calc(100vw - 40px);
        right: 0;
    }
}

/* Vapi Button Custom Styling - Landing Page Theme */
/* Target Vapi SDK button container */
body > div[style*="position: fixed"][style*="bottom"][style*="right"],
body > div[style*="position: fixed"][style*="bottom-right"] {
    filter: drop-shadow(0 8px 24px rgba(99, 102, 241, 0.4)) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 9999 !important;
    bottom: 120px !important; /* Move up to avoid overlap with hero-stats */
    right: 30px !important;
}

@media (max-width: 768px) {
    body > div[style*="position: fixed"][style*="bottom"][style*="right"],
    body > div[style*="position: fixed"][style*="bottom-right"] {
        bottom: 100px !important;
        right: 20px !important;
    }
}

body > div[style*="position: fixed"][style*="bottom"][style*="right"]:hover,
body > div[style*="position: fixed"][style*="bottom-right"]:hover {
    filter: drop-shadow(0 12px 32px rgba(99, 102, 241, 0.6)) !important;
    transform: scale(1.05) !important;
}

/* Vapi Button Pill Enhancement - Gradient Background */
body > div[style*="position: fixed"][style*="bottom"] button,
body > div[style*="position: fixed"][style*="bottom"] > div button,
body > div[style*="position: fixed"][style*="bottom"] > div > button {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4), 0 0 0 1px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    animation: pulse-glow-button 2s ease-in-out infinite !important;
    color: white !important;
    font-weight: 600 !important;
}

body > div[style*="position: fixed"][style*="bottom"] button:hover,
body > div[style*="position: fixed"][style*="bottom"] > div button:hover,
body > div[style*="position: fixed"][style*="bottom"] > div > button:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%) !important;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.6), 0 0 0 1px rgba(139, 92, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) scale(1.02) !important;
}

body > div[style*="position: fixed"][style*="bottom"] button:active,
body > div[style*="position: fixed"][style*="bottom"] > div button:active,
body > div[style*="position: fixed"][style*="bottom"] > div > button:active {
    transform: translateY(0) scale(0.98) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important;
}

@keyframes pulse-glow-button {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4), 0 0 0 0 rgba(99, 102, 241, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4), 0 0 0 8px rgba(99, 102, 241, 0), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

/* ============================================
   DEMO BOOKING MODAL
   ============================================ */

.demo-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.demo-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.demo-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.demo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: var(--transition);
}

.demo-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.demo-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    overflow-y: auto;
    max-height: calc(90vh - 20px);
}

/* Left Panel: Demo Info */
.demo-info-panel {
    padding: 40px;
    background: rgba(99, 102, 241, 0.05);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.demo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-logo {
    font-size: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
}

.demo-brand-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.demo-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
}

.demo-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.demo-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.demo-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.demo-detail-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Middle Panel: Calendar */
.demo-calendar-panel {
    padding: 40px;
    background: var(--bg-dark);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.calendar-nav-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.calendar-month-year {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.calendar-weekdays > div {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: white;
    color: var(--bg-dark);
    border-color: white;
    font-weight: 600;
}

.calendar-day.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.calendar-day.selected.today::after {
    background: var(--bg-dark);
}

/* Right Panel: Time & Form */
.demo-form-panel {
    padding: 40px;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}

.selected-date-info {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.time-format-toggle {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 8px;
}

.time-toggle-btn {
    flex: 1;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.time-toggle-btn.active {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    font-weight: 600;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.no-date-selected {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.time-slot {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    transition: var(--transition);
}

.time-slot:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}

.time-slot.selected {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    color: var(--primary-light);
    font-weight: 600;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.add-guest-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.add-guest-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--text-primary);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.form-disclaimer a {
    color: var(--primary-light);
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-back {
    flex: 1;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-confirm {
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Demo Modal */
@media (max-width: 1024px) {
    .demo-modal-body {
        grid-template-columns: 1fr;
        max-height: calc(90vh - 20px);
    }
    
    .demo-info-panel,
    .demo-calendar-panel {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .demo-info-panel {
        padding: 30px;
    }
    
    .demo-calendar-panel {
        padding: 30px;
    }
    
    .demo-form-panel {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .demo-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .demo-info-panel,
    .demo-calendar-panel,
    .demo-form-panel {
        padding: 24px;
    }
    
    .demo-title {
        font-size: 24px;
    }
    
    .calendar-days {
        gap: 4px;
    }
    
    .calendar-day {
        font-size: 12px;
    }
}

/* ============================================
   MOBILE RESPONSIVENESS FIXES
   iPhone SE → Pro Max, Android small & large
   No desktop/design changes – fit & scale only
   ============================================ */

/* Prevent horizontal scroll globally */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Container: safe padding on all mobile */
@media (max-width: 768px) {
    .container,
    .nav-container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
}

@media (max-width: 390px) {
    .container,
    .nav-container {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }
}

/* Nav: logo and menu fit, no overflow */
@media (max-width: 768px) {
    .logo {
        font-size: clamp(18px, 5vw, 20px);
        min-width: 0;
    }
    .logo-icon {
        font-size: clamp(22px, 5.5vw, 28px);
    }
    .logo .logo-img {
        height: clamp(44px, 12vw, 52px);
    }
    .logo-icon.logo-img {
        height: clamp(22px, 5.5vw, 28px);
    }
    .logo-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }
}

/* Hero: text wraps, no overflow */
.hero-title,
.hero-description,
.section-title,
.section-description,
.cta-content h2,
.cta-content p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-content {
    max-width: 100%;
    min-width: 0;
}

.hero-badge {
    flex-wrap: wrap;
    max-width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-badge span:last-child {
        font-size: clamp(11px, 2.8vw, 12px);
    }
}

/* Hero stats: fit on one row or wrap without overflow */
@media (max-width: 768px) {
    .hero-stats {
        gap: 8px;
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }
    .stat {
        min-width: 0;
        flex: 0 1 auto;
        padding: 6px 8px;
    }
    .stat-number {
        font-size: clamp(18px, 4.5vw, 22px);
    }
    .stat-label {
        font-size: clamp(10px, 2.5vw, 11px);
    }
    .stat-divider {
        height: 20px;
    }
}

@media (max-width: 390px) {
    .hero-stats {
        gap: 4px;
    }
    .stat {
        padding: 4px 6px;
        min-width: 70px;
    }
    .stat-number {
        font-size: 16px;
    }
    .stat-label {
        font-size: 9px;
    }
}

/* Buttons: full width where stacked, min touch target */
@media (max-width: 768px) {
    .btn,
    .btn-large,
    .btn-nav {
        min-height: 44px;
        padding: 12px 20px;
        font-size: clamp(14px, 3.5vw, 16px);
    }
    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* CTA form: inputs scale, no overflow */
.cta-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.cta-form input,
.cta-form button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .cta-form input {
        padding: 14px 16px;
        font-size: 16px; /* prevents zoom on iOS */
    }
}

/* Features grid: single column on mobile, cards don't overflow */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .feature-card {
        min-width: 0;
        padding: 20px 16px;
    }
    .feature-title,
    .feature-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Steps: single column, content wraps */
@media (max-width: 768px) {
    .step {
        min-width: 0;
        padding: 20px 16px;
    }
    .step-content h3,
    .step-content p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Automotive grid: single column on small */
@media (max-width: 768px) {
    .auto-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .auto-card {
        min-width: 0;
        padding: 20px 16px;
    }
    .auto-card h3,
    .auto-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Dashboard preview: stack cards, no overflow */
@media (max-width: 768px) {
    .dashboard-content {
        min-height: auto;
    }
    .dash-sidebar {
        min-width: 0;
    }
    .dash-main {
        min-width: 0;
        padding: 16px;
    }
    .dash-cards {
        flex-wrap: wrap;
        gap: 12px;
    }
    .dash-card {
        flex: 1 1 100%;
        min-width: 0;
        padding: 16px;
    }
    .dash-card-value {
        font-size: clamp(20px, 5vw, 28px);
    }
    .dashboard-url {
        font-size: 11px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .dash-chart {
        min-height: 120px;
    }
}

/* Footer: stack, no overflow */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 32px;
        min-width: 0;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-brand p {
        word-wrap: break-word;
    }
    .footer-links {
        gap: 24px;
        flex-wrap: wrap;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

/* Phone mockup: scale down on very small screens */
@media (max-width: 390px) {
    .hero-visual {
        height: auto;
        min-height: auto;
    }
    .phone-mockup {
        width: 150px;
        height: 300px;
        border-radius: 28px;
        padding: 8px;
    }
    .phone-screen {
        border-radius: 22px;
    }
    .caller-avatar {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    .caller-name {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    .message {
        font-size: 9px;
        padding: 6px 8px;
    }
    .control-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Demo modal: full-bleed on small, scrollable, no overflow */
@media (max-width: 768px) {
    .demo-modal-content {
        width: 100%;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
    }
    .demo-modal-body {
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .demo-modal-close {
        top: max(12px, env(safe-area-inset-top));
        right: max(12px, env(safe-area-inset-right));
    }
}

@media (max-width: 480px) {
    .demo-info-panel,
    .demo-calendar-panel,
    .demo-form-panel {
        padding: 16px;
    }
    .demo-title {
        font-size: 20px;
    }
    .demo-description {
        font-size: 14px;
    }
    .calendar-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    .calendar-month-year {
        font-size: 16px;
    }
    .calendar-weekdays > div {
        font-size: 10px;
        padding: 4px 0;
    }
    .calendar-days {
        gap: 2px;
    }
    .calendar-day {
        font-size: 11px;
        min-height: 32px;
        aspect-ratio: 1;
    }
    .selected-date-info {
        font-size: 14px;
    }
    .time-slot {
        padding: 10px 12px;
        font-size: 13px;
    }
    .form-group input {
        padding: 12px 14px;
        font-size: 16px; /* prevents zoom on iOS */
    }
    .btn-back,
    .btn-confirm {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
    }
}

@media (max-width: 390px) {
    .demo-info-panel,
    .demo-calendar-panel,
    .demo-form-panel {
        padding: 12px;
    }
    .demo-title {
        font-size: 18px;
    }
    .demo-logo {
        font-size: 28px;
        width: 40px;
        height: 40px;
    }
    .calendar-day {
        font-size: 10px;
        min-height: 28px;
    }
}

/* Section padding: consistent on mobile */
@media (max-width: 768px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-header {
        margin-bottom: 32px;
        padding: 0 8px;
    }
    .section-title {
        font-size: clamp(22px, 5.5vw, 28px);
    }
    .section-description {
        font-size: 15px;
    }
}

@media (max-width: 390px) {
    section {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .section-title {
        font-size: 20px;
    }
}

/* Pricing cards: full width, no overflow */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .pricing-card {
        min-width: 0;
    }
    .price .amount {
        font-size: clamp(28px, 7vw, 36px);
    }
}

/* Mobile nav: safe area and scroll */
.mobile-nav {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: max(40px, env(safe-area-inset-bottom));
}

/* Vapi / fixed button: avoid overlap with content */
@media (max-width: 768px) {
    body > div[style*="position: fixed"][style*="bottom"][style*="right"],
    body > div[style*="position: fixed"][style*="bottom-right"] {
        bottom: max(80px, env(safe-area-inset-bottom)) !important;
        right: max(16px, env(safe-area-inset-right)) !important;
    }
}
