:root {
    --primary-shade: #059669;
    --secondary-shade: #047857;
    --accent-shade: #10b981;
    --success-shade: #22c55e;
    --warning-shade: #eab308;
    --dark-text: #111827;
    --light-text: #6b7280;
    --background-light: #f9fafb;
    --pure-white: #ffffff;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.header {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.95), rgba(4, 120, 87, 0.95));
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
    background: rgba(5, 150, 105, 0.98);
    backdrop-filter: blur(18px);
}

.brand-logo img {
    height: 48px;
    transition: transform 0.3s ease;
}

.brand-logo:hover img {
    transform: scale(1.08);
}

.menu .nav-link {
    color: var(--pure-white) !important;
    font-weight: 500;
    padding: 0.8rem 1.3rem !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.hero-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="dots" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="80" height="80" fill="url(%23dots)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-heading {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1.8rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
    animation: slideInLeft 1.2s ease-out;
}

.hero-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    animation: slideInLeft 1.2s ease-out 0.3s both;
}

.cta-button {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: var(--pure-white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
    animation: slideInLeft 1.2s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.45);
    color: var(--pure-white);
}

.about-section {
    padding: 7rem 0;
    background: var(--background-light);
}

.about-wrapper {
    background: var(--pure-white);
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.about-wrapper:hover {
    transform: translateY(-8px);
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 2.5rem;
    text-align: center;
}

.benefits-showcase {
    padding: 7rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.benefit-card {
    background: var(--pure-white);
    border-radius: 18px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(40px);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.benefit-icon {
    font-size: 3.5rem;
    color: var(--primary-shade);
    margin-bottom: 2rem;
}

.workflow-section {
    padding: 7rem 0;
    background: var(--pure-white);
}

.workflow-step {
    text-align: center;
    padding: 2.5rem;
    position: relative;
}

.step-counter {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, var(--primary-shade), var(--secondary-shade));
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.35);
}

.stats-display {
    padding: 7rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: var(--pure-white);
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
}

.stat-value {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--pure-white);
}

.reviews-section {
    padding: 7rem 0;
    background: var(--background-light);
}

.review-item {
    background: var(--pure-white);
    border-radius: 18px;
    padding: 3rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-6px);
}

.questions-section {
    padding: 7rem 0;
    background: var(--pure-white);
}

.accordion-button {
    background: var(--background-light);
    border: none;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-shade);
    color: var(--pure-white);
}

.contact-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: var(--pure-white);
}

.contact-form-wrapper {
    background: var(--pure-white);
    border-radius: 18px;
    padding: 3.5rem;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-shade);
    box-shadow: 0 0 0 0.25rem rgba(5, 150, 105, 0.25);
}

.footer {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: var(--pure-white);
    padding: 4.5rem 0 2.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pure-white);
}

.disclaimer-notice {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.8rem;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .stat-value {
        font-size: 3rem;
    }
}