:root {
    --navbar-height: 86px;
    --bg-dark: #110B24; /* Deep violet-blue from logo */
    --bg-darker: #0A0616;
    --text-main: #FFFFFF;
    --text-muted: #B3ADCC;
    
    --cyan: #00D2FF;
    --mint: #E8209E; /* Hot Pink/Magenta from logo */
    --gradient-primary: linear-gradient(135deg, var(--cyan), #5138FF, var(--mint));
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(20px);
    
    --font-family: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 10px 40px -10px rgba(0,0,0,0.6);
}

/* Typography */
h1, h2, h3, h4 { line-height: 1.1; font-weight: 700; font-family: var(--font-display); letter-spacing: -0.03em; }
p { color: var(--text-muted); font-weight: 400; }
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Interactive Animated Background Engine */
.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -3; /* Be behind everything */
    pointer-events: none;
}
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    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;
    z-index: -2;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
}
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.6;
    animation: expand-drift 20s infinite alternate ease-in-out;
}
.shape-1 {
    width: 40vw; height: 40vw; background: rgba(0, 210, 255, 0.15); top: -10%; left: -10%; animation-duration: 25s;
}
.shape-2 {
    width: 50vw; height: 50vw; background: rgba(232, 32, 158, 0.12); bottom: -10%; right: -15%; animation-duration: 30s; animation-delay: -5s;
}
.shape-3 {
    width: 35vw; height: 35vw; background: rgba(0, 229, 255, 0.1); top: 30%; left: 40%; animation-duration: 20s; animation-delay: -10s;
}
@keyframes expand-drift {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(100px, 80px) scale(1.3) rotate(15deg); }
}

#cursor-glow {
    position: fixed;
    top: -300px;
    left: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: opacity 0.5s ease;
    will-change: top, left; /* Hardware acceleration for fluid movement */
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    transition: width 0.1s ease;
}

/* Scroll Revealing Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: rgba(7, 9, 15, 0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--glass-border); padding: 1rem 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 600; color: var(--text-main); text-decoration: none; }
.logo i { color: var(--cyan); font-size: 2rem; }
.logo strong { font-weight: 800; color: var(--cyan); }
.brand-icon {
    width: auto;
    height: 52px;
    object-fit: contain;
    display: block;
}

.brand-icon-header {
    height: 46px;
    transform: translateY(6px);
}

.brand-icon-footer {
    height: 46px;
    opacity: 0.96;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--cyan); text-shadow: 0 0 10px rgba(0,229,255,0.4); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; text-decoration: none; font-weight: 600; font-family: var(--font-display); letter-spacing: 0.5px; border-radius: 10px; transition: var(--transition); cursor: pointer; border: none; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.95rem; }
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.15rem; border-radius: 14px; }
.btn-primary { background: var(--gradient-primary); color: #FFF; box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 8px 25px rgba(232, 32, 158, 0.3); }
.btn-primary:hover { box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 12px 35px rgba(0, 210, 255, 0.4); transform: translateY(-3px); }
.btn-secondary { background: rgba(255,255,255,0.03); color: var(--text-main); border: 1px solid rgba(255,255,255,0.1); box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05); }
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-glow { animation: glow-pulse-btn 3s infinite alternate; }

@keyframes glow-pulse-btn {
    0% { box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 0 15px rgba(232, 32, 158, 0.3); }
    100% { box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 0 35px rgba(0, 210, 255, 0.6); }
}

/* Dynamic Interactivity Hover Effects */
.btn-hover-effect { position: relative; overflow: hidden; z-index: 1; }
.btn-hover-effect::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255, 255, 255, 0.1); transform: translate(-50%, -50%); border-radius: 50%; transition: width 0.4s ease, height 0.4s ease; z-index: -1; }
.btn-hover-effect:hover::before { width: 300%; padding-top: 300%; }
.float-anim { animation: float 3s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0px); } }

