/* ========================================
   PYRIX VOICE AGENT - ENHANCED STYLES
   Ultra-Futuristic | Animated | WhatsApp-First
======================================== */

:root {
    --neon-green: #0AFF70;
    --neon-green-dark: #0AE86C;
    --whatsapp-green: #25D366;
    --pure-black: #000000;
    --dark-black: #0A0A0A;
    --darker-black: #0C0C0C;
    --red-alert: #FF0A3E;
    --white: #FFFFFF;
    --grey: #888888;
    --glow-shadow: 0 0 20px rgba(10, 255, 112, 0.6);
    --glow-shadow-strong: 0 0 40px rgba(10, 255, 112, 0.9);
    --whatsapp-glow: 0 0 30px rgba(37, 211, 102, 0.7);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--pure-black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ========================================
   ANIMATED BACKGROUNDS
======================================== */

#particle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, rgba(10, 255, 112, 0.05) 0%, transparent 50%);
}

#particle-field::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle, rgba(10, 255, 112, 0.15) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: particleFloat 30s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(60px, 60px) rotate(360deg); }
}

#grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(10, 255, 112, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 255, 112, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

/* Animated Grid for Hero */
.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(10, 255, 112, 0.1) 2px, transparent 2px),
        linear-gradient(90deg, rgba(10, 255, 112, 0.1) 2px, transparent 2px);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(100px); }
}

/* ========================================
   HEADER
======================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

#header.scrolled {
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(10, 255, 112, 0.3);
    border-bottom: 1px solid rgba(10, 255, 112, 0.2);
}

.header-logo {
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(10, 255, 112, 0.6));
    transition: all 0.3s ease;
}

.header-logo:hover {
    filter: drop-shadow(0 0 25px rgba(10, 255, 112, 1));
    transform: scale(1.05);
}

/* ========================================
   HERO SECTION - COMPLETELY REDESIGNED
======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(10, 255, 112, 0.2) 0%, transparent 70%);
    filter: blur(120px);
    animation: heroGlowPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: rgba(10, 255, 112, 0.15);
    border: 2px solid var(--neon-green);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    box-shadow: var(--glow-shadow-strong);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-green);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}

/* WhatsApp Hero Icon */
.whatsapp-hero-icon {
    margin: 0 auto 2rem;
    animation: iconPulse 3s ease-in-out infinite;
}

