/* ================================================
   CollAI Website - Modern Dark Theme
   ================================================ */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #22d3ee;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a24;
    --bg-elevated: #1e1e2a;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --border: #2e2e3a;
    --border-light: #3f3f4a;
    
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --gradient-secondary: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ================================================
   Reset & Base Styles
   ================================================ */

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

html {
    scroll-behavior: smooth;
}

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

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

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

/* ================================================
   Container & Layout
   ================================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================
   Navigation
   ================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    border-bottom-color: var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
}

.logo-icon {
    font-size: 28px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    padding: 10px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ================================================
   Buttons
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ================================================
   Hero Section
   ================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation: float 20s infinite ease-in-out;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #d946ef;
    bottom: -100px;
    left: -100px;
    animation: float 15s infinite ease-in-out reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    animation: float 18s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Phone Mockup */
.phone-mockup {
    width: 280px;
    height: 580px;
    background: #1a1a24;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid var(--border);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #0a0a0f;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0f0f14;
    border-radius: 32px;
    overflow: hidden;
    padding: 44px 12px 12px;
}

.demo-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
}

.demo-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.demo-status.critical {
    background: var(--danger);
    animation: pulse 1s infinite;
}

.demo-message {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.msg-icon {
    font-size: 20px;
}

.msg-content {
    flex: 1;
}

.msg-content strong {
    display: block;
    font-size: 12px;
    color: var(--danger);
    margin-bottom: 4px;
}

.msg-content p {
    font-size: 12px;
    color: var(--text-secondary);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* ================================================
   Section Styles
   ================================================ */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ================================================
   Features Section
   ================================================ */

.features {
    background: var(--bg-dark);
}

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

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   Comparison Section
   ================================================ */

.comparison {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.comparison-card.collai {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.comparison-card.collai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.comparison-icon {
    font-size: 32px;
}

.comparison-header h3 {
    font-size: 22px;
    font-weight: 700;
    flex: 1;
}

.comparison-badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.comparison-badge.bad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.comparison-badge.good {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.comparison-list {
    list-style: none;
    margin-bottom: 24px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.comparison-list .negative svg {
    stroke: var(--danger);
}

.comparison-list .positive svg {
    stroke: var(--success);
}

.comparison-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
}

.time-label {
    font-size: 14px;
    color: var(--text-muted);
}

.time-value {
    font-size: 20px;
    font-weight: 800;
}

.time-value.bad {
    color: var(--danger);
}

.time-value.good {
    color: var(--success);
}

/* ================================================
   Video Section
   ================================================ */

.video-section {
    background: var(--bg-dark);
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-decoration {
    position: absolute;
    inset: -20px;
    z-index: -1;
}

.video-glow {
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    filter: blur(40px);
}

/* ================================================
   Demo Section
   ================================================ */

.demo-section {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-phone-frame {
    width: 300px;
    height: 620px;
    background: linear-gradient(135deg, #2a2a3a 0%, #1a1a24 100%);
    border-radius: 48px;
    padding: 14px;
    box-shadow: var(--shadow-lg), 
                inset 0 1px 1px rgba(255,255,255,0.05),
                0 0 60px rgba(99, 102, 241, 0.2);
    border: 1px solid var(--border);
    margin: 0 auto;
}

.demo-phone-notch {
    width: 130px;
    height: 32px;
    background: #0a0a0f;
    border-radius: 20px;
    margin: 0 auto 8px;
}

.demo-phone-screen {
    width: 100%;
    height: calc(100% - 60px);
    background: #0f0f14;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

.demo-phone-bar {
    width: 100px;
    height: 5px;
    background: #444;
    border-radius: 10px;
    margin: 12px auto 0;
}

.demo-controls {
    padding: 20px;
}

.demo-controls h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.demo-controls p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.demo-controls .btn {
    margin-bottom: 16px;
}

.demo-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.timeline-item.active {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
}

.timeline-item.completed {
    color: var(--success);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    transition: all var(--transition-fast);
}

.timeline-item.active .timeline-dot {
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
}

.timeline-item.completed .timeline-dot {
    background: var(--success);
}

/* ================================================
   Pricing Section
   ================================================ */

.pricing {
    background: var(--bg-dark);
}

.pricing-card {
    max-width: 450px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.pricing-ribbon {
    position: absolute;
    top: 24px;
    right: -40px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 50px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 8px;
}

.price-value {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 18px;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 12px;
}

.pricing-note {
    font-size: 14px;
    color: var(--success);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    stroke: var(--success);
    stroke-width: 2.5;
    flex-shrink: 0;
}

.pricing-disclaimer {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ================================================
   Contact Section
   ================================================ */

.contact {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 16px 0;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.contact-method:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.contact-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
}

.contact-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ================================================
   Footer
   ================================================ */

.footer {
    background: var(--bg-card);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

/* ================================================
   Responsive Styles
   ================================================ */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 60px;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .demo-controls {
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 500px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .demo-phone-frame {
        width: 260px;
        height: 540px;
    }
}

/* ================================================
   MISSING STYLES - Timeline, Features, Comparison
   ================================================ */

/* Animated Background */
.animated-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #d946ef;
    bottom: -150px;
    left: -100px;
    animation: float 18s infinite ease-in-out reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: 40%;
    left: 30%;
    animation: float 22s infinite ease-in-out;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    bottom: 20%;
    right: 20%;
    animation: float 16s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.1;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { top: -2px; }
    100% { top: 100%; }
}

/* Logo Styles */
.logo-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary);
    filter: blur(15px);
    opacity: 0.5;
    border-radius: 50%;
}

.logo-badge {
    padding: 2px 8px;
    background: var(--gradient-primary);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link-btn {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.badge-live {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--success);
}

.badge-free {
    background: rgba(217, 70, 239, 0.1);
    border-color: rgba(217, 70, 239, 0.3);
    color: #d946ef;
}

/* Hero Title Animation */
.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.word {
/* Always show hero headline text, even if animation fails */
.hero-title .word {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}
        display: inline-block;
        opacity: 0;
        transform: translateY(20px);
        animation: wordFadeIn 0.6s ease forwards;
        animation-delay: calc(var(--delay) * 0.1s);
}

/* Fallback: Always show .word if animation fails or is not supported */
@media (prefers-reduced-motion: reduce), (max-width: 0px) {
    .word {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Extra fallback for static hosting quirks */
.no-js .word {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
}
}

@keyframes wordFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text-animated {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Typewriter */
.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    min-height: 27px;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Button Styles */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.btn-glow:hover::before {
    opacity: 1;
    filter: blur(10px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border-radius: 50%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    font-size: 24px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Phone Container */
.phone-container {
    position: relative;
}

.phone-glow {
    position: absolute;
    inset: -50px;
    background: var(--gradient-glow);
    filter: blur(60px);
    opacity: 0.6;
}

.phone-reflection {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: var(--gradient-primary);
    filter: blur(40px);
    opacity: 0.3;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a3a 0%, #1a1a24 100%);
    border-radius: 40px;
    padding: 8px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
}

.notch-camera {
    width: 8px;
    height: 8px;
    background: #1a1a24;
    border-radius: 50%;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.notch-speaker {
    width: 40px;
    height: 4px;
    background: #1a1a24;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.phone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #444;
    border-radius: 2px;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    animation: floatCard 3s ease-in-out infinite;
}

.card-alert {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.card-ai {
    top: 50%;
    right: -70px;
    animation-delay: 1s;
}

.card-fix {
    bottom: 25%;
    left: -50px;
    animation-delay: 2s;
}

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

.card-icon {
    font-size: 16px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.social-proof-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.tech-stack {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.tech-icon {
    font-size: 20px;
}

/* ================================================
   Timeline / How It Works
   ================================================ */

.how-it-works {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-step {
    display: flex;
    gap: 24px;
    position: relative;
}

.step-marker {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    transition: all var(--transition-normal);
}

.timeline-step:hover .step-number,
.timeline-step.active .step-number {
    background: var(--gradient-primary);
    border-color: transparent;
}

.step-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: stepPulse 2s infinite;
}

@keyframes stepPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.step-content {
    flex: 1;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.timeline-step:hover .step-content {
    border-color: var(--primary);
    transform: translateX(8px);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.step-time {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
}

/* ================================================
   Feature Cards with Icons
   ================================================ */

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-visual {
    position: relative;
}

.feature-screen {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-glow);
    filter: blur(40px);
    z-index: -1;
}

.code-window {
    background: #1e1e2e;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #16161e;
    border-bottom: 1px solid var(--border);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dots span:nth-child(1) { background: #ff5f56; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #27ca40; }

.code-title {
    font-size: 12px;
    color: var(--text-muted);
}

.code-content {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.8;
    overflow-x: auto;
}

.code-comment { color: #6a737d; }
.code-keyword { color: #ff79c6; }
.code-string { color: #50fa7b; }
.code-prop { color: #8be9fd; }
.code-number { color: #bd93f9; }

.feature-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-icon-lg {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
}

.feature-icon-lg svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.feature-info h3 {
    font-size: 28px;
    font-weight: 800;
}

.feature-info p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

/* Feature Card Icons */
.feature-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-card-icon {
    background: var(--gradient-primary);
    border-color: transparent;
}

.feature-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-light);
    stroke-width: 1.5;
    transition: stroke var(--transition-normal);
}

.feature-card:hover .feature-card-icon svg {
    stroke: white;
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
}

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

/* ================================================
   Comparison Section - Side by Side
   ================================================ */

.comparison {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    overflow: hidden;
}

.comparison-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
}

.comparison-card.collai {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.comparison-card.collai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.comparison-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-glow);
    filter: blur(40px);
    z-index: -1;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.comparison-icon {
    font-size: 28px;
}

.comparison-title h3 {
    font-size: 20px;
    font-weight: 700;
}

.comparison-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}

.comparison-badge.bad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.comparison-badge.good {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.comparison-scene {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scene-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    font-size: 14px;
}

.scene-item.negative {
    opacity: 0.7;
}

.scene-icon {
    font-size: 18px;
}

.scene-text {
    flex: 1;
}

.scene-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.scene-arrow {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
}

.comparison-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
}

.result-label {
    font-size: 14px;
    color: var(--text-muted);
}

.result-value {
    font-size: 20px;
    font-weight: 800;
}

.comparison-result.bad .result-value {
    color: var(--danger);
}

.comparison-result.good .result-value {
    color: var(--success);
}

.comparison-mood {
    text-align: center;
    font-size: 32px;
    margin-top: 16px;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--bg-elevated);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-muted);
    align-self: center;
}

/* ================================================
   Quote Section
   ================================================ */

.quote-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.quote-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
}

.quote-icon {
    font-size: 80px;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 40px;
}

.quote-card blockquote {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    font-size: 40px;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
}

.author-title {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

/* ================================================
   Contact Section Enhanced
   ================================================ */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.contact-method:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.contact-method-content {
    flex: 1;
}

.contact-method-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-method-value {
    font-size: 15px;
    font-weight: 600;
}

.contact-method-arrow {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.contact-method:hover .contact-method-arrow {
    transform: translateX(4px);
    color: var(--primary);
}

.contact-form-wrapper {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ================================================
   Footer Enhanced
   ================================================ */

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-tagline {
    color: var(--text-muted);
}

/* ================================================
   Responsive Fixes for New Styles
   ================================================ */

@media (max-width: 1024px) {
    .feature-large {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comparison-visual {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-vs {
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-badges {
        justify-content: center;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}
