/* =========================================
   LUVIXA TECHNOLOGIES V2 | PREMIUM DESIGN SYSTEM
   ========================================= */

    :root {
    /* Colors - Million Dollar SaaS Palette */
    --bg-dark: #0B0F19;
    --bg-alt: #111827;
    --bg-card: rgba(17, 24, 39, 0.6);
    --bg-card-hover: rgba(31, 41, 55, 0.8);
    
    --text-primary: #E5E7EB;
    --text-secondary: #9CA3AF;
    
    /* Brand Accents */
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-cyan: #22D3EE;
    
    /* System Colors */
    --border-color: #1F2937;
    --glass-border: 1px solid var(--border-color);
    --glass-border-hover: 1px solid rgba(59, 130, 246, 0.4);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --gradient-text: linear-gradient(to right, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
    
    /* Layout */
    --container-padding: 2.5rem;
    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
    
    /* Effects */
    --glass-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
    --blur: blur(20px);
    
    /* Transitions */
    --trans-fast: 0.15s ease;
    --trans-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   BASE STYLES
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* For Custom Cursor */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-blue);
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(124, 58, 237, 0.5); /* Purple hint */
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
    z-index: 9998;
}

/* Cursor Hover State */
body.cursor-hover .cursor-ring {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-blue);
}

/* Base Typo */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--trans-fast);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.alt-bg {
    background-color: var(--bg-alt);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.1rem;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
}

.animated-gradient {
    animation: flowGradient 5s linear infinite;
}

@keyframes flowGradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-ring {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-hover .cursor-dot {
    width: 0; height: 0;
}

.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-blue);
}

@media (max-width: 768px) {
    * { cursor: auto; }
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    gap: 0.5rem;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-purple);
    color: white;
}
.btn-outline:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn-large { padding: 1.2rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; padding: 1rem; font-size: 1.1rem; }

/* Glass Cards & Utility */
.glass-card, .glass {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: var(--glass-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before, .glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.glass-card:hover, .glass:hover {
    background: var(--bg-card-hover);
    border: var(--glass-border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(59, 130, 246, 0.15);
}

/* =========================================
   NAVBAR
   ========================================= */

.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-main {
    font-size: 1.95rem;
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1;
}

.logo-sub {
    font-size: 1.15rem;
    font-weight: 200;
    color: var(--text-secondary);
    letter-spacing: -0.5px;
    line-height: 1;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
}

.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem;
    gap: 2rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.active { right: 0; }
.mobile-menu a { font-size: 1.2rem; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    text-align: center;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center 30%, rgba(124, 58, 237, 0.15) 0%, var(--bg-dark) 60%);
}

.grid-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    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: 50px 50px;
    z-index: 1;
    mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
    transition: transform 0.2s ease-out;
}

.orb-1 {
    width: 500px; height: 500px;
    background: var(--accent-purple);
    top: -150px; right: -150px;
}
.orb-2 {
    width: 400px; height: 400px;
    background: var(--accent-blue);
    bottom: -100px; left: -100px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.4);
    color: var(--accent-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    display: inline-block;
    color: var(--accent-blue);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-dark);
    -webkit-text-fill-color: white; /* overlay briefly white */
}
.glitch-text::before {
    left: 2px; text-shadow: -1px 0 var(--accent-purple);
    clip: rect(24px, 550px, 90px, 0); animation: glitch-anim 3s infinite linear alternate-reverse;
}
.glitch-text::after {
    left: -2px; text-shadow: -1px 0 var(--accent-blue);
    clip: rect(85px, 550px, 140px, 0); animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(21px, 9999px, 91px, 0); opacity: 1; }
    5% { opacity: 0; }
    95% { opacity: 0; }
    100% { clip: rect(82px, 9999px, 15px, 0); opacity: 1; }
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 650px;
    margin-bottom: 3rem;
    color: #b0b5c9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