.whatsapp-hero-icon svg {
    filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.8));
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Hero Title with Reveal Animation */
.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.reveal-text {
    display: inline-block;
    opacity: 0;
    animation: revealText 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.reveal-text.delay-1 {
    animation-delay: 0.3s;
}

.reveal-text.delay-2 {
    animation-delay: 0.6s;
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.neon-text {
    color: var(--neon-green);
    text-shadow: 
        0 0 20px rgba(10, 255, 112, 0.8), 
        0 0 40px rgba(10, 255, 112, 0.6),
        0 0 60px rgba(10, 255, 112, 0.4);
    animation: neonFlicker 4s ease-in-out infinite;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
    75% { opacity: 1; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.highlight-green {
    color: var(--neon-green);
    font-weight: 800;
    text-shadow: 0 0 15px rgba(10, 255, 112, 0.6);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced CTA Button */
.cta-button {
    position: relative;
    padding: 1.4rem 3.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    border: 3px solid var(--neon-green);
    background: rgba(10, 255, 112, 0.15);
    color: var(--neon-green);
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-button:hover {
    background: var(--neon-green);
    color: var(--pure-black);
    box-shadow: 0 0 50px rgba(10, 255, 112, 1);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--neon-green);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

.whatsapp-btn-icon {
    filter: drop-shadow(0 0 5px currentColor);
    transition: transform 0.3s ease;
}

.cta-button:hover .whatsapp-btn-icon {
    transform: rotate(15deg) scale(1.2);
}

.mega-button {
    animation: megaPulse 3s ease-in-out infinite;
}

@keyframes megaPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(10, 255, 112, 0.5); }
    50% { box-shadow: 0 0 60px rgba(10, 255, 112, 0.9); }
}

.hero-subtext {
    margin-top: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    animation: fadeInUp 1s ease-out 1.5s both;
}

/* ========================================
   HERO VISUAL - WhatsApp Flow
======================================== */

.hero-visual {
    margin-top: 5rem;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.whatsapp-flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem;
}

.flow-step {
    text-align: center;
    animation: slideInUp 0.8s ease-out both;
}

.flow-step.step-1 {
    animation-delay: 2s;
}

.flow-step.step-2 {
    animation-delay: 2.6s;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-phone {
    width: 280px;
    background: #1A1A1A;
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 211, 102, 0.3);
    border: 2px solid rgba(37, 211, 102, 0.5);
    transition: all 0.4s ease;
}

.whatsapp-phone:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(37, 211, 102, 0.6);
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.online-status {
    font-size: 0.85rem;
    color: var(--whatsapp-green);
    animation: pulse 2s ease-in-out infinite;
}

.phone-chat {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voice-message {
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid var(--whatsapp-green);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: messagePop 0.5s ease-out 2.2s both;
}

@keyframes messagePop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.mic-icon-mini {
    font-size: 1.5rem;
}

.voice-bars {
    display: flex;
    gap: 3px;
    align-items: center;
    flex: 1;
}

.voice-bars span {
    width: 3px;
    background: var(--whatsapp-green);
    border-radius: 3px;
    animation: voiceBar 1s ease-in-out infinite;
}

.voice-bars span:nth-child(1) { height: 12px; animation-delay: 0s; }
.voice-bars span:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.voice-bars span:nth-child(3) { height: 36px; animation-delay: 0.2s; }
.voice-bars span:nth-child(4) { height: 24px; animation-delay: 0.3s; }
.voice-bars span:nth-child(5) { height: 18px; animation-delay: 0.4s; }

@keyframes voiceBar {
    0%, 100% { transform: scaleY(0.6); opacity: 0.6; }
    50% { transform: scaleY(1); opacity: 1; }
}

.voice-duration {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.step-label {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-green);
}

/* Flow Arrow */
.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.8s ease-out 2.3s both;
}

.arrow-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), transparent);
    animation: arrowFlow 2s ease-in-out infinite;
}

@keyframes arrowFlow {
    0%, 100% { opacity: 0.4; width: 60px; }
    50% { opacity: 1; width: 80px; }
}

.arrow-head {
    font-size: 2.5rem;
    color: var(--neon-green);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(10px); opacity: 1; }
}

.processing-text {
    font-size: 0.9rem;
    color: var(--neon-green);
    font-weight: 600;
}

/* Quote Preview */
.quote-preview {
    width: 240px;
    background: rgba(10, 255, 112, 0.05);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--glow-shadow-strong);
    transition: all 0.4s ease;
    animation: quotePop 0.8s ease-out 2.8s both;
}

@keyframes quotePop {
    0% { transform: scale(0) rotate(-10deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.quote-preview:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 60px rgba(10, 255, 112, 0.9);
}

.quote-header {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 1px;
}

.quote-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.quote-line {
    width: 100%;
    height: 10px;
    background: rgba(10, 255, 112, 0.3);
    border-radius: 3px;
    animation: lineGrow 0.6s ease-out both;
}

.quote-line:nth-child(1) { animation-delay: 3s; }
.quote-line:nth-child(2) { animation-delay: 3.2s; }
.quote-line:nth-child(3) { animation-delay: 3.4s; }

.quote-line.short {
    width: 70%;
}

@keyframes lineGrow {
    0% { width: 0; opacity: 0; }
    100% { width: 100%; opacity: 1; }
}

.quote-line.short {
    animation-name: lineGrowShort;
}

@keyframes lineGrowShort {
    0% { width: 0; opacity: 0; }
    100% { width: 70%; opacity: 1; }
}

.quote-footer {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 600;
}

.timer {
    color: var(--neon-green);
    font-weight: 800;
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--neon-green);
}

/* Continue in next message... */

/* ========================================
   SECTION COMMON STYLES
======================================== */

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Scroll Fade In Animation */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PAIN POINTS SECTION - ENHANCED
======================================== */

.pain-section {
    background: linear-gradient(180deg, var(--pure-black) 0%, var(--dark-black) 100%);
}

.pain-counter {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red-alert);
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 10, 62, 0.1);
    border: 2px solid var(--red-alert);
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(255, 10, 62, 0.5);
    animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.counter-number {
    font-size: 2rem;
    font-weight: 900;
    margin-right: 0.5rem;
}

