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

body {
    /* font-family: 'Inter', sans-serif; */
    line-height: 1.6;
    color: #1a1a1a;
}

/* Color Variables */
:root {
    --green-primary: var(--primaryGreen);
    --green-dark: #16a34a;
    --green-light: #dcfce7;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background: #ffffff;
    --background-light: #f9fafb;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.min-h-screen {
    min-height: 100vh;
}

.bg-gradient-subtle {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}


/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--green-primary);
    color: white;
    border-color: var(--green-primary);
    height: 2.5rem;
}

.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-outline {
    border-color: var(--green-primary);
    color: var(--green-primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--green-primary);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--background-light);
}

.btn-white {
    border-color: white;
    color: white;
}

.btn-white:hover {
    background: white;
    color: var(--text-primary);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Main Content */
.main-content {
    padding: 4rem 2rem;
}

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

.header-content {
    margin-bottom: 2rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.text-green {
    color: var(--green-primary);
}

.main-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 32rem;
    margin: 0 auto;
}

.info-card {
    background: var(--green-light);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--green-primary);
    border-radius: 50%;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: "all 0.6s ease";
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card.popular {
    border-color: var(--green-primary);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.1);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--green-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.card-header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tier-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tier-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-primary);
}

.card-content {
    padding: 0 1.5rem 2rem;
}

.fee-section {
    margin-bottom: 1.5rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.fee-amount {
    font-weight: 600;
    color: var(--text-primary);
}

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

.features-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-bottom: 5rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: white;
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Feedback Section */
.feedback-section {
    margin-bottom: 5rem;
}

.feedback-header {
    text-align: center;
    margin-bottom: 3rem;
}

.feedback-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feedback-icon {
    width: 2rem;
    height: 2rem;
    color: var(--green-primary);
    margin-right: 0.5rem;
}

.feedback-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
}

.feedback-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 32rem;
    margin: 0 auto;
}

.feedback-card {
    max-width: 32rem;
    margin: 0 auto;
    background: white;
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feedback-card-header {
    padding: 1.5rem 1.5rem 0;
    text-align: center;
}

.feedback-card-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feedback-card-description {
    color: var(--text-secondary);
}

.feedback-card-content {
    padding: 1.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-item input[type="radio"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--green-primary);
}

.radio-item label {
    color: var(--text-secondary);
    cursor: pointer;
}

textarea {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.875rem;
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.875rem;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-help {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

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

.faq-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
    background: white;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    margin: 0;
}

.faq-question:hover {
    color: var(--green-primary);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--text-secondary);
    margin-top: 1rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background: white;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--green-primary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .nav-links {
        display: flex;
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .cta-card {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}