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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #F9F0EA 0%, #FFF8F0 50%, #E8F5E9 100%);
    min-height: 100vh;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 15px 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #348054, #2a6844);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.logo:hover .logo-icon {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #000, #000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: linear-gradient(90deg, #348054, #2a6844);
    color: white;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.btn-start {
    padding: 15px 2rem !important;

}

.btn-primary:hover {
    background: linear-gradient(90deg, #2a6844, #1e4a2f);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

/* Container */
.container {
    max-width: 72rem;
    margin: 80px auto;
    padding: 4rem 1.5rem;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 4rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52, 128, 84, 0.1);
    color: #348054;
    border: 1px solid rgba(52, 128, 84, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }
}

.subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-wrapper {
    max-width: 42rem;
    margin: 0 auto 5rem;
}

.card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52, 128, 84, 0.1);
    color: #348054;
    border: 1px solid rgba(52, 128, 84, 0.2);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.price-section {
    margin-bottom: 2rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3.75rem;
    font-weight: 800;
    color: #348054;
}

.period {
    font-size: 1.5rem;
    color: #6b7280;
}

.price-description {
    color: #6b7280;
}

/* Trial Box */
.trial-box {
    background: #F9F0EA;
    border: 2px solid rgba(52, 128, 84, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.trial-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.trial-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.trial-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.trial-text p {
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.25rem;
}

.trial-text .small {
    font-size: 0.75rem;
    color: #6b7280;
}

.highlight {
    font-weight: 700;
}

.highlight-green {
    color: #348054;
}

/* Features List */
.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #F9F0EA;
    border: 1px solid rgba(52, 128, 84, 0.2);
    border-radius: 0.75rem;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #348054;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-weight: 700;
    color: #000;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: #374151;
}

.btn-cta {
    width: 100%;
    height: 3.5rem;
    background: #348054;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
}

.btn-cta:hover {
    background: #2a6844;
}

/* Everything You Need Section */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.feature-card {
    background: white;
    border: 2px solid rgba(52, 128, 84, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: #348054;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.feature-card-icon {
    width: 3rem;
    height: 3rem;
    background: #348054;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* FAQ Section */
.faq-container {
    max-width: 48rem;
    margin: 4rem auto 0;
}

.faq-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.faq-item h3 {
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #348054, #2a6844);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

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

.final-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-white {
    background: white;
    color: #348054;
    padding: 1.5rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: background 0.2s;
}

.btn-white:hover {
    background: #f3f4f6;
}

.final-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
    background: linear-gradient(180deg, #FAF5F0, #F5EBE1, #F0E5DB);
    padding: 3rem 1.5rem;
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #348054;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.footer-description {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-section h4 {
    font-weight: 700;
    color: #000;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #374151;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #348054;
}

.lang-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.7);
}

.disclaimer {
    margin-bottom: 1.5rem;
}

.disclaimer p {
    color: #374151;
    font-size: 0.75rem;
    line-height: 1.5;
}

.copyright {
    border-top: 1px solid #d1d5db;
    padding-top: 1rem;
    text-align: center;
}

.copyright p {
    color: #374151;
    font-size: 0.75rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

@media (max-width : 768px) {
    .nav-container {
        max-width: 80rem;
        margin: 0 auto;
        padding: 15px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .btn-start {
        padding: 15px 15px !important;
    }
}