.red-text {
    color: var(--red-alert);
    text-shadow: 0 0 20px rgba(255, 10, 62, 0.7);
    animation: redGlow 2s ease-in-out infinite;
}

@keyframes redGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 10, 62, 0.7); }
    50% { text-shadow: 0 0 40px rgba(255, 10, 62, 1); }
}

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

.pain-card {
    background: rgba(255, 10, 62, 0.08);
    border: 2px solid rgba(255, 10, 62, 0.4);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '✕';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: var(--red-alert);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pain-card:hover::before {
    opacity: 1;
    animation: redX 0.5s ease-out;
}

@keyframes redX {
    0% { transform: scale(0) rotate(-180deg); }
    100% { transform: scale(1) rotate(0); }
}

.pain-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 10, 62, 0.4);
    border-color: var(--red-alert);
    background: rgba(255, 10, 62, 0.12);
}

.pain-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.3);
}

.pain-icon.glitch {
    animation: glitchShake 4s ease-in-out infinite;
}

@keyframes glitchShake {
    0%, 90%, 100% { transform: translate(0, 0); }
    92% { transform: translate(-3px, 3px); }
    94% { transform: translate(3px, -3px); }
    96% { transform: translate(-2px, 2px); }
    98% { transform: translate(2px, -2px); }
}

.pain-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.messy-chat-visual {
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid rgba(255, 10, 62, 0.3);
    border-radius: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(255, 10, 62, 0.3);
}

.chat-overflow {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message {
    padding: 1rem 1.5rem;
    background: rgba(255, 10, 62, 0.15);
    border-left: 4px solid var(--red-alert);
    border-radius: 8px;
    font-size: 1rem;
    animation: messageFade 4s ease-in-out infinite;
}

.fade-message:nth-child(1) { animation-delay: 0s; }
.fade-message:nth-child(2) { animation-delay: 1s; }
.fade-message:nth-child(3) { animation-delay: 2s; }
.fade-message:nth-child(4) { animation-delay: 3s; }

@keyframes messageFade {
    0%, 100% { opacity: 0.4; transform: translateX(-5px); }
    50% { opacity: 1; transform: translateX(0); }
}

/* ========================================
   SOLUTION & OTHER SECTIONS
======================================== */

.solution-section {
    position: relative;
    background: var(--darker-black);
}

.watermark-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}

.watermark-logo img {
    width: 800px;
    max-width: 80vw;
}

