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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fffe;
}

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

/* Header Styles */
.header {
    background-color: #f8fffe;
    padding: 1rem 0;
    border-bottom: 1px solid #e0f2f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #4ecdc4;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4ecdc4;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: #4ecdc4;
    color: white;
}

.btn-primary:hover {
    background-color: #45b7aa;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e0f2f1 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4ecdc4;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.checkmark {
    background-color: #4ecdc4;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
}

.unlock {
    background-color: #f0f0f0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.feature-text em {
    color: #666;
    font-style: italic;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
}

.hero-cta a:hover {
    text-decoration: underline;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background-color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background-color: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0f2f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.15);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #4ecdc4;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.stat-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.stat-features li {
    padding: 0.25rem 0;
    color: #555;
    position: relative;
    padding-left: 1rem;
}

.stat-features li:before {
    content: "•";
    color: #4ecdc4;
    position: absolute;
    left: 0;
}

.stat-cta {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.stat-cta:hover {
    color: #45b7aa;
    text-decoration: underline;
}

/* Intro Section */
.intro-section {
    padding: 4rem 0;
    background-color: #f8fffe;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: white;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0f2f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-level {
    display: inline-block;
    background-color: #4ecdc4;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.25rem 0;
    color: #555;
    position: relative;
    padding-left: 1rem;
}

.service-features li:before {
    content: "✓";
    color: #4ecdc4;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-cta {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-cta:hover {
    color: #45b7aa;
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: #f8fffe;
}

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

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0f2f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.author-info h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4ecdc4;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Animation and Interaction Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.stat-card,
.service-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Pricing Page Styles */
.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section {
    padding: 4rem 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: white;
    border: 2px solid #e0f2f1;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.15);
}

.pricing-card.featured {
    border-color: #4ecdc4;
    transform: scale(1.05);
}

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

.pricing-card.premium {
    border-color: #ff6b6b;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4ecdc4;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.premium-badge {
    background-color: #ff6b6b;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #4ecdc4;
}

.price-unit {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:before {
    content: "✓";
    color: #4ecdc4;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-cta {
    text-align: center;
    margin-bottom: 1rem;
}

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

.btn-outline:hover {
    background-color: #4ecdc4;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.pricing-note {
    text-align: center;
}

.pricing-note p {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.pricing-faq {
    padding: 4rem 0;
    background-color: #f8fffe;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0f2f1;
}

.faq-question {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7aa 100%);
    color: white;
    text-align: center;
}

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

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

.cta-section .btn-primary {
    background-color: white;
    color: #4ecdc4;
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Features Page Styles */
.features-overview {
    padding: 4rem 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0f2f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.25rem 0;
    color: #555;
    position: relative;
    padding-left: 1rem;
}

.feature-list li:before {
    content: "•";
    color: #4ecdc4;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-details {
    padding: 4rem 0;
    background-color: #f8fffe;
}

.detail-section {
    margin-bottom: 4rem;
}

.detail-section.reverse {
    background-color: white;
    padding: 3rem 0;
    margin: 2rem -20px;
    border-radius: 12px;
}

.detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.detail-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.detail-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.detail-feature {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0f2f1;
}

.detail-feature h4 {
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-feature p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.comparison-section {
    padding: 4rem 0;
    background-color: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e0f2f1;
    text-align: center;
}

.comparison-card.featured {
    border-color: #4ecdc4;
    background-color: #f8fffe;
    transform: scale(1.05);
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.comparison-list {
    list-style: none;
    text-align: left;
}

.comparison-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.comparison-list.positive li:before {
    content: "✓";
    color: #4ecdc4;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.comparison-list.negative li:before {
    content: "✗";
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.integration-section {
    padding: 4rem 0;
    background-color: #f8fffe;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.integration-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0f2f1;
    text-align: center;
    transition: transform 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-2px);
}

.integration-item h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.integration-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: #4ecdc4;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

.contact-item a {
    color: #4ecdc4;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.business-hours h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    color: #666;
    padding: 0.25rem 0;
}

.contact-form-container {
    background-color: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0f2f1;
}

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0f2f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0f2f1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark-custom {
    background-color: #4ecdc4;
    border-color: #4ecdc4;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark-custom:after {
    content: "✓";
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.thank-you-message {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #4ecdc4;
    text-align: center;
}

.thank-you-content h2 {
    color: #4ecdc4;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.why-choose-section {
    padding: 4rem 0;
    background-color: #f8fffe;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0f2f1;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 4rem 0;
    background-color: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-document h2 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4ecdc4;
    padding-bottom: 0.5rem;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    color: #4ecdc4;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document p {
    color: #666;
    margin-bottom: 1.5rem;
}

.legal-document ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-document li {
    color: #666;
    margin-bottom: 0.5rem;
}

.legal-document .contact-info {
    background-color: #f8fffe;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0f2f1;
    margin-top: 1rem;
}

.legal-document .contact-info p {
    margin-bottom: 0;
    color: #555;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}
