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

:root {
    /* Primary Colors (Verde Bosque) */
    --primary-50: #f0f4f2;
    --primary-100: #e1e9e5;
    --primary-200: #c3d3cb;
    --primary-300: #a5bdb1;
    --primary-400: #87a797;
    --primary-500: #69917d;
    --primary-600: #537364;
    --primary-700: #415A50;
    --primary-800: #314438;
    --primary-900: #212e28;
    --primary-950: #111714;

    /* Accent Colors (Terracota) */
    --accent-50: #fdf6f3;
    --accent-100: #fbede7;
    --accent-200: #f7dbcf;
    --accent-300: #f3c9b7;
    --accent-400: #efb79f;
    --accent-500: #eba587;
    --accent-600: #B46446;
    --accent-700: #945338;
    --accent-800: #74422a;
    --accent-900: #54311c;
    --accent-950: #2a180e;

    /* Gray Scale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-900);
    background-color: #F5F0E6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hidden {
    display: none;
}

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

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

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

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

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* Scroll Progress */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-800), var(--accent-600));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(to right, var(--primary-800), var(--primary-700));
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.floating-cta-button:hover {
    background: linear-gradient(to right, var(--primary-700), var(--primary-600));
    box-shadow: var(--shadow-2xl);
    transform: translateY(-2px);
}

.floating-cta-icon {
    width: 1.25rem;
    height: 1.25rem;
}

@media (max-width: 640px) {
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(245, 240, 230, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

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

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-900);
}

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

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

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-600);
}

.nav-cta {
    padding: 0.625rem 1.5rem;
    background-color: var(--accent-600);
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background-color: var(--accent-700);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-button {
    display: block;
    padding: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

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

.mobile-menu-button:hover {
    background-color: var(--gray-100);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
}

.menu-close {
    display: none;
}

.mobile-menu-button.active .menu-open {
    display: none;
}

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

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

.nav-mobile.active {
    display: flex;
    animation: slideDown 0.3s ease;
    background-color: rgba(245, 240, 230, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-xl);
    margin-top: 1rem;
}

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

.nav-mobile-link {
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.nav-mobile-link:hover {
    background-color: var(--gray-100);
}

.nav-mobile-cta {
    padding: 0.625rem 1rem;
    background-color: var(--accent-600);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.nav-mobile-cta:hover {
    background-color: var(--accent-700);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom right, #F5F0E6, var(--primary-50), #F5F0E6);
}

.mouse-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 65, 85, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: linear-gradient(rgba(0,0,0,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.5) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    /* Animation disabled for performance */
    /* animation: float 6s ease-in-out infinite; */
}

.hero-blob-1 {
    top: -10rem;
    right: -10rem;
    width: 20rem;
    height: 20rem;
    background-color: rgba(203, 213, 225, 0.1);
}

.hero-blob-2 {
    bottom: -10rem;
    left: -10rem;
    width: 20rem;
    height: 20rem;
    background-color: rgba(251, 146, 60, 0.1);
    animation-delay: 1s;
}

.hero-blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24rem;
    height: 24rem;
    background-color: rgba(203, 213, 225, 0.05);
    animation-delay: 2s;
}

.hero-geo {
    position: absolute;
    border: 2px solid;
    /* Animation disabled for performance */
    /* animation: pulse 2s ease-in-out infinite; */
}

.hero-geo-1 {
    top: 5rem;
    right: 25%;
    width: 5rem;
    height: 5rem;
    border-color: rgba(234, 88, 12, 0.2);
    transform: rotate(12deg);
}

.hero-geo-2 {
    bottom: 8rem;
    left: 25%;
    width: 4rem;
    height: 4rem;
    border-color: rgba(51, 65, 85, 0.2);
    border-radius: 50%;
    animation-delay: 0.5s;
}

.hero-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.hero-inner {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    padding: 0.5rem 1rem;
    background-color: var(--primary-100);
    color: var(--primary-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--primary-200);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

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

.hero-title-main {
    color: var(--primary-700);
}

.hero-title-gradient {
    color: var(--primary-700);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

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

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

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

/* Ocultar botón secundario en móvil para evitar solapamiento */
@media (max-width: 640px) {
    .hero-cta .btn-secondary {
        display: none;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeIn 1s ease 1s both;
}

@media (max-width: 640px) {
    .scroll-indicator {
        bottom: 1.5rem;
    }
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.scroll-link:hover {
    color: var(--primary-600);
}

.scroll-link span {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.scroll-icon {
    width: 1.5rem;
    height: 1.5rem;
    animation: bounce 1s infinite;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary-800), var(--primary-700));
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--primary-700), var(--primary-600));
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #F5F0E6;
    color: var(--primary-800);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border: 2px solid var(--primary-200);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-600);
    color: var(--accent-600);
    box-shadow: var(--shadow-xl);
}

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

.btn-full {
    width: 100%;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: #F5F0E6;
}

.section-gray {
    background-color: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-100);
    color: var(--primary-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--primary-200);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-900);
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.service-card {
    position: relative;
    background: linear-gradient(to bottom right, #F5F0E6, var(--gray-50));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
    border-color: var(--accent-400);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-800);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--accent-600);
    transform: scale(1.1);
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

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

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%23475569' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: contain;
    flex-shrink: 0;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(51, 65, 85, 0.05), rgba(234, 88, 12, 0.05));
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

/* Stats Section */
.stats-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--primary-900);
    overflow: hidden;
}