.solution-content,
.voice-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.large-text {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* HOW IT WORKS - Enhanced */
.how-section {
    background: var(--dark-black);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.step-card {
    background: rgba(10, 255, 112, 0.05);
    border: 3px solid var(--neon-green);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(10, 255, 112, 0.6);
    background: rgba(10, 255, 112, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--neon-green);
    color: var(--pure-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    box-shadow: 0 0 30px rgba(10, 255, 112, 0.8);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.step-icon {
    font-size: 4rem;
    margin: 1.5rem 0;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
    font-weight: 800;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Voice Section Enhancements */
.voice-section {
    background: var(--pure-black);
}

.microphone-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
}

.mic-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(10, 255, 112, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    animation: micGlowPulse 4s ease-in-out infinite;
}

@keyframes micGlowPulse {
    0%, 100% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

.mic-icon {
    font-size: 7rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(10, 255, 112, 1));
    animation: micFloat 3s ease-in-out infinite;
}

@keyframes micFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.sound-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid var(--neon-green);
    border-radius: 50%;
    opacity: 0;
    animation: waveExpand 4s ease-out infinite;
}

.wave:nth-child(2) { animation-delay: 1.3s; }
.wave:nth-child(3) { animation-delay: 2.6s; }

@keyframes waveExpand {
    0% { width: 120px; height: 120px; opacity: 0.9; }
    100% { width: 400px; height: 400px; opacity: 0; }
}

.voice-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(10, 255, 112, 0.05);
    border-left: 4px solid var(--neon-green);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.benefit-item:hover {
    background: rgba(10, 255, 112, 0.12);
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(10, 255, 112, 0.3);
}

.benefit-check {
    font-size: 2.5rem;
    color: var(--neon-green);
    font-weight: 900;
    text-shadow: 0 0 15px var(--neon-green);
}

.benefit-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

/* DIVISIONS - Enhanced */
.divisions-section {
    background: var(--darker-black);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.division-card {
    background: rgba(10, 255, 112, 0.05);
    border: 3px solid rgba(10, 255, 112, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.division-card:hover {
    transform: translateY(-15px) rotate(2deg);
    background: rgba(10, 255, 112, 0.15);
    border-color: var(--neon-green);
    box-shadow: 0 20px 60px rgba(10, 255, 112, 0.6);
}

.division-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.division-card:hover .division-icon {
    transform: scale(1.3) rotate(10deg);
}

.division-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon-green);
}

.division-highlight {
    background: rgba(10, 255, 112, 0.08);
    border: 3px solid var(--neon-green);
    border-radius: 25px;
    padding: 3.5rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 0 40px rgba(10, 255, 112, 0.5);
}

.highlight-text {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    line-height: 2.2;
    color: var(--neon-green);
}

/* FEATURES GRID - Enhanced */
.features-section {
    background: var(--pure-black);
}

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

.feature-tile {
    background: rgba(10, 255, 112, 0.05);
    border: 2px solid rgba(10, 255, 112, 0.2);
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-tile:hover {
    background: rgba(10, 255, 112, 0.12);
    border-color: var(--neon-green);
    box-shadow: 0 10px 40px rgba(10, 255, 112, 0.5);
    transform: translateY(-10px) scale(1.03);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(10, 255, 112, 0.5));
}

.feature-tile h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.3s ease;
}

.feature-tile:hover h3 {
    color: var(--neon-green);
}

/* TESTIMONIALS - Enhanced */
.testimonials-section {
    background: var(--dark-black);
}

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

.testimonial-card {
    background: rgba(10, 255, 112, 0.08);
    border: 3px solid var(--neon-green);
    border-radius: 25px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(10, 255, 112, 0.5);
}

.quote-mark {
    font-size: 5rem;
    color: var(--neon-green);
    opacity: 0.4;
    line-height: 1;
    text-shadow: 0 0 20px var(--neon-green);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.7;
    font-weight: 500;
}

.testimonial-underline {
    width: 120px;
    height: 4px;
    background: var(--neon-green);
    margin: 0 auto;
    border-radius: 4px;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(10, 255, 112, 0.6); width: 120px; }
    50% { box-shadow: 0 0 30px rgba(10, 255, 112, 1); width: 140px; }
}

/* FINAL CTA - Enhanced */
.final-cta-section {
    position: relative;
    padding: 10rem 0;
    background: var(--pure-black);
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(10, 255, 112, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(10, 255, 112, 0.15) 0%, transparent 50%);
    animation: particlesDrift 12s ease-in-out infinite;
}

@keyframes particlesDrift {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.2) rotate(180deg); }
}

.cta-frame {
    position: relative;
    background: rgba(10, 255, 112, 0.08);
    border: 4px solid var(--neon-green);
    border-radius: 40px;
    padding: 6rem 4rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(10, 255, 112, 0.6);
}

.frame-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 255, 112, 0.3) 0%, transparent 70%);
    filter: blur(150px);
    animation: frameGlowPulse 6s ease-in-out infinite;
}

@keyframes frameGlowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.cta-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.mega-cta {
    font-size: 1.4rem;
    padding: 2rem 5rem;
    animation: megaCtaPulse 3s ease-in-out infinite;
}

@keyframes megaCtaPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(10, 255, 112, 0.6); }
    50% { box-shadow: 0 0 80px rgba(10, 255, 112, 1); }
}