/* 3D Mockup */
.hero-dashboard-mockup {
    width: 100%;
    max-width: 800px;
    background: rgba(15, 15, 20, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(124, 58, 237, 0.2);
    /* 3D Perspective Base */
    transform: perspective(1200px) rotateX(15deg) translateY(0);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-dashboard-mockup:hover {
    transform: perspective(1200px) rotateX(0deg) translateY(-10px);
}

.mockup-header {
    background: #111;
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot { 
    width: 10px; height: 10px; border-radius: 50%; 
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.dot:nth-child(1) { background: #3B82F6; }
.dot:nth-child(2) { background: #8B5CF6; }
.dot:nth-child(3) { background: #22D3EE; }

.mockup-body {
    padding: 2rem;
    text-align: left;
    height: 250px;
}

.chat-msg {
    display: flex; gap: 1rem; margin-bottom: 1rem;
    opacity: 0; transform: translateY(10px);
    animation: fadeUpIn 0.5s ease forwards;
}
.chat-msg > span {
    width: 35px; height: 35px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0; color: white;
}
.chat-msg > div {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem; border-radius: 12px; border-top-left-radius: 2px;
}

.chat-msg.ai > span { background: var(--gradient-primary); }
.chat-msg:nth-child(1) { animation-delay: 0.5s; }
.chat-msg:nth-child(2) { animation-delay: 1.5s; }

.typing .dots span { animation: typing 1s infinite alternate; }
.typing .dots span:nth-child(2) { animation-delay: 0.2s; }
.typing .dots span:nth-child(3) { animation-delay: 0.4s; }


/* =========================================
   STATS BAR SECTION
   ========================================= */

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10,10,15,0.9), rgba(124, 58, 237, 0.05));
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 4rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.stat-item p {
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin: 0;
}

/* =========================================
   TECH STACK MARQUEE
   ========================================= */

.tech-section {
    padding: 3rem 0;
    overflow: hidden;
}

.tech-subtitle {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.marquee-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
    gap: 4rem;
    padding: 0 2rem;
}

.tech-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.tech-logo i { font-size: 2rem; }
.tech-logo:hover { color: white; }

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

/* =========================================
   PROBLEM SECTION
   ========================================= */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.problem-card {
    padding: 2.5rem 2rem;
}

.icon-box {
    width: 55px; height: 55px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin-bottom: 1.5rem;
}

.icon-box.themed {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

/* =========================================
   SOLUTION / DIAGRAM
   ========================================= */

.solution-content {
    display: flex; align-items: center; gap: 4rem;
}

.solution-text { flex: 1; }
.solution-text h2 { font-size: 2.8rem; }

.solution-list li {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.2rem; font-size: 1.1rem;
    color: #ddd;
}
.solution-list li i {
    color: var(--accent-blue); font-size: 1.5rem; margin-top: 0.1rem;
}

.solution-visual {
    flex: 1; display: flex; justify-content: center; position: relative;
}

.machine-diagram {
    width: 400px; height: 400px; position: relative;
    display: flex; align-items: center; justify-content: center;
}

.machine-pulse {
    position: absolute; width: 180px; height: 180px;
    background: var(--accent-purple); border-radius: 50%;
    filter: blur(60px); animation: pulse 3s infinite;
}

.main-icon {
    font-size: 7rem; color: var(--accent-blue); z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.orbital-rings {
    position: absolute; width: 320px; height: 320px;
    border: 1px dashed rgba(255, 255, 255, 0.2); border-radius: 50%;
    animation: spin 20s linear infinite;
}

.float-icon {
    position: absolute; width: 60px; height: 60px;
    background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: white; box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.pos-1 { top: 0; left: 50%; transform: translateX(-50%); animation: float2 4s infinite alternate; }
.pos-2 { bottom: 15%; right: 0; animation: float2 5s infinite alternate-reverse; }
.pos-3 { bottom: 15%; left: 0; animation: float2 4.5s infinite alternate; }

/* =========================================
   SERVICES SECTION
   ========================================= */

.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
}

.service-card { padding: 3rem 2.5rem; }

.service-card .icon-wrapper {
    font-size: 3.5rem; color: var(--accent-blue); margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0,212,255,0.3));
}

.service-features li {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 0.8rem; color: var(--text-secondary);
}
.service-features li i { color: var(--accent-purple); font-weight: bold; }

/* JS Tilt Class */
.tilt-card { transform-style: preserve-3d; perspective: 1000px; }

/* =========================================
   CASE STUDIES TEASER
   ========================================= */

.case-studies-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;
}

.case-card {
    padding: 2.5rem 2rem; border-left: 4px solid var(--accent-purple);
}

.case-industry {
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--accent-blue); margin-bottom: 1.5rem; font-weight: 700;
}

.case-meta div { margin-bottom: 1rem; }
.case-meta span {
    display: block; font-size: 0.8rem; font-family: 'Space Grotesk', sans-serif;
    color: #666; text-transform: uppercase; margin-bottom: 0.2rem;
}

/* =========================================
   PROCESS / HOW IT WORKS
   ========================================= */

.process-steps {
    display: flex; justify-content: space-between; position: relative; padding-top: 2rem;
}

.step-line {
    position: absolute; top: 45px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent-blue), transparent);
    z-index: 1; opacity: 0.5;
}

.process-step {
    flex: 1; text-align: center; position: relative; z-index: 2; padding: 0 1.5rem;
}

.step-number {
    width: 60px; height: 60px; background: var(--bg-dark);
    border: 2px solid var(--accent-blue); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif;
    margin: 0 auto 1.5rem; box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* =========================================
   FOUNDER SECTION
   ========================================= */

.founder-section {
    padding: 4rem 0;
}

.founder-card {
    display: flex; align-items: center; gap: 3rem; padding: 4rem; max-width: 900px; margin: 0 auto;
}

.founder-image {
    width: 150px; height: 150px;
    border-radius: 50%; background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center; font-size: 5rem; color: white;
    flex-shrink: 0; box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.founder-content h3 { font-size: 2rem; }
.founder-content p { font-size: 1.1rem; font-style: italic; color: #ddd; }
.founder-name strong { display: block; color: var(--accent-blue); font-size: 1.1rem; }
.founder-name span { color: #666; font-size: 0.9rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonial-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem;
}

.testimonial-card { padding: 3rem 2.5rem; display: flex; flex-direction: column;}

.rating { color: #ffbd2e; margin-bottom: 1.5rem; font-size: 1.2rem;}

.quote { font-style: italic; font-size: 1.1rem; margin-bottom: 2rem; color: #eee; flex-grow: 1;}

.client-info { display: flex; align-items: center; gap: 1.2rem; }

.client-info .avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

.client-company { color: var(--accent-blue); font-size: 0.85rem; margin-top: 0.2rem; display: flex; align-items: center; gap: 0.3rem;}

/* =========================================
   PRICING
   ========================================= */

.pricing-card { 
    padding: 5rem 3rem 4rem; 
    text-align: center; 
    position: relative;
    overflow: visible !important; /* Prevent badge clipping */
}
.popular-badge {
    position: absolute; 
    top: -18px; 
    left: 50%; 
    transform: translateX(-50%);
    background: var(--gradient-primary); 
    padding: 0.6rem 2rem;
    border-radius: 50px; 
    font-size: 0.85rem; 
    font-weight: 800; 
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4), 0 0 20px rgba(59, 130, 246, 0.2);
    z-index: 10;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-card h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.price { font-size: 3rem; font-weight: 800; margin-bottom: 1.5rem; color: white; font-family: 'Space Grotesk', sans-serif;}
.period { font-size: 1.2rem; color: var(--accent-purple); font-weight: 500;}
.pricing-card hr { border: none; border-top: 1px solid rgba(255, 255, 255, 0.1); margin: 2rem 0; }
.pricing-features { text-align: left; }
.pricing-features li { margin-bottom: 1rem; display: flex; gap: 0.8rem; align-items: center; font-size: 1.1rem;}
.pricing-features i { color: var(--accent-blue); font-size: 1.3rem;}

/* =========================================
   FAQ
   ========================================= */

.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm); margin-bottom: 1rem; overflow: hidden;
}
.faq-question {
    padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center;
    cursor: auto; /* Since we hide global cursor */
    font-weight: 600; font-size: 1.1rem; font-family: 'Space Grotesk', sans-serif; transition: var(--trans-fast);
}
.faq-question:hover { background: rgba(255, 255, 255, 0.05); color: var(--accent-blue);}
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--accent-purple);}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 2rem; color: #aaa;}
.faq-item.active .faq-answer { padding-bottom: 1.5rem; }
.faq-answer p { margin: 0; }

/* =========================================
   CONTACT FORM
   ========================================= */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;}
.contact-text h2 { font-size: 3rem; }
.contact-info-list { margin-top: 3rem; }
.contact-info-list li { display: flex; align-items: center; gap: 1rem; font-size: 1.2rem; margin-bottom: 1.5rem;}
.contact-info-list i { font-size: 1.8rem; color: var(--accent-blue); }

.contact-form-wrapper { padding: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; color: #aaa; margin-bottom: 0.5rem; font-family: 'Space Grotesk';}
.form-group input, .form-group textarea {
    width: 100%; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem; border-radius: 8px; color: white; font-family: 'Inter', sans-serif;
    transition: all 0.3s ease; outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-blue); background: rgba(0,212,255,0.05); box-shadow: 0 0 15px rgba(0,212,255,0.2);
}

/* =========================================
   FOOTER
   ========================================= */

.footer { background: #050508; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 6rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { margin-top: 1.5rem; max-width: 300px; color: #888;}
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a {
    width: 45px; height: 45px; background: rgba(255, 255, 255, 0.05); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.social-links a:hover { background: var(--gradient-primary); transform: translateY(-3px); }
.footer-links h3, .footer-newsletter h3 { margin-bottom: 1.5rem; font-size: 1.2rem; color: white;}
.footer-links ul li { margin-bottom: 0.8rem; }
.footer-links ul li a { color: #888; }
.footer-links ul li a:hover { color: var(--accent-blue); padding-left: 5px; }

.newsletter-form { display: flex; margin-top: 1rem; }
.newsletter-form input {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    padding: 0.8rem 1rem; color: white; border-radius: 8px 0 0 8px; width: 100%; outline: none;
}
.newsletter-form button { border-radius: 0 8px 8px 0; padding: 0 1.5rem; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { margin: 0; font-size: 0.95rem; color: #888;}
.legal-text { font-size: 0.8rem; opacity: 0.5; margin-top: 0.5rem; }

.floating-wa {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: #25D366; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 2.2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); z-index: 1000;
}
.floating-wa:hover { transform: scale(1.1); background: #1ebe56;}

/* =========================================
   ANIMATIONS & REVEALS
   ========================================= */

@keyframes float2 { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }
@keyframes pulse { 0% { transform: scale(0.9); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(0.9); opacity: 0.6; } }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes fadeUpIn { to { opacity: 1; transform: translateY(0); } }

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* =========================================
   MEDIA QUERIES
   ========================================= */

@media (max-width: 1024px) {
    .solution-content, .contact-grid, .founder-card { flex-direction: column; gap: 3rem;}
    .hero-title { font-size: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: block; }
    .hero-title { font-size: 2.5rem; }
    .process-steps { flex-direction: column; gap: 3rem; }
    .step-line { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .machine-diagram { width: 100%; max-width: 300px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .stats-grid { grid-template-columns: 1fr; }
    .form-group.row { grid-template-columns: 1fr; }
    .stats-cards-grid, .chatbot-types-grid, .industries-grid { grid-template-columns: 1fr; }
    .channels-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   WHY AI CHATBOTS — STATS CARDS
   ========================================= */

.why-chatbots-section {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.04) 0%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.stat-card {
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0,212,255,0.1);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(0,212,255,0.4));
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    line-height: 1;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(0,212,255,0.3);
}

.stat-card .stat-number span {
    font-size: 2rem;
    color: var(--accent-blue);
}

.stat-card .stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =========================================
   CHATBOT TYPES GRID
   ========================================= */

.chatbot-types-section {
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03) 50%, transparent);
}

.chatbot-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.type-card {
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.type-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(124,58,237,0.15);
    border-color: rgba(124, 58, 237, 0.4);
}

.type-icon {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.4));
    transition: transform 0.3s ease;
}

.type-card:hover .type-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-blue);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.type-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
}

.type-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =========================================
   CHANNELS GRID
   ========================================= */

.channels-section {
    background: linear-gradient(135deg, rgba(10,10,15,0.9), rgba(124, 58, 237, 0.05));
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.channel-item {
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.channel-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 15px rgba(0,212,255,0.1);
}

.channel-item > i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0,212,255,0.3));
    transition: transform 0.3s ease;
}

