/* Reset and 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: #333;
}

.container {
    min-height: 100vh;
    background-color: white;
}

/* Header styles */
.header {
    background-color: #f5f5f5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    background-color: #16a34a;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.logo-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.nav {
    display: none;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    color: #4b5563;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #16a34a;
}

.pricing-with-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.currency-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.currency-btn {
    background-color: #f3f4f6;
    border: 2px solid transparent;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.currency-btn:hover {
    background-color: #e5e7eb;
    transform: translateY(-1px);
}

.currency-btn.active {
    background-color: #dcfce7;
    border-color: #16a34a;
}

.pricing-free,
.pricing-enterprise {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.pricing-free {
    color: #16a34a;
}

.pricing-enterprise {
    color: #4b5563;
}

.cta-button {
    background-color: #16a34a;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #15803d;
}

/* Hero section */
.hero {
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 1rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: #dcfce7;
    color: #15803d;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    color: #374151;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    background-color: #16a34a;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

.hero-cta:hover {
    background-color: #15803d;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.wave-svg {
    position: relative;
    display: block;
    width: 100%;
    height: 4rem;
    transform: rotateX(180deg);
}

.wave-fill {
    fill: white;
}

/* Features section */
.features {
    padding: 5rem 0;
    background-color: white;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: #dcfce7;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon .icon {
    width: 2rem;
    height: 2rem;
    color: #16a34a;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-description {
    color: #4b5563;
}

/* About section */
.about {
    background-color: white;
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-text {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #16a34a;
}

.stat-label {
    color: #4b5563;
    font-weight: 500;
}

.about-image {
    background-color: #f9fafb;
    height: 24rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.placeholder-text {
    color: #4b5563;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Pricing section */
.pricing {
    padding: 5rem 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border: 2px solid #e5e7eb;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: #c084fc;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
    border-color: #16a34a;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #16a34a;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
}

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

.pricing-price {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.pricing-price-pro {
    color: #16a34a;
    margin-bottom: 0;
}

.pricing-period {
    font-size: 1.125rem;
    color: #4b5563;
}

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

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    margin-right: 0.75rem;
}

.pricing-button {
    display: block;
    width: 100%;
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

.pricing-button:hover {
    background-color: #16a34a;
    color: white;
}

.pricing-button-pro {
    background-color: #16a34a;
    color: white;
}

.pricing-button-pro:hover {
    background-color: #15803d;
}

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

.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.contact-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background-color: #dcfce7;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon .icon {
    width: 2rem;
    height: 2rem;
    color: #16a34a;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.contact-info {
    color: #4b5563;
    font-weight: 500;
}

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

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color: inherit;
}

.footer-logo:hover {
    text-decoration: none;
    color: inherit;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
}

.footer-description {
    color: #4b5563;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.footer-links {
    list-style: none;
}

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

.footer-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #16a34a;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #4b5563;
}