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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #111827;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

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

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #f59e0b;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

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

.nav-link {
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

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

.cta-button {
    background: linear-gradient(to right, #16a34a, #15803d);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: linear-gradient(to right, #15803d, #166534);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-desktop {
    display: none;
}

@media (min-width: 768px) {
    .cta-desktop {
        display: block;
    }
}

.menu-toggle {
    display: flex;
    color: #374151;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-icon {
    font-size: 1.5rem;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
}

.nav-link-mobile {
    color: #374151;
    font-weight: 500;
    text-align: left;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #f0fdf4, white, #fef3c7);
}

.hero-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.decoration-circle {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
}

.decoration-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: #22c55e;
}

.decoration-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: #fbbf24;
}

.hero-container {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

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

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dcfce7;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    width: fit-content;
}

.badge-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
}

.badge span {
    color: #15803d;
    font-weight: 600;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

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

.gradient-text {
    background: linear-gradient(to right, #16a34a, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #16a34a, #15803d);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(to right, #15803d, #166534);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover .btn-icon {
    transform: translateX(0.25rem);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: #15803d;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #16a34a;
}

.btn-secondary:hover {
    background: #f0fdf4;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #15803d;
}

.stat-label {
    font-size: 0.875rem;
    color: #4b5563;
    margin-top: 0.25rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #34d399, #fbbf24);
    border-radius: 1.5rem;
    transform: rotate(6deg);
}

.hero-image-container {
    position: relative;
    background: white;
    padding: 0.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
}

.hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon-wrapper {
    background: #dcfce7;
    padding: 0.75rem;
    border-radius: 9999px;
}

.badge-icon-small {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.badge-text {
    font-size: 0.875rem;
    color: #4b5563;
}

.about {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

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

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

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

.about-content-single {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto 4rem;
}

.about-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
}

.about-text {
    color: #4b5563;
    line-height: 1.75;
}

.highlight {
    font-weight: 600;
    color: #15803d;
}

.quote-box {
    background: #f0fdf4;
    border-left: 4px solid #16a34a;
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.quote-text {
    color: #166534;
    font-weight: 600;
    font-style: italic;
}

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

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

.value-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: box-shadow 0.3s;
}

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

.card-green {
    background: linear-gradient(to bottom right, #f0fdf4, #dcfce7);
}

.card-amber {
    background: linear-gradient(to bottom right, #fffbeb, #fef3c7);
}

.value-icon-wrapper {
    background: white;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 2rem;
    height: 2rem;
}

.card-green .value-icon {
    color: #16a34a;
}

.card-amber .value-icon {
    color: #d97706;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.value-text {
    color: #4b5563;
}

.products {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #f9fafb, #f0fdf4);
}

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

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

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-featured {
    border: 2px solid #fbbf24;
}

.popular-badge {
    background: linear-gradient(to right, #f59e0b, #d97706);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
}

.product-header {
    position: relative;
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-header-green {
    background: linear-gradient(to bottom right, #22c55e, #16a34a);
}

.product-header-amber {
    background: linear-gradient(to bottom right, #f59e0b, #d97706);
}

.product-icon {
    width: 5rem;
    height: 5rem;
    color: white;
    opacity: 0.9;
}

.product-body {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.product-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #16a34a;
}

.check-amber {
    color: #d97706;
}

.feature-item span {
    color: #374151;
}

.product-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-green {
    background: #16a34a;
    color: white;
}

.btn-green:hover {
    background: #15803d;
}

.btn-amber {
    background: #d97706;
    color: white;
}

.btn-amber:hover {
    background: #b45309;
}

.cta-banner {
    background: linear-gradient(to right, #16a34a, #f59e0b);
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 3rem;
    }
}

.cta-banner-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

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

@media (min-width: 768px) {
    .cta-banner-title {
        font-size: 2.25rem;
    }
}

.cta-banner-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-banner-btn {
    background: white;
    color: #15803d;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-banner-btn:hover {
    background: #f3f4f6;
}

.contact {
    padding: 6rem 0;
    background: white;
}

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

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

@media (max-width: 767px) {
    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon-wrapper {
    background: #f0fdf4;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #6b7280;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-weight: 600;
    color: #374151;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 8rem;
}

.form-submit {
    background: linear-gradient(to right, #16a34a, #15803d);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background: linear-gradient(to right, #15803d, #166534);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.footer {
    background: #111827;
    color: white;
    padding: 3rem 0 2rem;
}

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

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

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

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

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    color: #fbbf24;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.75;
}

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

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #22c55e;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #9ca3af;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.active {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #6b7280;
    cursor: pointer;
    background: none;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.modal-close:hover {
    background-color: #f3f4f6;
    color: #111827;
}

#legalContent {
    padding-right: 2rem;
}

#legalContent h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

#legalContent h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#legalContent p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
}

#legalContent ul {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
    margin-left: 2rem;
}