.cta-trust {
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.holographic-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.holo-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid rgba(10, 255, 112, 0.4);
    border-radius: 50%;
    animation: holoFloat 10s ease-in-out infinite;
}

.holo-circle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.holo-circle:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 3s;
}

.holo-circle:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
}

@keyframes holoFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
    50% { transform: translate(30px, -30px) rotate(180deg); opacity: 0.9; }
}

/* FOOTER */
.footer {
    background: var(--pure-black);
    border-top: 2px solid rgba(10, 255, 112, 0.3);
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(10, 255, 112, 0.5));
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.footer-links .divider {
    color: rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .whatsapp-flow-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .solution-content,
    .voice-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .divisions-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-frame {
        padding: 4rem 2rem;
    }
    
    .mega-cta {
        padding: 1.5rem 3rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }
}

/* ========================================
   REDESIGNED LAYOUTS - ADDITIONAL STYLES
======================================== */

/* Hero Logo in Hero Section */
.hero-logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-logo {
    height: 80px;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(10, 255, 112, 0.6));
}

/* 2-Step Quote Flow Container */
.quote-flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

/* Pain Grid - Symmetric 6 cards in 3x2 */
.pain-grid-symmetric {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pain-snippet {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    padding: 2rem;
    margin-top: 2rem;
    background: rgba(255, 10, 62, 0.05);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Solution Section - 2 Column Layout */
.solution-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.solution-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-intro {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-benefits .benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(10, 255, 112, 0.05);
    border-left: 4px solid var(--neon-green);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.solution-benefits .benefit-item:hover {
    background: rgba(10, 255, 112, 0.1);
    transform: translateX(10px);
}

.solution-benefits .benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.solution-benefits .benefit-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--neon-green);
}

.solution-benefits .benefit-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.solution-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-container {
    width: 100%;
    max-width: 500px;
}

.voice-to-quote-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: rgba(10, 255, 112, 0.05);
    border: 2px solid var(--neon-green);
    border-radius: 25px;
    box-shadow: var(--glow-shadow);
}

.voice-input, .quote-output {
    text-align: center;
}

.voice-waveform {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    justify-content: center;
    height: 80px;
    margin-bottom: 1rem;
}

.transform-arrow {
    font-size: 3rem;
    color: var(--neon-green);
    animation: arrowPulse 2s ease-in-out infinite;
}

.pdf-preview-large {
    width: 150px;
    height: 180px;
    background: rgba(10, 255, 112, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 auto 1rem;
}

.pdf-header-bar {
    width: 100%;
    height: 20px;
    background: var(--neon-green);
    border-radius: 3px;
}

.pdf-content-line {
    width: 100%;
    height: 10px;
    background: rgba(10, 255, 112, 0.4);
    border-radius: 2px;
}

.pdf-content-line.short {
    width: 70%;
}

.input-label, .output-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neon-green);
}

/* Roadmap Section - Horizontal 4-step */
.roadmap-section {
    background: var(--dark-black);
    position: relative;
}

.roadmap-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.roadmap-step {
    background: rgba(10, 255, 112, 0.05);
    border: 3px solid rgba(10, 255, 112, 0.3);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.roadmap-step:hover {
    background: rgba(10, 255, 112, 0.15);
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 255, 112, 0.6);
}

.roadmap-step .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--neon-green);
    color: var(--pure-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 0 30px rgba(10, 255, 112, 0.8);
    transition: all 0.3s ease;
}

.roadmap-step:hover .step-number {
    transform: translateX(-50%) scale(1.15);
}

.roadmap-step .step-icon {
    font-size: 3.5rem;
    margin: 1.5rem 0 1rem;
}

.roadmap-step h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
    font-weight: 700;
}

.roadmap-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.roadmap-connector {
    display: none;
}

.roadmap-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(10, 255, 112, 0.08);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-note p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.7;
}

/* Never Type Section */
.never-type-section {
    background: var(--pure-black);
}

