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

:root {
    --primary: #589e4d;
    --primary-dark: #2c5f25;
    --primary-light: #8fc487;
    --secondary: #c373cf;
    --dark: #132e1b;
    --light: #f9fafb;
    --border: #e5e7eb;
    --text: #374151;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: white;
}

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

/* Navigation */
.navbar {
    background: var(--dark);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.05s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-login {
    background: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.05s !important;
}

.nav-login:hover {
    background: white !important;
    color: var(--primary-dark) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 6rem 0;
		height: 1350px;
    text-align: center;
		width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.05s;
    box-shadow: 0 4px 6px rgba(167, 61, 184, 0.3);
}

.cta-button:hover {
    background: #8B2E8F;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(167, 61, 184, 0.4);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--light);
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.05s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: white;
}

.why-us h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark);
}

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

.benefit {
    padding: 2rem;
    background: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.benefit p {
    color: var(--text);
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--light);
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark);
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.05s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.pricing-card-highlighted {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

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

/* Selectable pricing cards */
.pricing-card-selectable {
    cursor: pointer;
    user-select: none;
    border: 3px solid transparent;
}

.pricing-card-selectable.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(89, 158, 77, 0.15), 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: scale(1.03);
}

.pricing-card-selectable.selected:hover {
    transform: scale(1.03) translateY(-3px);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    font-weight: bold;
}

.badge-elite {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
}

/* How It Works panels */
.how-it-works {
    margin-top: 3rem;
    padding: 3rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-out;
}

.how-it-works-hidden {
    display: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.how-it-works h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.how-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 0.5rem;
}

.how-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.how-step h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.how-step p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.how-diagram-placeholder {
    text-align: center;
    padding: 3rem;
    background: var(--light);
    border: 2px dashed var(--border);
    border-radius: 0.75rem;
    color: #999;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.how-elite-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2rem;
}

/* Elite scenario cards */
.elite-scenarios {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.elite-scenario {
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.2s;
    cursor: pointer;
}

.elite-scenario:hover {
    border-color: var(--secondary);
    box-shadow: 0 2px 12px rgba(195, 115, 207, 0.15);
}

.elite-scenario.elite-scenario-active {
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 4px 16px rgba(195, 115, 207, 0.2);
}

.elite-scenario-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.elite-scenario-icon {
    font-size: 1.5rem;
}

.elite-scenario-header h4 {
    font-size: 1.2rem;
    color: var(--dark);
    flex: 1;
}

.elite-price-tag {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.elite-scenario p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.elite-scenario-example {
    padding: 1rem;
    background: rgba(195, 115, 207, 0.08);
    border-left: 3px solid var(--secondary);
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 0.9rem;
    color: #555;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.elite-scenario-active .elite-scenario-example {
    max-height: 200px;
    opacity: 1;
    padding: 1rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.price {
    font-size: 2rem;
    color: var(--dark);
    font-weight: bold;
    margin: 1rem 0;
}

.price-description {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-top: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text);
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: white;
}

.process h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark);
}

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

.step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.step p {
    color: var(--text);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 0.75rem;
    color: var(--text);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(77, 184, 61, 0.1);
}

.submit-button {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.05s;
}

.submit-button:hover {
    background: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--dark);
    color: #ccc;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .services h2,
    .why-us h2,
    .pricing h2,
    .process h2,
    .contact h2 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .pricing-card-highlighted {
        transform: scale(1);
    }

    .pricing-card-highlighted:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .service-grid,
    .pricing-grid,
    .process-steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}