:root {
    --primary-color: #8B9A47;
    --secondary-color: #2A3B5C;
    --accent-color: #C4A962;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --neutral-900: #1A1A1A;
    --neutral-800: #2D2D2D;
    --neutral-700: #404040;
    --neutral-600: #525252;
    --neutral-500: #737373;
    --neutral-400: #A3A3A3;
    --neutral-300: #D4D4D4;
    --neutral-200: #E5E5E5;
    --neutral-100: #F5F5F5;
    --neutral-50: #FAFAFA;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px 0 rgb(0 0 0 / 0.06);
    --shadow-md: 0 8px 25px -5px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 20px 40px -12px rgb(0 0 0 / 0.15), 0 8px 16px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 32px 64px -12px rgb(0 0 0 / 0.25), 0 16px 32px -8px rgb(0 0 0 / 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--white);
    overflow-x: hidden;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    font-weight: 700;
    color: var(--neutral-900);
    letter-spacing: -0.025em;
}

h1 { font-size: 3.5rem; font-weight: 900; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.875rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }

p {
    line-height: 1.7;
    color: var(--neutral-600);
    font-size: 1.125rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    margin-bottom: 24px;
    color: var(--neutral-900);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B9A47, #2A3B5C);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #8B9A47, #2A3B5C);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(139, 154, 71, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 154, 71, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: #8B9A47;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neutral-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-logo {
    height: 50px;
    width: 50px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 154, 71, 0.2);
}

.brand-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #8B9A47;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B9A47, #2A3B5C);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--neutral-700);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: 
        linear-gradient(135deg, rgba(42, 59, 92, 0.85) 0%, rgba(139, 154, 71, 0.85) 100%),
        url('https://images.pexels.com/photos/1267338/pexels-photo-1267338.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    max-width: 1000px;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    max-width: 800px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 24px 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    min-width: 150px;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--neutral-50) 0%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    margin-bottom: 24px;
    color: var(--neutral-900);
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.125rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--neutral-50);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #8B9A47;
}

.feature-icon {
    font-size: 2rem;
    margin-top: 4px;
    background: linear-gradient(135deg, #8B9A47, #2A3B5C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content h4 {
    margin-bottom: 12px;
    color: var(--neutral-900);
    font-size: 1.25rem;
}

.feature-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Products Section */
.products {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    transform-origin: center center;
}

/* Staggered floating animation delays for each card */
.product-card:nth-child(1) { animation-delay: 0s; }
.product-card:nth-child(2) { animation-delay: 0.5s; }
.product-card:nth-child(3) { animation-delay: 1s; }
.product-card:nth-child(4) { animation-delay: 1.5s; }
.product-card:nth-child(5) { animation-delay: 2s; }
.product-card:nth-child(6) { animation-delay: 2.5s; }
.product-card:nth-child(7) { animation-delay: 3s; }
.product-card:nth-child(8) { animation-delay: 3.5s; }
.product-card:nth-child(9) { animation-delay: 4s; }
.product-card:nth-child(10) { animation-delay: 4.5s; }

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B9A47, #2A3B5C);
    transition: left 0.4s ease;
}

.product-card:hover::before {
    left: 0;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(139, 154, 71, 0.15);
    border-color: #8B9A47;
    animation-play-state: paused;
}

.product-card h3 {
    margin-bottom: 20px;
    color: var(--neutral-900);
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.product-card:hover h3 {
    transform: translateY(-2px);
    color: #8B9A47;
}

.product-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-600);
    transition: all 0.3s ease;
}

.product-card:hover p {
    transform: translateY(-1px);
    color: var(--neutral-700);
}

/* Values Section */
.values {
    padding: 120px 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card {
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--neutral-50) 100%);
    border: 2px solid var(--neutral-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 154, 71, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.value-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 154, 71, 0.15);
    border-color: #8B9A47;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
    background: linear-gradient(135deg, #8B9A47, #2A3B5C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card h3 {
    margin-bottom: 16px;
    color: var(--neutral-900);
    font-size: 1.5rem;
    font-weight: 700;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-600);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8B9A47, #2A3B5C);
    transition: left 0.4s ease;
}

.testimonial-card:hover::before {
    left: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(139, 154, 71, 0.15);
    border-color: #8B9A47;
}

.testimonial-content {
    margin-bottom: 32px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-700);
    font-style: italic;
    position: relative;
    z-index: 2;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info h4 {
    color: var(--neutral-900);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #8B9A47 0%, #2A3B5C 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--white);
}

.contact .section-title::after {
    background: linear-gradient(90deg, var(--white), #8B9A47);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: 2rem;
}

.contact-info > p {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.125rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    font-size: 1.5rem;
    margin-top: 2px;
    background: linear-gradient(135deg, var(--white), #8B9A47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item h4 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1.125rem;
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--neutral-700);
    font-size: 1.125rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--neutral-200);
    border-radius: 12px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: var(--neutral-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B9A47;
    box-shadow: 0 0 0 4px rgba(139, 154, 71, 0.1);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2A3B5C 0%, #2A3B5C 100%);
    color: var(--neutral-300);
    padding: 80px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8B9A47, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.8;
    color: var(--neutral-400);
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--neutral-700);
    text-align: center;
    color: var(--neutral-500);
    font-size: 1.125rem;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 32px 0;
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero {
        background-attachment: scroll;
        min-height: 80vh;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .section-header {
        margin-bottom: 60px;
    }

    .about,
    .products,
    .values,
    .testimonials,
    .contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .btn {
        padding: 14px 28px;
        max-width: 300px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .about,
    .products,
    .values,
    .testimonials,
    .contact {
        padding: 60px 0;
    }

    .product-card,
    .value-card,
    .testimonial-card {
        padding: 32px 24px;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

/* Enhanced animations and micro-interactions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-12px) rotate(-0.5deg);
    }
    75% {
        transform: translateY(-6px) rotate(0.3deg);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    50% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Enhanced scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced focus states for accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced mobile interactions */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .product-card:hover,
    .value-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .product-card:active,
    .value-card:active,
    .testimonial-card:active {
        transform: scale(0.98);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8B9A47, #2A3B5C);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2A3B5C, #8B9A47);
}