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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    color: #1e293b;
    font-size: 16px;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header - Mobile First */
header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 32px rgba(15, 23, 42, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    min-height: 88px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #667eea;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover {
    color: #1e293b;
}

.nav-links a:not(.book-demo-btn):hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #667eea;
    border-radius: 1px;
}

.book-demo-btn {
    background: #667eea !important;
    color: white !important;
    padding: 14px 28px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.2s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.book-demo-btn:hover {
    background: #5a67d8 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25) !important;
    color: white !important;
}

.book-demo-btn::before {
    display: none !important;
}

.nav-cta {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(29, 78, 216, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.nav-cta:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(29, 78, 216, 0.4);
}

/* Hero Section - Mobile First */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 35%, #3b82f6 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(167, 243, 208, 0.05) 0%, transparent 40%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: #93c5fd;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.035em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero .tagline {
    font-size: 1.25rem;
    margin-bottom: 28px;
    font-weight: 500;
    color: #e0f2fe;
    opacity: 0.95;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 48px;
    color: #bae6fd;
    line-height: 1.65;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 50px;
}

.hero-cta a {
    width: 100%;
    max-width: 280px;
    min-width: 200px;
}

.primary-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 30px rgba(245, 158, 11, 0.35),
        0 2px 8px rgba(239, 68, 68, 0.25);
    width: 100%;
    max-width: 300px;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.primary-btn::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.7s ease;
}

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.primary-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 15px 45px rgba(245, 158, 11, 0.4),
        0 5px 15px rgba(239, 68, 68, 0.3);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    text-align: center;
}

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

/* Features Preview */
.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 25px 40px -5px rgba(0, 0, 0, 0.25),
        0 15px 20px -5px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(29, 78, 216, 0.15) 100%);
    border-radius: 12px;
    margin: 0 auto 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4) 0%, rgba(29, 78, 216, 0.3) 100%);
    transform: scale(1.15) rotate(5deg);
}

.feature-icon svg {
    color: #60a5fa;
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

.feature-card p {
    color: #e2e8f0;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Trust Signals Section */
.trust-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-section h2 {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 48px;
    font-weight: 800;
    letter-spacing: -0.035em;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: none;
}

.trust-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: white;
    border-radius: 12px;
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.08),
        0 2px 8px rgba(15, 23, 42, 0.04);
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Notification Section */
.notification-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.notification-content {
    max-width: 600px;
    margin: 0 auto;
}

.notification-section h2 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.notification-section p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.75;
}

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

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.demo-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.demo-input.full-width {
    width: 100%;
}

.demo-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.demo-input::placeholder {
    color: #94a3b8;
}
textarea.demo-input {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    line-height: 1.5;
}

select.demo-input {
    cursor: pointer;
}

select.demo-input option {
    padding: 10px;
}

.demo-btn {
    background: #2563eb;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.demo-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.4);
}

.demo-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Comprehensive Features Section */
.features-comprehensive {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    margin: 0 auto 24px auto;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Customer Highlights */
.customer-highlights {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.customer-highlights .section-header h2,
.customer-highlights .section-header p {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    font-weight: 600;
    font-size: 1rem;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.testimonial-metric {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    gap: 24px;
    margin-top: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-icon {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mobile-menu-toggle:hover {
    background: #5a67d8;
    transform: translateY(-1px);
    text-decoration: none;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin: 8px 16px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 16px 0;
    margin: 0;
}

.mobile-menu li {
    padding: 12px 20px;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.mobile-menu .book-demo-btn {
    background: #667eea !important;
    color: white !important;
    padding: 12px 16px !important;
    border-radius: 6px !important;
    text-align: center;
    margin: 0 4px;
}

/* Mobile overflow fixes for very small screens */
@media (max-width: 375px) {
    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .hero-content, .section-header, .form-row {
        max-width: 100%;
        box-sizing: border-box;
    }

    * {
        box-sizing: border-box;
    }
}

/* Mobile-first form responsive design */
@media (max-width: 900px) {
    nav {
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    /* Ensure desktop Book a Demo button is hidden on mobile */
    .book-demo-btn {
        display: none !important;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .demo-form {
        max-width: 100%;
    }

    .solution-preview {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 32px 24px !important;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    .steps {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .step::after {
        display: none !important;
    }

    .step-icon {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        min-height: 80px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
        font-size: 2rem !important;
    }
}

.early-access-note {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #64748b;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 48px 0 64px 0;
}

.pain-point {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.12);
}

.pain-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px auto;
    color: #dc2626;
}

.pain-icon svg:first-child {
    z-index: 2;
    position: relative;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .pain-icon svg:first-child {
        stroke-width: 2.5;
    }
}

.icon-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.15;
}

.background-pattern {
    opacity: 0.3;
}

.pain-point h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.pain-point p {
    color: #64748b;
    line-height: 1.6;
}

.solution-preview {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(280px, 1fr);
    gap: 48px;
    align-items: center;
    margin-top: 64px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    color: white;
    max-width: 100%;
    overflow: hidden;
}

.solution-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: white;
}

.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    font-weight: 500;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

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

.demo-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    min-width: 280px;
}

.demo-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

.demo-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #374151;
}

.demo-line.highlight {
    background: linear-gradient(135deg, #667eea20, #764ba220);
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 600;
    color: #667eea;
}

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

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Mobile steps override with maximum specificity */
body .how-it-works .steps {
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 480px) {
    body .how-it-works .steps {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .step-icon {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        min-height: 80px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
        font-size: 2rem !important;
    }
}

.step {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #2563eb;
    opacity: 0.3;
}

.step:last-child::after {
    display: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.25);
}

.step-icon svg {
    stroke: white;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #111827;
}

.step p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: none;
}

@media (max-width: 768px) {
    .step-details {
        width: 100% !important;
        max-width: 100% !important;
    }

    .step-details span {
        width: 100% !important;
        max-width: 100% !important;
        white-space: nowrap;
        overflow: visible;
    }
}

.step-details span {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

/* Integrations Section */
.integrations-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.integration-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.08),
        0 2px 8px rgba(15, 23, 42, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.12),
        0 8px 32px rgba(15, 23, 42, 0.08);
    border-color: #e2e8f0;
}

.integration-card.primary {
    border-color: #3b82f6;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.integration-card.primary:hover {
    border-color: #2563eb;
    transform: translateY(-8px) scale(1.02);
}

.integration-card.coming-soon {
    opacity: 0.7;
}

.integration-logo {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.integration-card:hover .integration-logo {
    background: rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

.integration-logo img {
    max-width: 48px;
    max-height: 48px;
}

.fallback-logo {
    font-weight: 700;
    color: #2563eb;
    font-size: 14px;
}

.integration-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1e293b;
}

.integration-card p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.integration-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.integration-card .integration-badge {
    background: #dcfce7;
    color: #166534;
}

.integration-card.primary .integration-badge {
    background: #dcfce7;
    color: #166534;
}

.integration-card.coming-soon .integration-badge {
    background: #f1f5f9;
    color: #64748b;
}

.integration-cta {
    text-align: center;
    margin-top: 60px;
}

.integration-cta p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Pricing */
.pricing-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.06),
        0 4px 16px rgba(15, 23, 42, 0.04);
    text-align: center;
    position: relative;
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    border-color: #3b82f6;
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.15),
        0 8px 32px rgba(59, 130, 246, 0.1);
}

.pricing-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow:
        0 12px 40px rgba(59, 130, 246, 0.15),
        0 4px 20px rgba(15, 23, 42, 0.08);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.plan-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.plan-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 20px;
}