.channel-item:hover > i {
    transform: scale(1.15);
}

.channel-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
}

.channel-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   INDUSTRIES GRID
   ========================================= */

.industries-section {
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.04) 50%, transparent);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.industry-card {
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.industry-card:hover::after { transform: scaleX(1); }

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 15px rgba(124,58,237,0.1);
    border-color: rgba(124, 58, 237, 0.3);
}

.industry-card > i {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(124,58,237,0.3));
}

.industry-card:hover > i {
    color: var(--accent-blue);
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(0,212,255,0.4));
}

.industry-card h4 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
}

.industry-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .chatbot-types-grid { grid-template-columns: repeat(2, 1fr); }
    .channels-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   NEW UPGRADE: HIGH CONVERTING SECTIONS
   ========================================= */

/* Use Cases Section */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.use-case-card {
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
}
.use-case-industry {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.use-case-industry i {
    font-size: 1.25rem;
}
.use-case-card h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-style: italic;
    color: #fff;
}
.use-case-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.flow-item {
    background: rgba(255,255,255,0.03);
    padding: 1.25rem;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid transparent;
}
.flow-item.problem { border-color: var(--accent-purple); }
.flow-item.solution { border-color: var(--accent-blue); }
.flow-item.result { border-color: var(--accent-cyan); }