.never-type-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.voice-icon-modern {
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-icon-modern svg {
    color: var(--neon-green);
    filter: drop-shadow(0 0 30px rgba(10, 255, 112, 0.8));
    animation: iconPulse 3s ease-in-out infinite;
}

.never-type-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(10, 255, 112, 0.05);
    border-left: 4px solid var(--neon-green);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-row:hover {
    background: rgba(10, 255, 112, 0.1);
    transform: translateX(10px);
}

.benefit-row .check-icon {
    font-size: 2rem;
    color: var(--neon-green);
    font-weight: 900;
}

.benefit-row h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Features Grid Modern - 8 cards in 4x2 */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(10, 255, 112, 0.05);
    border: 2px solid rgba(10, 255, 112, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-card:hover {
    background: rgba(10, 255, 112, 0.12);
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(10, 255, 112, 0.5);
}

.feature-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(10, 255, 112, 0.5));
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--neon-green);
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Testimonial Carousel */
.container-full {
    width: 100%;
    overflow: hidden;
}

.testimonial-carousel {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scrollCarousel 30s linear infinite;
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-track:hover {
    animation-play-state: paused;
}

.testimonial-card-modern {
    min-width: 400px;
    background: rgba(10, 255, 112, 0.08);
    border: 3px solid var(--neon-green);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    flex-shrink: 0;
}

.testimonial-card-modern .quote-mark {
    font-size: 4rem;
    color: var(--neon-green);
    opacity: 0.4;
    line-height: 1;
}

.testimonial-card-modern .testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.5rem 0;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--neon-green);
    font-weight: 600;
}

/* Booking Page Styles */
.booking-page {
    background: var(--pure-black);
}

.booking-hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.booking-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 3rem;
    letter-spacing: -2px;
}

.booking-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-benefit {
    background: rgba(10, 255, 112, 0.05);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.benefit-check-large {
    font-size: 3rem;
    color: var(--neon-green);
    font-weight: 900;
    margin-bottom: 1rem;
}

.booking-benefit p {
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.calendly-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.calendly-placeholder {
    background: rgba(10, 255, 112, 0.05);
    border: 3px dashed var(--neon-green);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.placeholder-code {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: left;
}

.placeholder-code code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--neon-green);
    line-height: 1.8;
}

.booking-trust {
    padding: 4rem 0;
    background: var(--darker-black);
}

.trust-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--neon-green);
}

.booking-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.booking-testimonial-card {
    background: rgba(10, 255, 112, 0.05);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.quote-mark-small {
    font-size: 2.5rem;
    color: var(--neon-green);
    opacity: 0.4;
}

.booking-testimonial-card p {
    font-size: 1rem;
    margin: 1rem 0;
    line-height: 1.6;
}

.testimonial-author-small {
    font-size: 0.9rem;
    color: var(--neon-green);
    font-weight: 600;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 255, 112, 0.08);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .roadmap-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .never-type-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .pain-grid-symmetric {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .roadmap-container {
        grid-template-columns: 1fr;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .booking-benefits,
    .booking-testimonials,
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card-modern {
        min-width: 300px;
    }
}

/* Updated Styles - User Refinements */

/* Bigger hero logo with animation */
.hero-logo {
    height: 180px !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(10, 255, 112, 0.8));
    animation: heroLogoFloat 6s ease-in-out infinite, heroLogoGlow 3s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes heroLogoGlow {
    0%, 100% { filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(10, 255, 112, 0.8)); }
    50% { filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(10, 255, 112, 1)); }
}

/* Remove button underlines */
.cta-button {
    text-decoration: none !important;
}

a.cta-button:hover {
    text-decoration: none !important;
}

/* New Solution Visual with Vertical Flow */
.voice-to-quote-visual-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: rgba(10, 255, 112, 0.05);
    border: 2px solid var(--neon-green);
    border-radius: 25px;
    box-shadow: var(--glow-shadow);
}