/* Hero Section */
.hero {
    position: relative;
    padding: calc(var(--navbar-height) + clamp(1rem, 2.5vh, 1.75rem)) 0 clamp(1.5rem, 3vh, 2.5rem) 0;
    display: flex;
    align-items: center;
    min-height: 100svh;
}
.hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(1100px, calc(100% - 2rem));
    height: 110px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(17, 11, 36, 0) 0%, rgba(17, 11, 36, 0.35) 58%, rgba(255, 255, 255, 0.04) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0 0 28px 28px;
    opacity: 0.9;
}
.hero-container {
    min-height: calc(100svh - var(--navbar-height) - clamp(2.5rem, 5vh, 4.25rem));
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-bg-glow { position: absolute; top: 20%; left: 50%; transform: translate(-50%, -50%); width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(0,229,255,0.15) 0%, rgba(16,185,129,0.05) 40%, transparent 70%); z-index: -1; pointer-events: none; }
.hero-content { max-width: 840px; margin: 0 auto; text-align: center; }
.badge-pill { display: inline-block; padding: 0.4rem 1rem; background: rgba(0, 229, 255, 0.1); color: var(--cyan); border: 1px solid rgba(0, 229, 255, 0.2); border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.pulse-badge { animation: subtle-pulse 2s infinite; }
@keyframes subtle-pulse { 0% { opacity: 0.8; } 50% { opacity: 1; box-shadow: 0 0 15px rgba(0, 229, 255, 0.4); } 100% { opacity: 0.8; } }
.headline { font-size: 4.5rem; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.headline span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.subheadline { font-size: 1.15rem; margin-bottom: 2rem; color: var(--text-muted); max-width: 710px; margin-inline: auto; }
.hero-fit-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin: 0 auto 2rem auto; max-width: 800px; }
.hero-fit-chip { display: inline-flex; align-items: center; justify-content: center; padding: 0.55rem 0.95rem; border-radius: 999px; border: 1px solid rgba(0, 210, 255, 0.18); background: rgba(255,255,255,0.03); color: var(--text-main); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; z-index: 10; position: relative; margin-bottom: 2rem; }


/* Social Proof */
.social-proof { padding: 2rem 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: rgba(255,255,255,0.01); text-align: center; }
.social-proof p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; font-weight: 600; }
.tech-logos { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.tech-item { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; color: var(--text-muted); font-weight: 500; opacity: 0.7; transition: var(--transition); }
.tech-item i { font-size: 2.5rem; }
.hover-lift { transition: transform 0.3s ease, color 0.3s ease; }
.hover-lift:hover { transform: translateY(-8px) scale(1.05); color: var(--cyan); opacity: 1; }

/* Services Section */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.services { padding: 8rem 0; position: relative; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.service-card { position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gradient-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover::before { transform: scaleX(1); }
.interactive-card { transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.interactive-card:hover { transform: translateY(-12px); box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 25px 60px -12px rgba(0, 210, 255, 0.15); border-color: rgba(232, 32, 158, 0.3); background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(232,32,158,0.05) 100%); }
.card-icon { width: 60px; height: 60px; background: rgba(0, 229, 255, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 2rem; color: var(--cyan); }
.spin-on-hover, .pulse-on-hover { transition: transform 0.5s ease; }
.interactive-card:hover .spin-on-hover { transform: rotate(360deg); }
.interactive-card:hover .pulse-on-hover { animation: quick-pulse 0.5s infinite alternate; }
@keyframes quick-pulse { from { transform: scale(1); } to { transform: scale(1.1); } }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-card p { margin-bottom: 2rem; }
.feature-list { list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.8rem; font-weight: 500; color: var(--text-main); }
.feature-list i { color: var(--mint); font-size: 1.25rem; }

/* How it Works Section */
.how-it-works { padding: 8rem 0; background: var(--bg-darker); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; position: relative; }
.step-item { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hover-scale { transition: transform 0.3s ease; }
.hover-scale:hover { transform: scale(1.05); }
.step-number { width: 60px; height: 60px; border-radius: 50%; background: var(--bg-dark); border: 2px solid var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: var(--cyan); margin-bottom: 1.5rem; transition: var(--transition); }
.gradient-border { border: 2px solid transparent; background-clip: padding-box; position: relative; }
.gradient-border::after { content: ''; position: absolute; inset: -2px; border-radius: 50%; background: var(--gradient-primary); z-index: -1; }
.hover-scale:hover .step-number { box-shadow: 0 0 25px rgba(0, 229, 255, 0.5); background: rgba(0,229,255,0.1); }
.step-content h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

/* FAQ Section */
.faq { padding: 8rem 0; }
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.accordion-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; transition: var(--transition); }
.hover-glow:hover { box-shadow: 0 0 15px rgba(0, 229, 255, 0.15); border-color: rgba(0, 229, 255, 0.3); }
.accordion-header { width: 100%; text-align: left; padding: 1.5rem; background: transparent; border: none; color: var(--text-main); font-size: 1.1rem; font-weight: 600; font-family: var(--font-family); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.accordion-header:hover { background: rgba(255,255,255,0.05); color: var(--cyan); }
.accordion-header i { transition: transform 0.3s ease; }
.accordion-header.active i { transform: rotate(180deg); color: var(--cyan); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-content p { padding: 0 1.5rem 1.5rem 1.5rem; }

/* Footer & CTA */
.footer { position: relative; padding-top: 4rem; }
.footer-cta-container { max-width: 900px; margin: 0 auto; position: relative; margin-top: -8rem; margin-bottom: 4rem; z-index: 10; padding: 0 2rem; }
.cta-box { text-align: center; padding: 4rem 2rem; background: linear-gradient(135deg, rgba(7, 9, 15, 0.9), rgba(0, 229, 255, 0.1)); border: 1px solid rgba(0, 229, 255, 0.2); border-radius: 16px; transition: var(--transition); }
.interactive-cta:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(0, 229, 255, 0.2); }
.cta-box h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-box p { font-size: 1.1rem; margin-bottom: 2rem; }
.footer-bottom { background: var(--bg-darker); padding: 4rem 0 2rem 0; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-info .logo { margin-bottom: 1rem; gap: 0.65rem; }
.footer-links h4, .footer-contact h4 { color: var(--text-main); margin-bottom: 1.5rem; }
.footer-links ul, .footer-contact ul { list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--cyan); padding-left: 5px; }
.footer-contact li { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); }
.footer-contact i { color: var(--cyan); font-size: 1.2rem; }
.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.footer-contact a:hover {
    color: var(--cyan);
}
.footer-copyright { text-align: center; padding-top: 2rem; border-top: 1px solid var(--glass-border); color: var(--text-muted); font-size: 0.9rem; }

/* Stable Fade Text Effect */
.fade-text {
    display: inline-block;
    min-height: 1.2em;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}
.fade-text.hide {
    opacity: 0;
    transform: translateY(10px);
}

/* Marquee Section */
.marquee-section {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: -1rem;
    border-radius: 24px 24px 0 0;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    gap: 4rem;
    animation: scroll-marquee 25s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.7;
    transition: var(--transition);
}
.marquee-item i { font-size: 2rem; color: var(--cyan); }
.marquee-item:hover { opacity: 1; color: var(--text-main); transform: scale(1.1); }
@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Comparison Table */
.comparison-section { padding: 8rem 0; }
.comparison-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0; /* Override glass-card padding */
    overflow: hidden;
}
.table-row {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}
.table-row:hover { background: rgba(255, 255, 255, 0.02); }
.table-row:last-child { border-bottom: none; }
.table-header {
    background: rgba(0, 229, 255, 0.05);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.table-col { display: flex; align-items: center; gap: 0.5rem; }
.human-col { color: var(--text-muted); }
.ai-col { font-weight: 600; color: var(--text-main); position: relative; }
.table-header .ai-col { color: var(--cyan); text-shadow: 0 0 10px rgba(0,229,255,0.4); }
.text-bad { color: #f87171; } 
.text-good { color: var(--mint); }

/* Bento Grid Features */
.bento-section { padding: 4rem 0 8rem 0; }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
}
.bento-box {
    position: relative;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.bento-large { grid-column: span 1; grid-row: span 2; }
.bento-wide { grid-column: span 2; grid-row: span 1; }
.bento-content { position: relative; z-index: 2; }
.bento-content h3 { font-size: 1.5rem; margin-bottom: 0.8rem; font-family: var(--font-display); }
.bento-content p { font-size: 1rem; color: var(--text-muted); }
.bento-icon { font-size: 3rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1.5rem; }
.bento-metric { font-size: 5.5rem; font-weight: 800; line-height: 1; margin-top: 2rem; letter-spacing: -2px; }
.bento-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: var(--mint);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}
.mt-2 { margin-top: 1.5rem; }

/* Schedule Section */
.schedule-section { padding: 4rem 0 8rem 0; }
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    border-color: rgba(0, 229, 255, 0.3); /* Cyan highlight */
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}
.schedule-info h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.schedule-info p { margin-bottom: 1.5rem; font-size: 1.1rem; }
.schedule-trust {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.95rem;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 210, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.4;
}
.form-helper {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.custom-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1rem;
    align-items: start;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.form-group input, .form-group select {
    padding: 1.1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-family);
    transition: var(--transition);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--cyan);
    background: rgba(0, 229, 255, 0.1);
}
.form-group select option { background: var(--bg-dark); color: var(--text-main); }
.w-100 { width: 100%; justify-content: center; padding: 1.2rem; }

.optional-fields {
    grid-column: 1 / -1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.optional-fields-toggle {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.1rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.optional-fields-toggle::-webkit-details-marker {
    display: none;
}

.optional-fields-toggle::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--cyan);
}

.optional-fields[open] .optional-fields-toggle::after {
    content: '-';
}

.optional-fields-content {
    padding: 0 1.1rem 1.1rem 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.optional-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    :root { --navbar-height: 82px; }
    .headline { font-size: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
    :root { --navbar-height: 78px; }
    body { font-size: 16px; }
    .container { padding: 0 1rem; }
    .glass-card { padding: 1.4rem; border-radius: 18px; }
    .custom-form {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: auto;
    }

    .schedule-grid { grid-template-columns: 1fr; gap: 2rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; }
    .cards-grid,
    .steps-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .table-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1rem; }
    .table-row > div:nth-child(1) { font-weight: bold; margin-bottom: 0.5rem; }
    .table-header { display: none; }
    .nav-links { display: none; }
    .navbar .btn-primary.btn-sm { display: none; }
    .logo { font-size: 1.2rem; gap: 0.55rem; }
    .brand-icon {
        width: auto;
        height: 42px;
    }
    .brand-icon-header {
        height: 28px;
        transform: translateY(4px);
    }
    .brand-icon-footer { height: 38px; }
    .headline { font-size: 2.35rem; line-height: 1.04; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2,
    .cta-box h2,
    .schedule-info h2 { font-size: 2.05rem; line-height: 1.08; }
    .section-header p,
    .schedule-info p,
    .subheadline { font-size: 1.05rem; line-height: 1.7; }
    .hero {
        min-height: 100svh;
        padding: calc(var(--navbar-height) + 1rem) 0 1.5rem 0;
    }
    .hero-container {
        min-height: calc(100svh - var(--navbar-height) - 1.5rem);
        align-items: flex-start;
    }
    .hero-content { max-width: 100%; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; }
    .hero-cta #open-chat-btn { display: none; }
    .hero-cta .btn-secondary {
        background: var(--gradient-primary);
        color: #fff;
        border: none;
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.35), 0 10px 28px rgba(0, 210, 255, 0.2);
    }
    .badge-pill { font-size: 0.74rem; padding: 0.45rem 0.85rem; margin-bottom: 0.85rem; }
    .subheadline { margin-bottom: 1rem; }
    .hero-fit-list { justify-content: flex-start; }
    .hero-fit-chip:nth-child(n+5) { display: none; }
    .hero-fit-chip { font-size: 0.76rem; padding: 0.55rem 0.8rem; }
    .btn-lg { min-height: 50px; padding: 0.88rem 1rem; font-size: 0.94rem; }
    .marquee-section { padding: 1.6rem 0; }
    .marquee-track {
        gap: 1.5rem;
        animation: scroll-marquee 28s linear infinite;
        white-space: nowrap;
        display: inline-flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .marquee-item {
        font-size: 0.84rem;
        opacity: 1;
    }
    .marquee-item i { font-size: 1rem; }
    .comparison-table { overflow: visible; }
    .schedule-section,
    .services,
    .how-it-works,
    .comparison-section,
    .testimonials-section,
    .faq,
    .footer-bottom { padding-top: 5rem; padding-bottom: 5rem; }
    .footer-cta-container { padding: 0 1rem; margin-top: -5rem; }
    .form-privacy { flex-direction: column; align-items: center; text-align: center; }
    .steps-connector { display: none; }
    .service-card h3,
    .bento-content h3,
    .testimonial-author strong { font-size: 1.15rem; }
    .service-card p,
    .bento-content p,
    .testimonial-text,
    .accordion-content p { font-size: 0.98rem; line-height: 1.7; }
    .feature-list li { align-items: flex-start; font-size: 0.96rem; line-height: 1.55; }
    .schedule-trust { font-size: 0.92rem; white-space: normal; }
    .form-group label { font-size: 0.95rem; }
    .form-group input,
    .form-group select { min-height: 56px; font-size: 1rem; }
    .optional-fields-grid { grid-template-columns: 1fr; }
    .cta-box h2 { font-size: 2rem; }
    .ai-chat-widget {
        width: calc(100% - 20px);
        max-width: none;
        right: 10px;
        left: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        height: min(560px, calc(100dvh - 22px - env(safe-area-inset-bottom, 0px)));
        max-height: calc(100dvh - 22px - env(safe-area-inset-bottom, 0px));
        border-radius: 18px;
    }
    .floating-chat-toggle {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        right: 16px;
        width: 50px;
        height: 50px;
    }
    .floating-chat-toggle:hover { transform: none; }
    .floating-chat-toggle .tab-icon { font-size: 1.3rem; }
    .chat-badge {
        top: -2px;
        right: -2px;
        width: 16px;
        height: 16px;
        font-size: 0.62rem;
    }
    .floating-chat-toggle.is-hidden-mobile {
        transform: translateY(8px);
    }

    .pulse-badge,
    .bg-shape { animation: none; }
    #cursor-glow,
    .grid-overlay { display: none; }
}

/* Chat Widget Styles */
.ai-chat-widget { position: fixed; bottom: 90px; right: 24px; width: 350px; height: min(520px, calc(100vh - 130px)); background: rgba(10, 13, 23, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(0, 229, 255, 0.3); border-radius: 16px; display: flex; flex-direction: column; z-index: 1000; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 229, 255, 0.15); transform-origin: bottom right; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); overflow: hidden; }
.ai-chat-widget.hidden { opacity: 0; transform: scale(0.85) translateX(30px); pointer-events: none; }
.chat-header { padding: 1rem 1.5rem; background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(16, 185, 129, 0.1)); border-bottom: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; }
.chat-header-info { display: flex; align-items: center; gap: 1rem; }
@keyframes glow-pulse {
    0%   { box-shadow: 0 0 10px rgba(0, 210, 255, 0.5); }
    100% { box-shadow: 0 0 25px rgba(232, 32, 158, 0.7), 0 0 10px rgba(0, 210, 255, 0.3); }
}
.avatar-glow { width: 40px; height: 40px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-size: 1.5rem; box-shadow: 0 0 15px rgba(0, 229, 255, 0.5); animation: glow-pulse 2s infinite alternate; }
.chat-title h4 { font-size: 1rem; margin: 0; }
.chat-title .status { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
.dot { width: 8px; height: 8px; background-color: var(--mint); border-radius: 50%; display: block; }
.close-btn { background: none; border: none; color: var(--text-main); font-size: 1.2rem; cursor: pointer; transition: var(--transition); }
.close-btn:hover { color: var(--cyan); transform: rotate(90deg); }
.chat-messages { flex: 1; padding: 1.5rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; }
.chat-messages::-webkit-scrollbar { width: 6px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
.message { max-width: 85%; padding: 1rem; border-radius: 12px; font-size: 0.95rem; line-height: 1.4; position: relative; animation: slide-up 0.3s ease; }
@keyframes slide-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.bot-message { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); align-self: flex-start; border-bottom-left-radius: 4px; }
.user-message { background: var(--gradient-primary); color: #000; align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 500; }
.message .time { display: block; font-size: 0.7rem; margin-top: 0.3rem; opacity: 0.7; text-align: right; }
.chat-input-area { padding: 1rem; border-top: 1px solid var(--glass-border); display: flex; gap: 0.5rem; background: rgba(0,0,0,0.2); }
#chat-input { flex: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); border-radius: 20px; padding: 0.8rem 1rem; color: var(--text-main); font-family: var(--font-family); outline: none; transition: var(--transition); }
#chat-input:focus { border-color: var(--cyan); box-shadow: 0 0 10px rgba(0, 229, 255, 0.2); }
#send-btn { background: var(--gradient-primary); color: #000; border: none; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; transition: var(--transition); }
#send-btn:hover { transform: scale(1.1) rotate(5deg); box-shadow: 0 0 15px rgba(0, 229, 255, 0.5); }
.floating-chat-toggle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #000;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.35), 0 2px 8px rgba(0,0,0,0.4);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.floating-chat-toggle .tab-icon { font-size: 1.5rem; line-height: 1; }
.floating-chat-toggle .tab-label { display: none; }
.floating-chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0, 210, 255, 0.55), 0 2px 10px rgba(0,0,0,0.4);
}

.floating-chat-toggle.is-open {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
}

.floating-chat-toggle.is-hidden-mobile {
    opacity: 0;
    pointer-events: none;
}

.typing-indicator { padding: 0.5rem 1.5rem; display: flex; gap: 4px; align-items: center; margin-bottom: 0.5rem; }
.typing-indicator.hidden { display: none; }
.typing-indicator span { width: 6px; height: 6px; background: var(--text-muted); border-radius: 50%; animation: typing 1.4s infinite ease-in-out both; }
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
body.has-custom-cursor { cursor: none; }
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor label { cursor: none; }

#cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
    will-change: left, top;
}

#custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(0, 210, 255, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    will-change: left, top;
}

#custom-cursor.cursor-hover {
    width: 50px;
    height: 50px;
    border-color: rgba(232, 32, 158, 0.8);
    background: rgba(232, 32, 158, 0.06);
}

/* ============================================
   HAMBURGER BUTTON & MOBILE MENU
   ============================================ */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
}

.ham-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.hamburger-btn.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 6, 22, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateX(0);
    pointer-events: all;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    letter-spacing: -0.02em;
}

.mobile-nav-link:hover { color: var(--cyan); transform: scale(1.05); }
.mobile-cta { margin-top: 1rem; }

/* ============================================
   SMART NAVBAR
   ============================================ */
.navbar {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(7, 9, 15, 0.96);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--cyan); }

.btn:focus-visible,
.nav-links a:focus-visible,
.mobile-nav-link:focus-visible,
.quick-reply-chip:focus-visible,
.accordion-header:focus-visible,
#chat-input:focus-visible,
#send-btn:focus-visible,
.close-btn:focus-visible,
.floating-chat-toggle:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    transition: var(--transition);
}

.stat-item:hover { background: rgba(255,255,255,0.03); }

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ============================================
   CARD 3D TILT + SHINE
   ============================================ */
.card-tilt {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.1s ease, box-shadow 0.5s ease;
}