.stats-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(156, 76, 18, 0.2), var(--primary-900), rgba(30, 41, 59, 0.2));
}

.stats-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.text-white {
    color: white;
}

.text-white-soft {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

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

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

.stat-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.stat-value {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 4rem;
    }
}

.stat-number {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-green .stat-number,
.stat-green span {
    background: linear-gradient(to right, #efb79f, #eba587);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-yellow .stat-number,
.stat-yellow span {
    background: linear-gradient(to right, #efb79f, #eba587);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-blue .stat-number,
.stat-blue span {
    background: linear-gradient(to right, #efb79f, #eba587);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-purple .stat-number,
.stat-purple span {
    background: linear-gradient(to right, #efb79f, #eba587);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0;
    filter: blur(40px);
    transition: opacity 0.3s ease;
}

.stat-card:hover .stat-glow {
    opacity: 0.1;
}

.stat-glow-green {
    background: linear-gradient(to right, #059669, #10b981);
}

.stat-glow-yellow {
    background: linear-gradient(to right, #d97706, #f59e0b);
}

.stat-glow-blue {
    background: linear-gradient(to right, #2563eb, #06b6d4);
}

.stat-glow-purple {
    background: linear-gradient(to right, #7c3aed, #ec4899);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

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

.product-card {
    position: relative;
    background-color: #F5F0E6;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.product-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-gradient {
    opacity: 0.05;
}

.product-card[data-gradient="blue"] .product-gradient {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.product-card[data-gradient="purple"] .product-gradient {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.product-card[data-gradient="green"] .product-gradient {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.product-card[data-gradient="orange"] .product-gradient {
    background: linear-gradient(to bottom right, #f97316, #dc2626);
}

.product-card[data-gradient="indigo"] .product-gradient {
    background: linear-gradient(to bottom right, #6366f1, #8b5cf6);
}

.product-card[data-gradient="teal"] .product-gradient {
    background: linear-gradient(to bottom right, #14b8a6, #06b6d4);
}

.product-card[data-gradient="rose"] .product-gradient {
    background: linear-gradient(to bottom right, #f43f5e, #ec4899);
}

.product-card[data-gradient="violet"] .product-gradient {
    background: linear-gradient(to bottom right, #8b5cf6, #a855f7);
}

.product-content {
    position: relative;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--accent-600);
}

.product-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.75rem;
    border-radius: 9999px;
}

.product-link {
    display: flex;
    align-items: center;
    color: var(--primary-600);
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-card:hover .product-link {
    color: var(--accent-600);
}

.product-arrow {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-arrow {
    transform: translateX(0.5rem);
}

/* Bento Grid Section */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(150px, auto);
    }
}

.bento-card {
    position: relative;
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: box-shadow 0.2s ease;
    overflow: hidden;
}

.bento-card:hover {
    box-shadow: var(--shadow-2xl);
}

.bento-large {
    grid-column: span 1;
    grid-row: span 1;
}

@media (min-width: 768px) {
    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.bento-wide {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .bento-wide {
        grid-column: span 2;
    }
}

.bento-slate {
    background: linear-gradient(to bottom right, var(--primary-800), var(--primary-700));
}

.bento-accent {
    background: linear-gradient(to bottom right, var(--accent-600), var(--accent-700));
}

.bento-primary {
    background: linear-gradient(to bottom right, var(--primary-700), var(--primary-800));
}

.bento-slate-dark {
    background: linear-gradient(to bottom right, var(--primary-700), var(--primary-800));
}

.bento-accent-dark {
    background: linear-gradient(to bottom right, var(--accent-700), var(--accent-800));
}

.bento-content {
    position: relative;
    z-index: 10;
}

.bento-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon {
    transform: scale(1.1);
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bento-description {
    color: rgba(255, 255, 255, 0.9);
}

.bento-decoration {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 8rem;
    height: 8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(50px);
    transition: transform 0.5s ease;
}

.bento-card:hover .bento-decoration {
    transform: scale(1.5);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

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

.about-heading {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
}

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

.about-stat {
    background-color: var(--primary-50);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--primary-200);
    transition: box-shadow 0.3s ease;
}

.about-stat:hover {
    box-shadow: var(--shadow-lg);
}

.about-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-800);
    margin-bottom: 0.5rem;
}

.about-stat-value.accent {
    color: var(--accent-600);
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

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

.value-card {
    background: linear-gradient(to bottom right, #F5F0E6, var(--gray-50));
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
}

.value-card {
    display: flex;
    gap: 1rem;
}

.value-icon {
    font-size: 1.875rem;
    flex-shrink: 0;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.value-description {
    color: var(--gray-600);
}

.about-cta {
    text-align: center;
    margin-top: 4rem;
}

.about-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

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

.about-cta-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Process Timeline Section */
.process-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--primary-50), var(--gray-100));
    overflow: hidden;
}

.process-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, rgb(0 0 0) 1px, transparent 0);
    background-size: 40px 40px;
}

.process-badge {
    background-color: #F5F0E6;
    border: 1px solid var(--primary-200);
    box-shadow: var(--shadow-sm);
}

.process-timeline {
    max-width: 80rem;
    margin: 0 auto;
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-reverse {
    flex-direction: row;
}

@media (min-width: 768px) {
    .process-reverse {
        flex-direction: row-reverse;
    }
}

.process-number {
    position: relative;
    flex-shrink: 0;
}

.process-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--accent-600), var(--accent-700));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.process-badge-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-800);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.process-card {
    flex: 1;
    background-color: #F5F0E6;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--primary-200);
    transition: box-shadow 0.3s ease;
}

.process-card:hover {
    box-shadow: var(--shadow-2xl);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-900);
}

.process-description {
    color: var(--gray-600);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--gray-50), #F5F0E6, rgba(219, 234, 254, 0.3));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.contact-form-card {
    background-color: #F5F0E6;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

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

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-300);
    background-color: #F5F0E6;
    color: var(--gray-900);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-400);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(51, 65, 85, 0.1);
}

.form-textarea {
    resize: none;
}

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

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

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #F5F0E6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-info-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.contact-benefits {
    background: linear-gradient(to bottom right, var(--primary-800), var(--primary-700));
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    box-shadow: var(--shadow-xl);
}

.contact-benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.contact-benefit-item svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-benefit-item span {
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: #F5F0E6;
    color: var(--gray-700);
}

.footer-content {
    padding: 3rem 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 3rem;
    width: auto;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-700);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon span {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-900);
}

.footer-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    max-width: 28rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, var(--primary-50), var(--gray-50), var(--primary-100));
    padding: 2rem;
}

.thank-you-container {
    max-width: 48rem;
    background-color: #F5F0E6;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow-2xl);
    text-align: center;
}

@media (min-width: 768px) {
    .thank-you-container {
        padding: 4rem;
    }
}

.thank-you-icon {
    margin: 0 auto 2rem;
}

.checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.checkmark-circle {
    stroke: var(--accent-600);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: var(--accent-600);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

.thank-you-message {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.thank-you-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

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

.info-card {
    background: linear-gradient(to bottom, var(--gray-50), #F5F0E6);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

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

.info-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.info-text p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.thank-you-contact {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.thank-you-contact p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--accent-600);
}

.contact-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease forwards;
}

.animate-fade-in:nth-child(1) {
    animation-delay: 0s;
}

.animate-fade-in:nth-child(2) {
    animation-delay: 0.05s;
}

.animate-fade-in:nth-child(3) {
    animation-delay: 0.1s;
}

.animate-fade-in:nth-child(4) {
    animation-delay: 0.15s;
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 5rem;
}

/* Optimized Fade-in Animation Classes */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Performance optimizations */
.service-card,
.product-card,
.bento-card,
.stat-card,
.contact-info-card {
    will-change: transform, box-shadow;
}

.service-card:hover,
.product-card:hover,
.bento-card:hover,
.stat-card:hover,
.contact-info-card:hover {
    will-change: auto;
}

/* Form Success Message */
.form-success-message {
    background: linear-gradient(to bottom right, #ecfdf5, #d1fae5);
    border: 2px solid #10b981;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    animation: slideDown 0.5s ease;
}

.form-success-message .success-icon {
    width: 4rem;
    height: 4rem;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    font-weight: 700;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.form-success-message h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.form-success-message p {
    color: #047857;
    font-size: 1rem;
}