.voice-note-box,
.quote-result-box {
    width: 100%;
    padding: 2rem;
    background: rgba(10, 255, 112, 0.08);
    border: 2px solid rgba(10, 255, 112, 0.4);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.voice-note-box:hover,
.quote-result-box:hover {
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(10, 255, 112, 0.4);
}

.voice-icon-circle {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: iconPulse 3s ease-in-out infinite;
}

.pyrix-processor {
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pyrix-brain-icon {
    width: 100px;
    height: 100px;
    filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(10, 255, 112, 0.9));
    animation: processorSpin 6s linear infinite;
}

@keyframes processorSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.processor-box {
    background: rgba(10, 255, 112, 0.15);
    border: 2px solid rgba(10, 255, 112, 0.5);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(10, 255, 112, 0.4);
}

.processor-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-top: 0.5rem;
}

.arrow-down {
    font-size: 3rem;
    color: var(--neon-green);
    animation: arrowBounce 2s ease-in-out infinite;
    margin: 0;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(10px); opacity: 1; }
}

.pdf-mini-preview {
    width: 120px;
    height: 150px;
    background: rgba(10, 255, 112, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 auto 1rem;
}

.pdf-top-bar {
    width: 100%;
    height: 18px;
    background: var(--neon-green);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(10, 255, 112, 0.6);
}

.pdf-mini-preview .pdf-line {
    width: 100%;
    height: 8px;
    background: rgba(10, 255, 112, 0.5);
    border-radius: 2px;
}

.pdf-mini-preview .pdf-line.short {
    width: 65%;
}

.flow-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Testimonial Cards with Better Animation */
.testimonial-card-modern {
    min-width: 400px;
    background: rgba(10, 255, 112, 0.08);
    border: 3px solid var(--neon-green);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10, 255, 112, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card-modern:hover::before {
    opacity: 1;
    animation: glowRotate 4s linear infinite;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.testimonial-card-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(10, 255, 112, 0.6);
    border-color: var(--neon-green);
}

.testimonial-card-modern .quote-mark {
    font-size: 5rem;
    color: var(--neon-green);
    opacity: 0.5;
    line-height: 1;
    text-shadow: 0 0 20px rgba(10, 255, 112, 0.8);
}

.testimonial-card-modern .testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin: 2rem 0;
    line-height: 1.8;
    font-weight: 500;
}

/* Remove author styles since we removed authors */
.testimonial-author {
    display: none;
}

/* Custom Voice Note Graphic */
.custom-voice-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(10, 255, 112, 0.08);
    border: 2px solid rgba(10, 255, 112, 0.4);
    border-radius: 20px;
    min-height: 150px;
    justify-content: center;
}

.voice-waveform {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.wave-bar {
    width: 8px;
    background: var(--neon-green);
    border-radius: 4px;
    animation: waveAnimation 1.2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(10, 255, 112, 0.6);
}

.wave-bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 70%; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 50%; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 40%; animation-delay: 0.5s; }

@keyframes waveAnimation {
    0%, 100% { height: 30%; }
    50% { height: 90%; }
}

.voice-duration-display {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-green);
    font-family: 'Courier New', monospace;
}

/* Compact Testimonial Cards */
.testimonial-card-compact {
    min-width: 320px;
    max-width: 320px;
    background: rgba(10, 255, 112, 0.08);
    border: 2px solid rgba(10, 255, 112, 0.4);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card-compact::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-green), transparent, var(--neon-green));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.testimonial-card-compact:hover::before {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.testimonial-card-compact:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(10, 255, 112, 0.5);
    border-color: var(--neon-green);
}

.testimonial-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(10, 255, 112, 0.6));
}

.testimonial-text-compact {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-logo {
        height: 120px !important;
    }
    
    .pyrix-brain-icon {
        width: 70px;
        height: 70px;
    }
    
    .processor-box {
        padding: 1rem;
    }
    
    .testimonial-card-compact {
        min-width: 280px;
        max-width: 280px;
        padding: 1.5rem 1rem;
    }
    
    .testimonial-icon {
        font-size: 2.5rem;
    }
    
    .testimonial-text-compact {
        font-size: 0.95rem;
    }
}

/* ========================================
   REVAMPED BOOKING PAGE STYLES
   ======================================== */