.card-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.card-tilt:hover .card-shine { opacity: 1; }

/* ============================================
   STEPS CONNECTOR ANIMATION
   ============================================ */
.steps-connector {
    position: absolute;
    top: 30px;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--cyan), var(--mint));
    z-index: 0;
    border-radius: 2px;
    transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 8px rgba(0, 210, 255, 0.5);
}

.steps-connector.draw { width: 100%; }

/* ============================================
   FAQ COUNTER NUMBERING
   ============================================ */
.accordion { counter-reset: faq-counter; }

.accordion-item { counter-increment: faq-counter; }

.accordion-header::before {
    content: counter(faq-counter, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cyan);
    opacity: 0.7;
    margin-right: 0.75rem;
    letter-spacing: 1px;
}

.accordion-content p {
    animation: none;
}

.accordion-item.open .accordion-content p {
    animation: content-reveal 0.4s ease forwards;
}

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

/* ============================================
   CHAT: QUICK REPLIES + BADGE
   ============================================ */
.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 1rem 0.75rem 1rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.1);
}

.quick-reply-chip {
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.25);
    color: var(--cyan);
    border-radius: 50px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-family);
    white-space: nowrap;
}

.quick-reply-chip:hover {
    background: rgba(0, 210, 255, 0.15);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.quick-replies.hidden { display: none; }

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #f87171;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-pulse 1.5s infinite;
    pointer-events: none;
}

