/* -------------------------------------------------- */
/* Reset and Base Styles */
/* -------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

/* -------------------------------------------------- */
/* Container Utility */
/* -------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* -------------------------------------------------- */
/* Typography */
/* -------------------------------------------------- */
h1, h2, h3, h4 {
    font-weight: 700;
    color: #222;
    margin-top: 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

/* -------------------------------------------------- */
/* Buttons */
/* -------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #4F46E5;
    color: #fff;
}

.btn-primary:hover {
    background: #3b36b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #3b36b2;
    color: #fff;
    transform: translateY(-2px);
}
.login-btn{
    background: #4F46E5;
    color: #fff;
    border: 2px solid #ffffff;
}
/* -------------------------------------------------- */
/* Header & Navigation */
/* -------------------------------------------------- */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4F46E5;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #4F46E5;
}

.nav-btns {
    display: flex;
    gap: 16px;
}

/* -------------------------------------------------- */
/* Hero Section */
/* -------------------------------------------------- */
.hero-gradient {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    color: #fff;
    padding: 80px 0 60px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1 1 500px;
}

.hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-img {
    flex: 1 1 400px;
    text-align: center;
}

.hero-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* -------------------------------------------------- */
/* Features Section */
/* -------------------------------------------------- */
.features-section {
    background: #f9fafb;
    padding: 80px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.features-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 32px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(79, 70, 229, 0.1);
}

.feature-icon.secondary {
    background: rgba(16, 185, 129, 0.1);
}

.feature-icon i {
    font-size: 28px;
}

.feature-icon-main {
    color: #4F46E5;
}

.feature-icon-secondary {
    color: #10B981;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-desc {
    color: #666;
}

/* -------------------------------------------------- */
/* Pricing Section */
/* -------------------------------------------------- */
.pricing-section {
    background: #fff;
    padding: 80px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.pricing-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #f9fafb;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}
.pricing-card .btn-outline{
    border: 1px solid #4F46E5;
    color: #4F46E5;
}
.pricing-card.popular {
    background: #4F46E5;
    color: #fff;
    transform: scale(1.05);
    border-color: #4F46E5;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: #10B981;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}
.pricing-card .btn-primary{
    border: 1px solid white;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
}

.pricing-card.popular .pricing-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-plan-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-plan-desc {
    color: #666;
    margin-bottom: 16px;
}

.pricing-card.popular .pricing-plan-desc {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    color: #666;
    font-size: 1rem;
}

.pricing-card.popular .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #444;
}

.pricing-card.popular .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features i {
    margin-right: 12px;
}

.pricing-features .fa-check {
    color: #10B981;
}

.pricing-card.popular .pricing-features .fa-check {
    color: #fff;
}

.pricing-features .fa-times {
    color: #ef4444;
}

.pricing-card.popular .pricing-features .fa-times {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-btn {
    width: 100%;
}
.pricin
.pricing-footer {
    text-align: center;
    margin-top: 48px;
    color: #666;
}

.pricing-footer a {
    color: #4F46E5;
    text-decoration: underline;
}

/* -------------------------------------------------- */
/* Testimonials Section */
/* -------------------------------------------------- */
.testimonials-section {
    background: #f9fafb;
    padding: 80px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.testimonials-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.testimonial-user {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 16px;
    object-fit: cover;
}

.testimonial-name {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.testimonial-role {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #444;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-stars {
    color: #fbbf24;
}

/* -------------------------------------------------- */
/* Signup Section */
/* -------------------------------------------------- */
.signup-section {
    background: #fff;
    padding: 80px 0;
}

.signup-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.signup-info {
    flex: 1 1 400px;
    background: #4F46E5;
    color: #fff;
    padding: 48px;
}

.signup-info h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #fff;
}

.signup-info p {
    margin-bottom: 32px;
    opacity: 0.9;
    color: #fff;
}

.signup-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.signup-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: #fff;
}

.signup-benefits i {
    margin-top: 4px;
    margin-right: 12px;
    color: #10B981;
}

.signup-form {
    flex: 1 1 400px;
    padding: 48px;
}

.signup-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #444;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.form-checkbox a {
    color: #4F46E5;
    text-decoration: underline;
}

.signup-form button {
    width: 100%;
    padding: 14px;
    background: #4F46E5;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.signup-form button:hover {
    background: #3b36b2;
}

/* -------------------------------------------------- */
/* FAQ Section */
/* -------------------------------------------------- */
.faq-section {
    background: #f9fafb;
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.faq-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-card.active .faq-content {
    padding: 0 24px 24px;
    max-height: 500px;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

.faq-footer {
    text-align: center;
    margin-top: 48px;
    color: #666;
}

.faq-footer a {
    color: #4F46E5;
    text-decoration: underline;
}

/* -------------------------------------------------- */
/* CTA Section */
/* -------------------------------------------------- */
.cta-section {
    background: #4F46E5;
    color: #fff;
    padding: 64px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.cta-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
    background: #fff;
    color: #4F46E5;
}

.cta-btn:hover {
    background: #f3f3f3;
    color: #3b36b2;
}

/* -------------------------------------------------- */
/* Footer */
/* -------------------------------------------------- */
.footer {
    background: #1F2937;
    color: #ccc;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.footer-desc {
    color: #ccc;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #4F46E5;
    color: #fff;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* -------------------------------------------------- */
/* Responsive Design */
/* -------------------------------------------------- */
@media (max-width: 900px) {
    .nav {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .signup-container {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}