.flow-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.flow-item.problem .flow-label { color: var(--accent-purple); }
.flow-item.solution .flow-label { color: var(--accent-blue); }
.flow-item.result .flow-label { color: var(--accent-cyan); }

.flow-item p {
    margin: 0;
    font-size: 0.9rem;
}
.flow-arrow {
    text-align: center;
    color: rgba(255,255,255,0.2);
    font-size: 1.25rem;
}
.use-case-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-top: 1.5rem;
}
.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.metric-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Trusted Section */
.trusted-section {
    padding: 4rem 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trusted-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.4);
}
.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    opacity: 0.6;
    margin-bottom: 4rem;
}
.trust-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    filter: grayscale(100%);
    transition: var(--trans-normal);
}
.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.trust-logo i {
    font-size: 1.5rem;
    color: var(--accent-blue);
}
.trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.trust-metric span {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.trust-metric p {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
    color: #fff;
}

/* Enhancements to Testimonials */
.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.impact-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.initial.gradient-initial {
    background: var(--gradient-primary);
    color: white;
}
.client-info h4 { margin-bottom: 0.1rem; }
.client-info span { font-size: 0.8rem; }

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.why-card {
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--trans-normal);
}
.why-card:hover { transform: translateY(-5px); }
.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}
.why-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.why-card p { margin: 0; font-size: 0.95rem; }

