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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: #1a202c;
}

h2 {
    font-size: 2.5rem;
    color: #1a202c;
}

h3 {
    font-size: 1.5rem;
    color: #1a202c;
}

p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #718096;
    margin-top: 0.5rem;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #38a169;
    font-size: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 700px;
    margin: 3rem auto 0;
}

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

.hero-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #38a169;
    display: block;
}

.hero-stat .label {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

/* CTA Button */
.cta-button {
    background: #38a169;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background: #2f855a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(56, 161, 105, 0.3);
}

/* Sections */
.how-it-works, .why-us, .testimonials, .pricing, .faq, .cta-final {
    padding: 80px 0;
}

.how-it-works {
    background: white;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #e6fffa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #319795;
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

/* Why Us */
.why-us {
    background: #f7fafc;
}

.benefits {
    max-width: 900px;
    margin: 0 auto;
}

.benefit {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #e6fffa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit h3 {
    margin-bottom: 0.5rem;
}

.benefit p {
    color: #4a5568;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    background: white;
}

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

.testimonial {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stars {
    color: #ecc94b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote {
    font-size: 1.125rem;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author-name {
    font-weight: 600;
    color: #1a202c;
}

.author-title {
    font-size: 0.9rem;
    color: #718096;
}

/* Pricing */
.price {
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

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

.price-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.price-card:hover {
    border-color: #cbd5e0;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: #38a169;
    position: relative;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #38a169;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-description {
    color: #718096;
    margin-top: 0.5rem;
}

.features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features li {
    padding: 0.75rem 0;
    color: #4a5568;
    font-size: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.btn-primary {
    background: #38a169;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-primary:hover {
    background: #2f855a;
}

.btn-primary.featured {
    background: #38a169;
}

.btn-primary.large {
    font-size: 1.125rem;
    padding: 18px 40px;
}

.guarantee {
    margin-top: 3rem;
}

.guarantee-box {
    background: #f0fff4;
    border: 2px solid #9ae6b4;
    border-radius: 12px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee h4 {
    color: #22543d;
    margin-bottom: 0.5rem;
}

.guarantee p {
    color: #276749;
    margin-bottom: 0;
}

/* FAQ */
.faq {
    background: #f7fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    color: white;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.cta-final p {
    color: #cbd5e0;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

/* Form */
.form-section {
    background: #f7fafc;
    padding: 100px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid #e2e8f0;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #718096;
    margin-bottom: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: white;
    color: #1a202c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #38a169;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.submit-btn {
    background: #38a169;
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #2f855a;
}

/* Success State */
.success-state {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-state h3 {
    margin-bottom: 1rem;
    color: #1a202c;
}

.success-state p {
    color: #4a5568;
}

.success-note {
    color: #718096;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    color: #cbd5e0;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .guarantee-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
}