.price {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 24px 0 8px;
    line-height: 1;
}

.price span {
    font-size: 0.875rem;
    color: #64748b;
}

.price-subtitle {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin: 25px 0 30px;
    text-align: left;
}

.pricing-features li {
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
    font-size: 0.875rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pricing-cta:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.35);
}

.pricing-cta.secondary {
    background: #f3f4f6;
    color: #374151;
}

.pricing-cta.secondary:hover {
    background: #e5e7eb;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #2563eb;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 20px;
    color: #475569;
}

.testimonial-author {
    font-weight: 600;
    color: #111827;
}

.testimonial-role {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Customer Success Metrics */
.customer-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 40px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

/* Enhanced Testimonials */
.testimonial.featured {
    grid-column: span 1;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.business-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    overflow: hidden;
}
.business-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-info {
    flex: 1;
}

.business-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.business-details {
    font-size: 0.75rem;
    color: #64748b;
}

.testimonial-impact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 15px;
}

.testimonial-impact span {
    font-size: 0.75rem;
    color: #059669;
    font-weight: 500;
}
.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px auto;
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}
.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #111827;
    color: white;
    padding: 64px 0 32px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.footer-description {
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.7;
}
.contact-info {
    margin-bottom: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 0.95rem;
}
.contact-item a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    color: #64748b;
    font-size: 0.9rem;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 30px rgba(15, 23, 42, 0.12),
        0 4px 16px rgba(15, 23, 42, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Desktop Breakpoints - Mobile First Approach */
@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .hero-cta a {
        flex: 0 0 auto;
        min-width: 160px;
        max-width: 160px;
        width: 160px;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-form .form-row {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .solution-preview {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 32px 20px !important;
        text-align: center;
    }

    .steps {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .step::after {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        list-style: none;
        gap: 32px;
        align-items: center;
    }

    .nav-links a {
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.875rem;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #2563eb;
    }

    .nav-cta {
        padding: 12px 24px;
        font-size: 16px;
    }

    .logo {
        font-size: 28px;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }

    .hero .tagline {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }

    .hero p {
        font-size: 1.125rem;
        margin-bottom: 50px;
        max-width: 42rem;
    }

    .features-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 48px;
    }

    .before-after {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-top: 60px;
    }

    .before, .after {
        padding: 40px;
        border-radius: 20px;
    }

    .time-waster, .time-saver {
        padding: 24px;
        margin: 20px 0;
    }

    .step::after {
        content: '';
        position: absolute;
        top: 50px;
        right: -20px;
        width: 40px;
        height: 2px;
        background: #2563eb;
        opacity: 0.3;
    }

    .step:last-child::after {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 60px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        padding: 30px;
    }

    .pricing-card.featured {
        transform: scale(1.05);
    }

    .trust-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-badges {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }

    .trust-section, .problem-section, .how-it-works, .pricing-section, .testimonials {
        padding: 80px 0;
    }

    .notification-section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }
}