.chat-badge.hidden { display: none; }

@keyframes badge-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(248, 113, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0); }
}

/* ============================================
   FLOATING LABELS FORM
   ============================================ */
.form-group.floating {
    position: relative;
    gap: 0;
}

.form-group.floating input,
.form-group.floating select {
    padding: 1.5rem 1.1rem 0.6rem 1.1rem;
}

.float-label {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 400;
}

.form-group.floating input:focus ~ .float-label,
.form-group.floating input:not(:placeholder-shown) ~ .float-label,
.form-group.floating.has-value .float-label,
.form-group.floating select:focus ~ .float-label,
.form-group.floating.has-value.select-group .float-label {
    top: 0.55rem;
    transform: translateY(0);
    font-size: 0.72rem;
    color: var(--cyan);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.form-group.floating input:focus,
.form-group.floating select:focus {
    border-color: var(--cyan);
    background: rgba(0, 229, 255, 0.05);
}

.form-group.floating.error input,
.form-group.floating.error select {
    border-color: #f87171;
    background: rgba(248, 113, 113, 0.05);
}

.form-group.floating.error .float-label { color: #f87171; }

.form-group.floating.success input,
.form-group.floating.success select {
    border-color: var(--mint);
    background: rgba(232, 32, 158, 0.05);
}

.field-message {
    display: block;
    font-size: 0.78rem;
    margin-top: 0.3rem;
    padding-left: 0.3rem;
    height: 0;
    overflow: hidden;
    transition: height 0.25s ease, opacity 0.25s ease;
    opacity: 0;
}

.form-group.floating.error .field-message {
    color: #f87171;
    height: 1.2em;
    opacity: 1;
}

.form-group.floating.success .field-message {
    color: var(--mint);
    height: 1.2em;
    opacity: 1;
}

/* Submit button states */
.btn-spinner { display: inline-flex; align-items: center; }
.btn-spinner.hidden { display: none; }
.btn-text.hidden { display: none; }

@keyframes spin-anim {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.spin-icon { animation: spin-anim 0.8s linear infinite; font-size: 1.2rem; }

/* ============================================
   MAGNETIC BUTTON WRAPPER
   ============================================ */
.magnetic-wrap {
    display: inline-block;
    position: relative;
}

/* ============================================
   CHAT MELHORIAS
   ============================================ */
.chat-cta-card {
    background: rgba(0, 210, 255, 0.06);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    animation: slide-up 0.4s ease;
    margin-top: 0.5rem;
}

.chat-cta-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.chat-schedule-btn {
    font-size: 0.82rem !important;
    padding: 0.55rem 1.1rem !important;
    border-radius: 8px !important;
    text-decoration: none;
}

.chat-bullet {
    display: block;
    padding-left: 0.5rem;
    margin: 0.15rem 0;
}

#chat-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#send-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section { padding: 8rem 0; background: var(--bg-darker); }

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

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 210, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0,210,255,0.08);
}

.scenario-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 210, 255, 0.22);
    background: rgba(0, 210, 255, 0.08);
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.scenario-tag i {
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-main);
    flex: 1;
    font-style: normal;
    opacity: 0.94;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    color: #000;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}