/* Back to Home Button */
.back-home-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(10, 255, 112, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: rgba(10, 255, 112, 0.2);
    box-shadow: 0 0 20px rgba(10, 255, 112, 0.4);
    transform: translateX(-5px);
}

/* Booking Hero Revamped */
.booking-hero-revamped {
    padding: 8rem 2rem 6rem;
    position: relative;
    text-align: center;
}

.hero-glow-booking {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 255, 112, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

.booking-logo-showcase {
    margin-bottom: 2rem;
}

.booking-pyrix-logo {
    height: 150px;
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(10, 255, 112, 0.9));
    animation: logoFloatBooking 5s ease-in-out infinite;
}

@keyframes logoFloatBooking {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.booking-title-revamped {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.booking-subtitle-revamped {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Promise Cards */
.demo-promise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.promise-card {
    background: rgba(10, 255, 112, 0.08);
    border: 2px solid rgba(10, 255, 112, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--neon-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.promise-card:hover::before {
    transform: scaleX(1);
}

.promise-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 255, 112, 0.3);
}

.promise-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.promise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--neon-green);
}

.promise-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 2rem;
    background: rgba(255, 50, 50, 0.05);
}

.urgency-box {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 50, 50, 0.1);
    border: 2px solid rgba(255, 50, 50, 0.5);
    border-radius: 20px;
    padding: 2.5rem;
    animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 50, 50, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 50, 50, 0.6); }
}

.urgency-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.urgency-content h3 {
    font-size: 1.8rem;
    color: #ff5555;
    margin-bottom: 0.5rem;
}

.urgency-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Calendar Section Revamped */
.calendar-section-revamped {
    padding: 6rem 2rem;
    background: rgba(10, 255, 112, 0.02);
}

.calendar-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.calendar-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.calendar-subheading {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.calendar-wrapper-revamped {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 255, 112, 0.05);
    border: 2px solid var(--neon-green);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(10, 255, 112, 0.3);
}

.calendar-wrapper-revamped iframe {
    min-height: 700px;
}

/* What You'll Get Section */
.what-you-get-section {
    padding: 6rem 2rem;
}

.section-title-booking {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

.demo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-feature-card {
    background: rgba(10, 255, 112, 0.08);
    border: 2px solid rgba(10, 255, 112, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.demo-feature-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10, 255, 112, 0.4);
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(10, 255, 112, 0.2);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.demo-feature-card h3 {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.demo-feature-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Social Proof Booking */
.social-proof-booking {
    padding: 6rem 2rem;
    background: rgba(10, 255, 112, 0.02);
}

.testimonial-grid-booking {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.testimonial-card-booking {
    background: rgba(10, 255, 112, 0.08);
    border: 2px solid rgba(10, 255, 112, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card-booking:hover {
    border-color: var(--neon-green);
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(10, 255, 112, 0.4);
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(10, 255, 112, 0.3);
}

.testimonial-author strong {
    color: var(--neon-green);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Stats Row */
.stats-row-booking {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box-booking {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 255, 112, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-box-booking:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(10, 255, 112, 0.4);
}

.stat-number-big {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(10, 255, 112, 0.6);
}

.stat-label-booking {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Final Booking CTA */
.final-booking-cta {
    padding: 6rem 2rem;
}

.final-cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(10, 255, 112, 0.1);
    border: 3px solid var(--neon-green);
    border-radius: 25px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.final-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10, 255, 112, 0.1) 0%, transparent 70%);
    animation: rotateBg 10s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.final-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.final-cta-box p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.scroll-up-btn {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--neon-green);
    color: #000;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(10, 255, 112, 0.5);
}

.scroll-up-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(10, 255, 112, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .booking-title-revamped {
        font-size: 2.5rem;
    }
    
    .booking-subtitle-revamped {
        font-size: 1.2rem;
    }
    
    .demo-promise-cards {
        grid-template-columns: 1fr;
    }
    
    .urgency-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .section-title-booking {
        font-size: 2rem;
    }
    
    .demo-features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid-booking {
        grid-template-columns: 1fr;
    }
    
    .stats-row-booking {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calendar-wrapper-revamped {
        padding: 1rem;
    }
}
