/* Landing Page Styles for Devdee Laykhar AI */

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

body {
    font-family: 'Prompt', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-white {
    background: white;
    color: #667eea;
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    background: white;
    color: #667eea;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Urgency Banner (Sticky Top) */
.urgency-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.5);
    transition: transform 0.3s ease;
}

.urgency-banner.hidden {
    transform: translateY(-100%);
}

.urgency-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}

.urgency-icon {
    font-size: 1.2rem;
    color: #fcd34d;
    flex-shrink: 0;
    animation: shake 0.5s ease-in-out infinite;
}

.urgency-text {
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.urgency-text .highlight {
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Countdown Timer */
.countdown-timer {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    background: rgba(0, 0, 0, 0.25);
    padding: 6px 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

.countdown-value {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
    display: inline-block;
}

.countdown-separator {
    font-weight: 700;
    opacity: 0.8;
}

/* Urgency CTA Button */
.urgency-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    flex-shrink: 0;
    white-space: nowrap;
}

.urgency-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
    color: white !important;
}

.banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Animations for urgency banner */
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

@media (max-width: 900px) {
    .urgency-inner {
        flex-wrap: wrap;
        gap: 8px;
    }
    .urgency-text {
        white-space: normal;
        text-align: center;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .urgency-banner {
        padding: 10px 15px;
    }
    .urgency-inner {
        gap: 8px;
        position: relative;
        padding-right: 35px;
    }
    .urgency-text {
        font-size: 0.8rem;
        order: 1;
        width: 100%;
    }
    .urgency-icon {
        display: none;
    }
    .countdown-timer {
        order: 2;
    }
    .urgency-btn {
        order: 3;
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    .banner-close {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 48px; /* Below the free trial banner */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .navbar {
        top: 85px; /* Taller banner on mobile */
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.navbar.scrolled .logo {
    color: #667eea;
}

.logo i {
    font-size: 1.8rem;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
    color: #64748b;
}

.nav-links a:hover {
    color: white;
}

.navbar.scrolled .nav-links a:hover {
    color: #667eea;
}

.btn-login {
    padding: 10px 20px;
    border-radius: 8px;
}

.btn-signup {
    padding: 10px 20px;
    background: white;
    color: #667eea !important;
    border-radius: 8px;
}

.navbar.scrolled .btn-signup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
    color: #667eea;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 15px;
}

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

.mobile-menu a {
    color: #1e293b;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
}

.mobile-menu a:hover {
    background: #f1f5f9;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px; /* Extra top padding for banner */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
}

.hero-bg::before {
    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.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-content {
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(to right, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Mockup */
.hero-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s;
}

.hero-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.mockup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #28ca42; }

.mockup-title {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.mockup-content {
    padding: 24px;
}

.mockup-audio {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 20px;
}

.mockup-audio i {
    font-size: 2rem;
    color: #667eea;
}

.audio-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.audio-wave span {
    width: 4px;
    height: 20px;
    background: #667eea;
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.audio-wave span:nth-child(2) { animation-delay: 0.1s; }
.audio-wave span:nth-child(3) { animation-delay: 0.2s; }
.audio-wave span:nth-child(4) { animation-delay: 0.3s; }
.audio-wave span:nth-child(5) { animation-delay: 0.4s; }
.audio-wave span:nth-child(6) { animation-delay: 0.5s; }
.audio-wave span:nth-child(7) { animation-delay: 0.6s; }
.audio-wave span:nth-child(8) { animation-delay: 0.7s; }
.audio-wave span:nth-child(9) { animation-delay: 0.8s; }
.audio-wave span:nth-child(10) { animation-delay: 0.9s; }

@keyframes wave {
    0%, 100% { height: 10px; }
    50% { height: 30px; }
}

.mockup-transcript {
    margin-bottom: 20px;
}

.transcript-line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    margin-bottom: 10px;
}

.transcript-line.short { width: 60%; }
.transcript-line.medium { width: 80%; }

.mockup-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
}

.mockup-summary i {
    animation: sparkle 1.5s infinite;
}

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

/* Trusted By */
.trusted-by {
    background: #f8fafc;
    padding: 40px 0;
}

.trusted-by .container {
    text-align: center;
}

.trusted-by p,
.trusted-by .trusted-by-title {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 1rem;
    font-weight: 400;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-weight: 500;
}

.trust-logo i {
    font-size: 1.5rem;
}

/* Free Trial CTA Section */
.free-trial-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.free-trial-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.free-trial-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

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

.free-trial-icon i {
    font-size: 3rem;
    color: white;
}

.free-trial-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.free-trial-content > p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.free-trial-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-weight: 500;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.cta-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #64748b;
}

.cta-note i {
    color: #10b981;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .free-trial-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .free-trial-icon {
        width: 80px;
        height: 80px;
    }

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

    .free-trial-content h2 {
        font-size: 1.4rem;
    }

    .free-trial-benefits {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        justify-content: center;
    }

    .btn-cta-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

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

/* Features Section */
.features {
    padding: 100px 0;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #f1f5f9;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

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

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

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #f8fafc;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.step-content p {
    font-size: 0.9rem;
    color: #64748b;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.3rem;
    color: #667eea;
}

.step-connector {
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 2px;
}

/* Use Cases Section - styles moved inline to index.php */

/* Demo Section */
.demo-section {
    padding: 100px 0;
}

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

.demo-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.demo-text p {
    color: #64748b;
    margin-bottom: 24px;
}

.demo-features {
    list-style: none;
}

.demo-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #1e293b;
}

.demo-features i {
    color: #22c55e;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 16px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8fafc;
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.07);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #1e293b;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-price {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.pricing-card.popular .pricing-price {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
}

.pricing-credits {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #667eea;
}

.pricing-card.popular .pricing-credits {
    color: #ffd700;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.pricing-features i {
    color: #22c55e;
}

.pricing-card.popular .pricing-features i {
    color: #ffd700;
}

.pricing-card .btn-outline {
    border-color: #667eea;
    color: #667eea;
}

.pricing-card.popular .btn-primary {
    background: white;
    color: #667eea;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #64748b;
}

.pricing-note i {
    color: #667eea;
}

/* Pain Points Section */
.pain-points {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pain-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    display: flex;
    gap: 20px;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.pain-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pain-icon i {
    font-size: 1.5rem;
    color: #dc2626;
}

.pain-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.pain-problem {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.pain-solution {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 8px;
    border-left: 3px solid #22c55e;
}

.pain-solution i {
    color: #22c55e;
    font-size: 1rem;
    margin-top: 2px;
}

.pain-solution span {
    color: #166534;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #f8fafc;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.compare-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.compare-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.compare-card.highlight {
    border: 2px solid #667eea;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.compare-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.compare-icon i {
    font-size: 1.5rem;
    color: white;
}

.compare-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

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

.compare-vs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vs-us, .vs-them {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.vs-us {
    background: #f0fdf4;
    color: #166534;
}

.vs-us i {
    color: #22c55e;
}

.vs-them {
    background: #fef2f2;
    color: #991b1b;
}

.vs-them i {
    color: #dc2626;
}

/* Pricing Preview Section */
.pricing-preview {
    padding: 100px 0;
    background: white;
}

.pricing-preview .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card.popular {
    border: 2px solid #667eea;
    transform: scale(1.05);
    z-index: 1;
}

.price-card.popular:hover {
    transform: scale(1.07);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e2e8f0;
    color: #64748b;
}

.price-card.free .price-badge {
    background: #dbeafe;
    color: #1d4ed8;
}

.price-card.popular .price-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.price-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    margin-top: 10px;
}

.price-amount {
    margin-bottom: 8px;
}

.price-amount .currency {
    font-size: 1.5rem;
    color: #64748b;
    vertical-align: top;
}

.price-amount .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
}

.price-card.popular .price-amount .amount {
    color: #667eea;
}

.price-per {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #475569;
    font-size: 0.95rem;
}

.price-features i {
    color: #22c55e;
    font-size: 0.9rem;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.pricing-note p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-note i {
    color: #667eea;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content i {
    font-size: 2rem;
    color: #667eea;
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-content p {
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info strong {
    display: block;
    color: #1e293b;
}

.author-info span {
    font-size: 0.85rem;
    color: #64748b;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Footer */
.footer {
    background: #1e293b;
    padding: 60px 0 30px;
    color: white;
}

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

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

.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-mockup {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .pricing-preview .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .price-card.popular {
        transform: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: none;
    }

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

    .demo-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero {
        padding: 150px 0 60px; /* Extra top padding for banner on mobile */
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .pain-points-grid {
        grid-template-columns: 1fr;
    }

    .pain-card {
        flex-direction: column;
        text-align: center;
    }

    .pain-solution {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .compare-card {
        text-align: center;
    }

    .compare-icon {
        margin: 0 auto 20px;
    }

    .compare-vs {
        align-items: center;
    }

    .pricing-preview .pricing-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .step-connector {
        width: 3px;
        height: 30px;
    }

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

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