.author-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   FORM PRIVACY NOTICE
   ============================================ */
.form-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    justify-content: center;
}

.form-privacy i { font-size: 0.85rem; color: var(--cyan); flex-shrink: 0; margin-top: 1px; }

.privacy-link {
    color: var(--cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,210,255,0.3);
    transition: border-color 0.2s ease;
}

.privacy-link:hover { border-color: var(--cyan); }

/* ============================================
   RESPONSIVE — new additions
   ============================================ */
@media (max-width: 992px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .ai-chat-widget {
        right: 24px;
        width: 320px;
        height: min(500px, calc(100vh - 130px));
    }
}

@media (max-width: 768px) {
    .hamburger-btn { display: flex; }
    .stats-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .stat-item { padding: 1.1rem; }
    .stat-number { font-size: 3rem; }
    .stat-label { font-size: 0.8rem; }
    .card-tilt { transform: none !important; }
    #custom-cursor, #cursor-dot { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero-fit-list { gap: 0.5rem; }
    .chat-header { padding: 1rem 1rem 0.9rem 1rem; }
    .chat-header-info { gap: 0.75rem; min-width: 0; }
    .avatar-glow { width: 38px; height: 38px; font-size: 1.25rem; }
    .chat-title h4 { font-size: 0.98rem; }
    .chat-title .status { font-size: 0.74rem; }
    .chat-messages { padding: 1rem; gap: 0.9rem; }
    .message { max-width: 94%; padding: 0.95rem; font-size: 0.95rem; line-height: 1.5; }
    .chat-input-area { padding: 0.9rem; }
    #chat-input { padding: 0.9rem 1rem; font-size: 0.96rem; }
    #send-btn { width: 44px; height: 44px; flex-shrink: 0; }
    .quick-replies { padding: 0.6rem 0.8rem 0.75rem 0.8rem; gap: 0.55rem; }
    .quick-reply-chip { font-size: 0.82rem; padding: 0.55rem 0.85rem; white-space: normal; }
    .chat-cta-card { padding: 0.95rem; }
    .chat-cta-card p { font-size: 0.84rem; }
    .chat-schedule-btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .comparison-table {
        background: none;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        gap: 0.9rem;
    }

    .table-row {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
        border-radius: 18px;
        padding: 1rem 1rem 1.05rem 1rem;
    }

    .table-row > .table-col:first-child {
        font-size: 1rem;
        color: var(--text-main);
        margin-bottom: 0.2rem;
    }

    .table-row .table-col:nth-child(2),
    .table-row .table-col:nth-child(3) {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.3rem;
        padding-top: 0.45rem;
    }

    .table-row .table-col:nth-child(2)::before,
    .table-row .table-col:nth-child(3)::before {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.8;
    }

    .table-row .table-col:nth-child(2)::before {
        content: 'Manual';
        color: #fca5a5;
    }

    .table-row .table-col:nth-child(3)::before {
        content: 'AceleraFlow AI';
        color: var(--cyan);
    }
}

