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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fef7e7;
}

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

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Navigation */
.nav-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5f3e5;
    transition: all 0.3s ease;
}

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

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

.nav-logo .logo-img {
    height: 3rem;
    width: auto;
}

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

.nav-link {
    color: #166534;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ca8a04;
}

.nav-mobile-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: #166534;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #ca8a04;
}

.nav-mobile {
    display: none;
    border-top: 1px solid #e5f3e5;
    margin-top: 1rem;
    padding-top: 1rem;
}

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

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

.nav-mobile-link {
    color: #166534;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid #e5f3e5;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #166534;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.language-btn.mobile {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5f3e5;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
    display: none;
}

.language-dropdown.active {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.language-option:hover {
    background: #f0fdf4;
}

.language-option:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.language-option:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

.language-check {
    color: #16a34a;
    display: none;
}

.language-option.active .language-check {
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    padding: 8rem 0 10rem;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 83, 45, 0.8) 0%, rgba(22, 101, 52, 0.7) 50%, rgba(146, 64, 14, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.hero-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-logo {
    margin-bottom: 3rem;
}

.hero-logo-img {
    height: 8rem;
    width: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fef3c7;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #fde68a;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.stat-icon i {
    width: 2rem;
    height: 2rem;
    color: #fbbf24;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
}

.stat-label {
    color: #fde68a;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary {
    background: #eab308;
    color: #14532d;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fef3c7;
    color: #14532d;
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background: #fde68a;
    transform: translateY(-2px);
}

.btn-product {
    background: #facc15;
    color: #14532d;
    width: 100%;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
}

.btn-product:hover {
    background: #eab308;
}

.btn-contact {
    background: #eab308;
    color: #14532d;
}

.btn-contact:hover {
    background: #d97706;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #fef3c7;
    color: #92400e;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #14532d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: #fde68a;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #fef7e7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    position: relative;
}

.about-image-container {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.quality-badge-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #14532d;
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 120px;
    text-align: center;
}

.quality-percentage {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.quality-label {
    font-size: 0.875rem;
    color: white;
}

.about-text {
    max-width: 100%;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #92400e;
    margin-bottom: 1.5rem;
}

.about-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: #14532d;
    font-weight: 500;
    margin: 2rem 0;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    color: #ca8a04;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.value-content h4 {
    color: #14532d;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.value-content p {
    color: #92400e;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: white;
}

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

.product-card {
    background: white;
    border: 2px solid #f0fdf4;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    border-color: #bbf7d0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 83, 45, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef7e7 0%, #f0fdf4 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #14532d;
    margin-bottom: 1rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    padding: 0.5rem;
    animation: fadeIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 9999px;
    padding: 0.25rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.8);
}

.modal-image {
    border-radius: 0.5rem;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

/* Centro Acopio Section */
.centro-acopio-section {
    padding: 5rem 0;
    background: #fef3c7;
}

.acopio-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.acopio-image {
    position: relative;
}

.acopio-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.acopio-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #14532d;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #92400e;
    line-height: 1.6;
}

.acopio-quote-card {
    background: #14532d;
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.acopio-quote-card p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.acopio-additional-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.additional-image-item {
    position: relative;
}

.additional-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

.additional-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.additional-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 83, 45, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.additional-image-item:hover .additional-image-overlay {
    opacity: 1;
}

.additional-image-item:hover .additional-image {
    transform: scale(1.05);
}

/* Clients Section */
.clients-section {
    padding: 5rem 0;
    background: #f0fdf4;
}

.clients-section .section-title {
    color: #14532d;
}

.clients-section .section-description {
    color: #166534;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-item {
    text-align: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.client-item:hover {
    transform: translateY(-5px);
}

.client-logo {
    height: 3rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-item:hover .client-logo {
    filter: grayscale(0%);
}

.certifications {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.certifications-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #14532d;
    margin-bottom: 1rem;
}

.certifications-description {
    text-align: center;
    color: #166534;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

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

.certification-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.certification-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #eab308;
}

.certification-logo {
    max-width: 100%;
    height: 6rem;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.certification-item:hover .certification-logo {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #14532d;
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-badge {
    background: rgba(234, 179, 8, 0.2);
    color: #fde047;
    border: 1px solid rgba(253, 224, 71, 0.3);
}

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

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.25rem;
}

.contact-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #fde68a;
    line-height: 1.5;
}

.social-media h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(234, 179, 8, 0.2);
    border-radius: 9999px;
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #eab308;
    color: #14532d;
    transform: translateY(-2px);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #eab308;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Labels removed - using only placeholders */

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, #14532d 0%, #166534 50%, #14532d 100%);
    color: white;
    padding: 4rem 0 1rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    inset: 0;
}

.footer-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('./images/plantation-aerial.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.footer-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-brand-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
}

.footer-logo {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #dcfce7;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 28rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(234, 179, 8, 0.2);
    color: #fbbf24;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.footer-nav-card,
.footer-products-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.footer-nav h4,
.footer-products h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fbbf24;
}

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

.footer-links a {
    color: #dcfce7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-link-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #fbbf24;
    border-radius: 50%;
}

.footer-product-links li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dcfce7;
}

.product-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.product-dot.green { background: #16a34a; }
.product-dot.red { background: #dc2626; }
.product-dot.purple { background: #9333ea; }
.product-dot.yellow { background: #eab308; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    position: relative;
    z-index: 10;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: #dcfce7;
    text-align: center;
    font-size: 0.875rem;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #dcfce7;
    font-size: 0.875rem;
}

.ecuador-flag {
    display: flex;
    flex-direction: column;
    width: 1.5rem;
    height: 1rem;
    border-radius: 0.125rem;
    overflow: hidden;
}

.flag-stripe {
    flex: 1;
}

.flag-stripe.yellow { background: #fbbf24; }
.flag-stripe.blue { background: #1d4ed8; }
.flag-stripe.red { background: #dc2626; }

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .nav-mobile-controls {
        display: none;
    }
    
    .hero-container {
        max-width: 64rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .quality-badge-overlay {
        bottom: -1.5rem;
        right: -1.5rem;
    }
    
    .about-values {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .acopio-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .acopio-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .acopio-additional-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        text-align: left;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        max-width: 64rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-values {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.p-4 { padding: 1rem; }
.m-4 { margin: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }
