/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #10b981;
    --accent: #f59e0b;
    
    /* Neutrals */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-lighter: #f3f4f6;
    --border: #e5e7eb;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.logo img {
    height: 50px;
    width: auto;
    display: inline-block;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Voice Demo Card */
.voice-demo-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

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

/* Voice Conversation */
.voice-conversation {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dual-mic-interface {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.mic-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
    transition: all 0.5s ease;
}

.mic-container.active {
    opacity: 1;
    transform: scale(1.05);
}

.mic-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.ai-mic .mic-circle {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: var(--primary);
}

.ai-mic.active .mic-circle {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    animation: aiPulse 2s ease-in-out infinite;
}

.user-mic .mic-circle {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: var(--secondary);
}

.user-mic.active .mic-circle {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    animation: userPulse 2s ease-in-out infinite;
}

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

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

.voice-waves {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 20px;
}

.voice-waves span {
    width: 3px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.ai-mic.active .voice-waves span {
    animation: voiceWave 1.2s ease-in-out infinite;
    background: var(--primary);
}

.user-mic .voice-waves span {
    background: var(--secondary);
}

.user-mic.active .voice-waves span {
    animation: voiceWave 1.2s ease-in-out infinite;
    background: var(--secondary);
}

.voice-waves span:nth-child(1) { animation-delay: 0s; }
.voice-waves span:nth-child(2) { animation-delay: 0.1s; }
.voice-waves span:nth-child(3) { animation-delay: 0.2s; }
.voice-waves span:nth-child(4) { animation-delay: 0.3s; }

@keyframes voiceWave {
    0%, 60%, 100% { 
        height: 4px;
    }
    30% { 
        height: 18px;
    }
}

.mic-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.ai-mic .mic-label {
    color: var(--primary);
}

.user-mic .mic-label {
    color: var(--secondary);
}

.speech-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: min(280px, 100%);
    max-width: 100%;
    width: 100%;
}

.speech-bubble {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-primary);
    font-style: italic;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    transition: opacity 0.4s ease, color 0.4s ease;
    min-height: 60px;
    max-width: 320px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    word-wrap: break-word;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.turn-indicator {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.conversation-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    gap: 0.75rem;
}

.progress-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.dot.completed {
    background: var(--secondary);
}

.conv-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.5rem;
    background: var(--bg-lighter);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.conv-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.replay-btn i {
    font-size: 0.7rem;
}

.call-interface {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.call-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.call-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.call-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.call-time {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.voice-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    animation: voicePulse 2s ease-in-out infinite;
}

@keyframes voicePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
}

.speaking-indicator {
    display: flex;
    align-items: center;
    gap: 3px;
}

.speaking-indicator span {
    width: 4px;
    height: 25px;
    background: var(--secondary);
    border-radius: 2px;
    animation: wave 1.4s linear infinite;
}

.speaking-indicator span:nth-child(2) { animation-delay: -1.2s; }
.speaking-indicator span:nth-child(3) { animation-delay: -1.0s; }
.speaking-indicator span:nth-child(4) { animation-delay: -0.8s; }

@keyframes wave {
    0%, 40%, 100% { transform: scaleY(0.3); }
    20% { transform: scaleY(1); }
}

.conversation-transcript {
    background: var(--bg-lighter);
    padding: 1rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary);
}

.conversation-transcript h4 {
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.current-speech {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

.call-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.call-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.call-btn.mute {
    background: var(--bg-lighter);
    color: var(--text-secondary);
}

.call-btn.end-call {
    background: #ef4444;
    color: white;
}

.call-btn.speaker {
    background: var(--primary);
    color: white;
}

.call-btn:hover {
    transform: scale(1.1);
}

.lead-capture-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.75rem;
    padding: 0.875rem;
    margin-top: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    width: 100%;
}

.capture-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.capture-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.capture-header h5 {
    color: var(--text-primary);
    font-size: 0.8125rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.capture-status {
    font-size: 0.625rem;
    color: var(--text-light);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.125rem 0.375rem;
    border-radius: 8px;
    font-weight: 500;
}

.lead-identity {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.625rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.08);
}

.identity-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    color: var(--text-primary);
    flex: 1;
    min-width: 0;
}

.identity-item i {
    font-size: 0.625rem;
    color: var(--primary);
    opacity: 0.7;
    width: 12px;
}

.identity-item span {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.captured-data-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.data-card {
    background: white;
    border-radius: 0.5rem;
    padding: 0.625rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.2s ease;
}

.data-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.data-card.priority {
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.card-icon {
    font-size: 0.875rem;
    opacity: 0.8;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.0625rem;
    flex: 1;
    min-width: 0;
}

.card-label {
    font-size: 0.5625rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.card-value {
    font-size: 0.6875rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
}

.next-action-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 0.5rem;
    padding: 0.625rem;
    margin-top: 0.5rem;
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.next-action-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
}

.next-action-header i {
    font-size: 0.625rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: rotate(0deg); }
    50% { opacity: 1; transform: rotate(10deg); }
}

.next-action-header span {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.next-action-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.action-text {
    font-size: 0.75rem;
    font-weight: 600;
    flex: 1;
    line-height: 1.3;
}

.confidence-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    white-space: nowrap;
}

.confidence-score {
    font-size: 0.625rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.confidence-label {
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    transition: all 0.2s ease;
}

.data-item:hover {
    transform: translateX(2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Transformation Section */
.transformation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.transformation-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    max-width: 100%;
    overflow: hidden;
}

/* Flow Stages */
.flow-stage {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
}

.stage-visual {
    margin-bottom: 2rem;
}

.visitor-icons, .qualified-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.visitor-icon, .qualified-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    background: var(--bg-lighter);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qualified-icon i {
    color: white;
    z-index: 2;
    position: relative;
}

.qualified-icon.hot {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #059669;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.qualified-icon.warm {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #059669;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.qualified-icon.qualified {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #059669;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.qualified-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.qualified-icon.hot:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.qualified-icon.warm:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.qualified-icon.qualified:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    animation: trophy-shine 2s infinite;
}

@keyframes rocket-pulse {
    0%, 100% { transform: translateY(-3px) scale(1.05); }
    50% { transform: translateY(-5px) scale(1.08); }
}

@keyframes trophy-shine {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
    100% { filter: brightness(1); }
}

.stage-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.stage-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    border-left: 4px solid var(--border);
}

.flow-stage.after .detail-item {
    border-left-color: var(--secondary);
}

.detail-metric {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.detail-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: right;
    flex: 1;
    margin-left: 0.5rem;
}

/* Transformation Arrow */
.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.magic-wand {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    animation: magicFloat 3s ease-in-out infinite;
}

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

.arrow-line {
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    position: relative;
}

.arrow-head {
    position: absolute;
    right: -8px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 12px solid var(--primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.arrow-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Transformation Benefits */
.transformation-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}

.benefit-icon i {
    font-size: 2rem;
}

.benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

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

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.steps-timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
}

/* Use Cases */
.use-cases {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.use-case-card h3 {
    margin-bottom: 0.5rem;
}

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

.use-case-metric {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: white;
}

.demo-container {
    max-width: 600px;
    margin: 0 auto;
}

.demo-card {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
}

.demo-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.demo-header p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.demo-button {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.demo-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-note {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 0.875rem;
    opacity: 0.9;
}

.cta-note i {
    margin-right: 0.25rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
}

/* Evolution of Lead Capture Section */
.evolution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.evolution-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.evolution-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, #10b981 100%);
    z-index: 1;
    transform: translateY(-50%);
}

.evolution-stage {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.evolution-stage:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.evolution-stage.outdated {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.evolution-stage.current {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.evolution-stage.future {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    transform: scale(1.05);
}

.evolution-stage.future:hover {
    transform: scale(1.05) translateY(-10px);
}

.stage-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.evolution-stage.outdated .stage-icon {
    background: #ef4444;
}

.evolution-stage.current .stage-icon {
    background: #f59e0b;
}

.evolution-stage.future .stage-icon {
    background: #10b981;
}

.stage-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stage-era {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    display: inline-block;
}

.evolution-stage.outdated .stage-era {
    background: #ef4444;
    color: white;
}

.evolution-stage.current .stage-era {
    background: #f59e0b;
    color: white;
}

.evolution-stage.future .stage-era {
    background: #10b981;
    color: white;
}

.stage-metrics {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.metric.negative .metric-value {
    color: #ef4444;
}

.metric.neutral .metric-value {
    color: #f59e0b;
}

.metric.positive .metric-value {
    color: #10b981;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stage-experience {
    margin-bottom: 1rem;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.experience-item i {
    width: 16px;
    flex-shrink: 0;
}

.text-red {
    color: #ef4444;
}

.text-yellow {
    color: #f59e0b;
}

.text-green {
    color: #10b981;
}

.future-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.evolution-cta {
    text-align: center;
    margin-top: 4rem;
}

.evolution-cta h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.winning-point {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border);
}

.winning-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.point-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.point-icon i {
    font-size: 2rem;
    color: var(--primary);
    z-index: 2;
}

.icon-accent {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.icon-accent i {
    font-size: 0.75rem !important;
    color: white !important;
}

.winning-point:hover .point-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
}

.winning-point:hover .icon-accent {
    animation: pulse 1.5s infinite;
}

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

.winning-point h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.winning-point p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .transformation-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem auto;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: space-around;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 100px;
    }
    
    .hero-visual {
        max-width: 100%;
        overflow: hidden;
    }
    
    .voice-demo-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .transformation-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .flow-arrow {
        display: none;
    }
    
    /* Transformation Benefits Mobile */
    .transformation-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    /* Qualified Icons Mobile */
    .qualified-icon.hot,
    .qualified-icon.warm,
    .qualified-icon.qualified {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .benefit-card {
        padding: 2rem 1rem;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
    }
    
    .benefit-icon i {
        font-size: 1.75rem;
    }
    
    .features-grid,
    .steps-timeline,
    .use-cases-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .evolution-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .evolution-timeline::before {
        display: none;
    }
    
    .evolution-stage.future {
        transform: none;
    }
    
    .evolution-stage.future:hover {
        transform: translateY(-10px);
    }
    
    .winning-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* CTA Section Mobile Styles */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.2;
        padding: 0 1rem;
    }
    
    .cta-content > p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-note {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-wrapper {
        padding: 0 15px;
    }
    
    .hero {
        padding: 110px 0 40px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .voice-demo-card {
        padding: 1rem;
    }
    
    .dual-mic-interface {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .speech-display {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .transformation-section {
        padding: 60px 0;
    }
    
    .flow-stage {
        padding: 1.5rem;
    }
    
    .evolution-cta h3 {
        font-size: 1.5rem;
    }
    
    .winning-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .winning-point {
        padding: 1.5rem;
    }
    
    .point-icon {
        width: 64px;
        height: 64px;
    }
    
    .point-icon i {
        font-size: 1.5rem;
    }
    
    .icon-accent {
        width: 20px;
        height: 20px;
        top: -6px;
        right: -6px;
    }
    
    .icon-accent i {
        font-size: 0.65rem !important;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-card,
    .use-case-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Transformation Benefits Smaller Mobile */
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    /* Qualified Icons Smaller Mobile */
    .qualified-icon.hot,
    .qualified-icon.warm,
    .qualified-icon.qualified {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .benefit-card h4 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    .speech-display {
        min-width: 100%;
    }
    
    .speech-bubble {
        max-width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .dual-mic-interface {
        padding: 1rem;
    }
    
    .mic-container {
        scale: 0.9;
    }
    
    .transformation-flow {
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .flow-stage {
        padding: 1.25rem;
    }
    
    /* Transformation Benefits Small Screens */
    .transformation-benefits {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    /* Qualified Icons Small Screens */
    .qualified-icons {
        gap: 0.5rem;
    }
    
    .qualified-icon.hot,
    .qualified-icon.warm,
    .qualified-icon.qualified {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .benefit-card {
        padding: 1.25rem 0.75rem;
    }
    
    .benefit-card h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .benefit-icon i {
        font-size: 1.25rem;
    }
    
    /* CTA Section for Small Screens */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .cta-content > p {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        gap: 0.75rem;
    }
    
    .cta-buttons .btn-lg {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .cta-note {
        font-size: 0.75rem;
    }
    
    /* Winning Points Small Screens */
    .point-icon {
        width: 56px;
        height: 56px;
    }
    
    .point-icon i {
        font-size: 1.25rem;
    }
    
    .icon-accent {
        width: 18px;
        height: 18px;
        top: -5px;
        right: -5px;
    }
    
    .icon-accent i {
        font-size: 0.6rem !important;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-wrapper {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .voice-demo-card {
        padding: 0.75rem;
    }
    
    /* CTA Section for Extra Small Screens */
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-content h2 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .cta-content > p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .cta-note {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .cta-note i {
        display: block;
        margin-bottom: 0.25rem;
    }
    
    /* Transformation Benefits Extra Small */
    .transformation-benefits {
        margin-top: 1rem;
        gap: 0.75rem;
    }
    
    .benefit-card {
        padding: 1rem 0.5rem;
    }
    
    .benefit-card h4 {
        font-size: 0.9rem;
    }
    
    .benefit-card p {
        font-size: 0.75rem;
    }
    
    .benefit-icon {
        width: 36px;
        height: 36px;
    }
    
    .benefit-icon i {
        font-size: 1rem;
    }
    
    /* Winning Points Extra Small */
    .point-icon {
        width: 48px;
        height: 48px;
    }
    
    .point-icon i {
        font-size: 1rem;
    }
    
    .icon-accent {
        width: 16px;
        height: 16px;
        top: -4px;
        right: -4px;
    }
    
    .icon-accent i {
        font-size: 0.5rem !important;
    }
    
    .winning-point {
        padding: 1.25rem 0.75rem;
    }
    
    .winning-point h4 {
        font-size: 0.95rem;
    }
    
    .winning-point p {
        font-size: 0.8rem;
    }
    
    /* Qualified Icons Extra Small */
    .qualified-icons {
        gap: 0.4rem;
    }
    
    .qualified-icon.hot,
    .qualified-icon.warm,
    .qualified-icon.qualified {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}