@media (max-height: 920px) and (min-width: 769px) {
    .hero {
        padding-top: calc(var(--navbar-height) + 1.1rem);
        padding-bottom: 1.6rem;
    }

    .hero-container {
        min-height: calc(100svh - var(--navbar-height) - 2.05rem);
    }

    .badge-pill {
        margin-bottom: 1.15rem;
    }

    .headline {
        font-size: clamp(3.5rem, 8vh, 4.4rem);
        margin-bottom: 1.18rem;
    }

    .subheadline {
        font-size: 1.08rem;
        margin-bottom: 1.5rem;
        max-width: 700px;
    }

    .hero-fit-list {
        gap: 0.64rem;
        margin-bottom: 1.5rem;
    }

    .hero-fit-chip {
        font-size: 0.81rem;
        padding: 0.53rem 0.9rem;
    }

    .hero-cta {
        gap: 0.95rem;
        margin-bottom: 0;
    }

    .btn-lg {
        padding: 1.1rem 2.28rem;
        font-size: 1.08rem;
    }
}

@media (max-height: 820px) and (min-width: 769px) {
    .hero {
        padding-top: calc(var(--navbar-height) + 0.9rem);
        padding-bottom: 1.15rem;
    }

    .headline {
        font-size: clamp(3.2rem, 7vh, 3.95rem);
    }

    .subheadline {
        font-size: 1.03rem;
        margin-bottom: 1.25rem;
    }

    .hero-fit-list {
        margin-bottom: 1.25rem;
    }

    .btn-lg {
        padding: 1.03rem 2rem;
        font-size: 1.04rem;
    }
}

@media (max-width: 480px) {
    .mobile-nav-link { font-size: 1.6rem; }
    .hero-fit-list { justify-content: flex-start; }
    .schedule-trust { width: 100%; }
    .headline { font-size: 2rem; }
    .section-header h2,
    .cta-box h2,
    .schedule-info h2 { font-size: 1.85rem; }
    .btn-lg { padding: 0.95rem 1.1rem; font-size: 0.98rem; }
    .hero-fit-chip { width: auto; max-width: 100%; }
    .subheadline { font-size: 0.98rem; line-height: 1.6; }
    .mobile-nav { gap: 1.5rem; padding: 0 1.5rem; }
    .accordion-header { padding: 1.15rem; font-size: 1rem; }
    .stat-number { font-size: 2.3rem; }
    .ai-chat-widget {
        width: calc(100% - 12px);
        left: 6px;
        right: 6px;
        bottom: calc(6px + env(safe-area-inset-bottom, 0px));
        height: min(520px, calc(100dvh - 12px - env(safe-area-inset-bottom, 0px)));
        max-height: calc(100dvh - 12px - env(safe-area-inset-bottom, 0px));
    }
    .floating-chat-toggle {
        width: 46px;
        height: 46px;
        right: 8px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-height: 780px) {
    .ai-chat-widget {
        bottom: 8px;
        height: min(460px, calc(100dvh - 16px - env(safe-area-inset-bottom, 0px)));
        max-height: calc(100dvh - 16px - env(safe-area-inset-bottom, 0px));
    }

    .floating-chat-toggle {
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 380px) {
    .floating-chat-toggle {
        width: 42px;
        height: 42px;
    }

    .floating-chat-toggle .tab-icon {
        font-size: 1rem;
    }
}

@media (max-width: 768px) and (max-height: 780px) {
    .headline { font-size: 1.82rem; }
    .subheadline { font-size: 0.93rem; margin-bottom: 0.8rem; }
    .hero-fit-list { gap: 0.4rem; margin-bottom: 0.85rem; }
    .hero-fit-chip { font-size: 0.72rem; padding: 0.48rem 0.68rem; }
    .hero-cta { gap: 0.7rem; }
    .btn-lg { min-height: 46px; padding: 0.8rem 0.92rem; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