/* Lead Magnet Section */
.lead-magnet-section {
    padding: 4rem 0;
}
.lead-magnet-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}
.lead-magnet-box::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    z-index: 0;
}
.lead-magnet-content, .lead-magnet-form {
    position: relative;
    z-index: 1;
}
.lead-magnet-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.lead-magnet-content h2 { font-size: 2.5rem; }
.lead-magnet-list { margin-bottom: 0; }
.lead-magnet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #fff;
}
.lead-magnet-list i {
    color: var(--accent-blue);
    font-size: 1.25rem;
    margin-top: 0.1rem;
}
.audit-form .form-group { margin-bottom: 1.5rem; }
.audit-form input {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-sm);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--trans-fast);
}
.audit-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0,212,255,0.05);
}

/* Booking Section */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
}
.booking-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.booking-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #fff;
}
.booking-list i {
    color: #10b981;
    font-size: 1.5rem;
}
.booking-cta-alt {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.calendly-placeholder {
    background: rgba(0,0,0,0.3);
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: var(--border-radius-md);
    padding: 4rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.calendly-placeholder i {
    font-size: 4rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}
.calendar-note {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.7;
}

/* Contact Form Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}
.contact-info-panel h2 { font-size: 2.8rem; }
.contact-guarantees {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.guarantee-item i {
    font-size: 1.5rem;
    color: var(--accent-blue);
}
.guarantee-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
}
.contact-direct {
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--border-radius-md);
}
.contact-direct h4 { margin-bottom: 1.5rem; }
.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}
.contact-link:last-child { margin-bottom: 0; }
.contact-link i { color: var(--accent-purple); }
.contact-link:hover { color: var(--accent-blue); }

.contact-form-panel {
    padding: 3rem;
    border-radius: var(--border-radius-lg);
}
.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}
.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--trans-fast);
    margin-bottom: 1.5rem;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.05);
}
.btn-full { width: 100%; font-size: 1.1rem; padding: 1rem; justify-content: center; }
.form-note {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta-section { padding: 8rem 0; }
.final-cta-box {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}
.final-cta-orb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    z-index: 0;
}
.final-cta-box h2, .final-cta-box p, .final-cta-box .cta-buttons {
    position: relative;
    z-index: 1;
}
.final-cta-box h2 { font-size: 3.5rem; }
.final-cta-box p { font-size: 1.25rem; max-width: 600px; margin: 0 auto 3rem; }

/* Helpers & Shared */
.section-cta {
    text-align: center;
    margin-top: 4rem;
}
.section-cta-note {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.7;
    margin-bottom: 0;
}
.btn-pulse {
    animation: btnPulse 2s infinite;
}
@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(124, 58, 237, 0); }
    100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}
.form-success {
    text-align: center;
    padding: 3rem 2rem;
}
.form-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}
.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .chatbot-types-grid { grid-template-columns: repeat(2, 1fr); }
    .channels-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .use-cases-grid { grid-template-columns: 1fr; }
    .trust-metrics { grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 2rem;}
    .lead-magnet-box, .booking-wrapper, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .lead-magnet-box, .booking-wrapper { padding: 2rem; }
}

@media (max-width: 768px) {
    .trust-metrics { grid-template-columns: repeat(2, 1fr); gap: 2rem;}
    .form-row, .contact-guarantees { grid-template-columns: 1fr; gap: 0; }
    .contact-guarantees { gap: 1rem; }
    .contact-form-panel { padding: 1.5rem; }
    .final-cta-box h2 { font-size: 2.2rem; }
}
