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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #1A759F;
    --text-dark: #1A1A1A;
    --text-light: #6B6B6B;
    --bg-light: #F8F9FA;
    --bg-cream: #FFF8F3;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF8F3 0%, #FFFFFF 100%);
    padding: 20px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 0 0 0 100px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button.large {
    padding: 16px 40px;
    font-size: 18px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* Content Split Sections */
.safe-section,
.ai-section,
.feature-highlight {
    padding: 100px 0;
}

.safe-section {
    background: var(--bg-cream);
}

.ai-section {
    background: white;
}

.feature-highlight {
    background: var(--bg-light);
}

.feature-highlight.alt {
    background: white;
}

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

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--text-dark);
}

.content-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-text p.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 10px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.badge-new {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

/* Value Section */
.value-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.value-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-text {
    color: #FFD700;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Automation Section */
.automation-section {
    padding: 100px 0;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.automation-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.stat-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 20px;
    opacity: 0.9;
}

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

.how-it-works h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 80px;
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.step-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.arrow {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-cream);
}

.testimonials h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

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

.testimonial-card .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.testimonial-card .quote {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.author strong {
    display: block;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
}

.pricing h2 {
    color: white;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.price-badge {
    background: var(--text-dark);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.price {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 5px;
}

.price-label {
    font-size: 18px;
    opacity: 0.8;
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.features-list li {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 10px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    opacity: 0.6;
}

.payment-methods img {
    height: 30px;
}

.payment-icon {
    font-size: 32px;
    filter: grayscale(1);
    opacity: 0.6;
}

/* Goals Section */
.goals-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.goals-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.4;
    color: var(--text-dark);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

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

.cta-box .icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.cta-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.guarantee {
    font-size: 16px !important;
    margin-top: 20px !important;
    opacity: 0.9;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .content-split,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-split.reverse {
        direction: ltr;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .content-text h2,
    .value-section h2,
    .automation-section h2,
    .how-it-works h2,
    .testimonials h2,
    .pricing h2,
    .faq h2,
    .cta-box h2 {
        font-size: 32px;
    }
    
    .feature-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 20px auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content,
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 15px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .cta-button.large {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .content-text h2 {
        font-size: 26px;
    }
    
    .content-text p,
    .benefits-list li {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 56px;
    }
}

