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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
    background-color: #FAFAFA;
}

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

/* Header */
.header {
    background: #FAFAFA;
    padding: 16px 0;
    border-bottom: 1px solid #E5E5E5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #2D2D2D;
    text-decoration: none;
    transition: color 0.2s ease;
}

.brand-name:hover {
    color: #00D4AA;
}

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

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

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2D2D2D;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image,
.toolkit-image,
.learning-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.template-image,
.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.cta-button {
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    color: #FAFAFA;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #00B894 0%, #009A7B 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
}

/* Section Content Wrapper */
.section-content {
    text-align: center;
}

.section-content h2 {
    text-align: center;
}

.section-content .section-subtitle {
    text-align: center;
}

/* Features Overview */
.features-overview {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.features-overview h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 48px;
    text-align: center;
}

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

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 12px;
}

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

/* Toolkit Section */
.toolkit {
    padding: 100px 0;
    background-color: #F8F9FA;
}

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

.toolkit-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 24px;
    line-height: 1.2;
}

.toolkit-text p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 24px;
    line-height: 1.7;
}

.toolkit-features {
    list-style: none;
    padding: 0;
}

.toolkit-features li {
    padding: 8px 0;
    color: #666666;
    position: relative;
    padding-left: 24px;
}

.toolkit-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00D4AA;
    font-weight: bold;
}

/* Template Marketplace */
.marketplace {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.marketplace h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 48px;
    text-align: center;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.template-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.template-card-content {
    padding: 24px;
}

.template-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 12px;
}

.template-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.template-price {
    font-size: 24px;
    font-weight: 700;
    color: #00D4AA;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: white;
}

.products h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 48px;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card-content {
    padding: 24px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 12px;
}

.product-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #00D4AA;
    margin-bottom: 16px;
}

.product-button {
    background: linear-gradient(135deg, #B794F6 0%, #9F7AEA 100%);
    color: #FAFAFA;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.product-button:hover {
    background: linear-gradient(135deg, #9F7AEA 0%, #805AD5 100%);
    transform: translateY(-1px);
}

/* Learning Resources */
.learning {
    padding: 100px 0;
    background-color: #F8F9FA;
}

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

.learning-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 24px;
    line-height: 1.2;
}

.learning-text p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.course-feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 8px;
}

.course-feature p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Plans */
.pricing {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.pricing h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 48px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #00D4AA;
    transform: scale(1.05);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 16px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #00D4AA;
    margin-bottom: 24px;
}

.price span {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 8px 0;
    color: #666666;
    position: relative;
    padding-left: 24px;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00D4AA;
    font-weight: bold;
}

.plan-button {
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    color: #FAFAFA;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.plan-button:hover {
    background: linear-gradient(135deg, #00B894 0%, #009A7B 100%);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 48px;
    text-align: center;
}

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

.testimonial-card {
    background: #F8F9FA;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 16px;
    color: #2D2D2D;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #00D4AA;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #F8F9FA;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 48px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666666;
    line-height: 1.6;
}

.contact-item a {
    color: #00D4AA;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #00B894;
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00D4AA;
}

.contact-form button {
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    color: #FAFAFA;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #00B894 0%, #009A7B 100%);
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #2D2D2D;
    color: #FAFAFA;
    padding: 60px 0 24px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand p {
    color: #CCCCCC;
    line-height: 1.6;
}

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

.link-column h4 {
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.link-column ul {
    list-style: none;
    padding: 0;
}

.link-column li {
    margin-bottom: 8px;
}

.link-column a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-column a:hover {
    color: #00D4AA;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    font-size: 14px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #FAFAFA;
    margin: 5% auto;
    padding: 32px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    color: #999999;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #2D2D2D;
}

.modal-content h3 {
    color: #2D2D2D;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
}

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

.modal-content input,
.modal-content select,
.modal-content textarea {
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #00D4AA;
}

.modal-content button {
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    color: #FAFAFA;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-content button:hover {
    background: linear-gradient(135deg, #00B894 0%, #009A7B 100%);
    transform: translateY(-2px);
}

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

    .toolkit-content,
    .learning-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .features-grid,
    .templates-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .section-content h2,
    .toolkit-text h2,
    .learning-text h2 {
        font-size: 28px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .features-overview,
    .toolkit,
    .marketplace,
    .products,
    .learning,
    .pricing,
    .testimonials,
    .contact {
        padding: 60px 0;
    }

    .modal-content {
        margin: 10% auto;
        padding: 24px;
        width: 95%;
    }

    .cta-button,
    .plan-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}