/* ==========================================
   La TRUNG Printing & Packaging
   Modern, Minimalistic Corporate Website
   ========================================== */

/* === CSS Variables === */
:root {
    --slate:       #1E293B;
    --teal:        #0D9488;
    --teal-dark:   #0a7a70;
    --teal-light:  #F0FDFA;
    --body:        #64748B;
    --light-bg:    #F8FAFC;
    --border:      #E2E8F0;
    --dark-bg:     #0F172A;
    --white:       #FFFFFF;

    /* legacy aliases — keep so existing rules still compile */
    --primary-color: #0D9488;
    --primary-dark:  #0a7a70;
    --primary-light: #F0FDFA;
    --dark-gray:     #1E293B;
    --text-gray:     #64748B;
    --light-gray:    #F8FAFC;
    --black:         #1E293B;
    --border-color:  #E2E8F0;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-colored: 0 8px 32px rgba(13, 148, 136, 0.25);
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@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);
    }
}

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* === Container === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === Header & Navigation === */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.25rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-gray);
    transition: var(--transition);
}

/* === Language Switcher === */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: var(--light-gray);
    padding: 0.375rem;
    border-radius: 6px;
}

.lang-btn {
    padding: 0.375rem 0.875rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-gray);
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--primary-color);
    background: var(--white);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 186, 167, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-gray);
    border-color: var(--dark-gray);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.btn-secondary:hover {
    background: var(--dark-gray);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover::after {
    width: 80%;
}

.btn-primary-inverse {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-primary-inverse:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-header {
    padding: 0.625rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
}

.btn-header:hover {
    background: var(--primary-dark);
}

/* === Hero Section === */
.hero {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--black);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* === Trusted By Section === */
.trusted-by {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.trusted-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.client-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.client-fallback {
    display: none;
}

/* === Section Styles === */
section {
    padding: 6rem 0;
    position: relative;
}

.services-overview,
.industries {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.03) 0%, transparent 50%);
}

.why-choose {
    background: linear-gradient(180deg, #FAFBFC 0%, #F5F7FA 100%);
    position: relative;
    padding: 5rem 0;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--teal);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* === Facility Showcase === */
.facility-showcase {
    padding: 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.facility-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.facility-image {
    position: relative;
    aspect-ratio: 3 / 2;
    width: 100%;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 24px 24px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(45, 186, 167, 0.4);
    animation: float 3s ease-in-out infinite;
}

.image-badge svg {
    flex-shrink: 0;
}

.facility-text {
    padding: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.facility-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.facility-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--teal);
    border-radius: 2px;
}

.facility-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 2rem 0 2.5rem 0;
}

.facility-scope {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    line-height: 1.7;
}

.facility-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.facility-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.facility-feature:hover {
    /* Hover effect removed */
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-light);
    border-radius: 10px;
    flex-shrink: 0;
}

.facility-feature span {
    font-weight: 500;
    color: var(--dark-gray);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

/* === Services Overview === */
.services-overview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 186, 167, 0.2);
    border-color: var(--primary-color);
}

.service-image {
    margin-bottom: 1rem;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--black);
    text-align: center;
    font-size: 1.25rem;
}

.service-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* === Features Grid === */
.why-choose {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(45, 186, 167, 0.08);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(45, 186, 167, 0.15);
    box-shadow: 0 4px 16px rgba(45, 186, 167, 0.08);
}

.feature-icon {
    margin: 0 auto 0.75rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-light);
    border-radius: 20px;
}

.feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    font-size: 0.95rem;
}

/* === Home Manufacturer Showcase === */
.home-manufacturer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.home-manufacturer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.manufacturer-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #f3f4f6;
}

.manufacturer-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.manufacturer-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(45, 186, 167, 0.3);
    animation: float 3s ease-in-out infinite;
}

.overlay-badge svg {
    flex-shrink: 0;
}

.manufacturer-text-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.manufacturer-text-wrapper p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* === Industries === */
.industries {
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.industry-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}


.industry-card:hover {
    border-color: var(--teal);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.1);
    transform: translateY(-2px);
}


.industry-icon {
    margin: 0 auto 1rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.industry-card h3 {
    color: var(--slate);
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.4;
}

.industry-card p {
    color: var(--body);
}

/* === CTA Section === */
.cta-section {
    background: var(--slate);
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    text-wrap: balance;
}

/* === Hero Eyebrow === */
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.eyebrow-rule {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--teal);
}

.eyebrow-text {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
}

/* Hero title em styling */
.hero-title em {
    color: var(--teal);
    font-style: normal;
}

/* === Section Label === */
.section-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

/* === Trust Badges === */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--body);
    background: var(--white);
}

.trust-badge svg {
    flex-shrink: 0;
    color: var(--teal);
}

/* === Stats Bar === */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 2.5rem;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--body);
    font-weight: 500;
}

/* === Industry Strip === */
.industry-strip {
    background: var(--slate);
    padding: 0.875rem 0;
}

.industry-strip-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.strip-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.strip-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.strip-item {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

/* === Facility Section (Home) === */
.home-facility {
    padding: 5rem 0;
    background: var(--white);
}

.home-facility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home-facility-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.home-facility-text {
    padding: 0 1rem;
}

.home-facility-text h2 {
    font-size: 2rem;
    color: var(--slate);
    margin-bottom: 1rem;
    border-left: 3px solid var(--teal);
    padding-left: 1rem;
}

.home-facility-text > p {
    color: var(--body);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.fac-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.fac-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--body);
    line-height: 1.5;
}

.fac-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    margin-top: 6px;
}

/* === Process Section === */
.process-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.process-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 2.5rem;
}

.process-card-new {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--teal);
}

.process-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-card-new h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 0.75rem;
}

.process-card-new p {
    font-size: 0.875rem;
    color: var(--body);
    line-height: 1.6;
    margin-bottom: 0;
}

/* === Footer === */
.main-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    white-space: nowrap;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact li span {
    line-height: 1.6;
    flex: 1;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
}

.cert-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

/* === Page Hero === */
.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

/* === About Page === */
.about-intro {
    background: var(--white);
    padding: 4rem 0;
}

.about-intro .intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 600;
}

.intro-large {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-section {
    padding: 4rem 0;
}

.bg-gray {
    background: var(--light-gray);
}

.section-subtitle {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.about-content,
.confidentiality-content,
.partnership-content,
.positioning-content,
.location-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.requirement-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.requirement-item span {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--black);
}

.section-closing {
    margin-top: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.process-card {
    padding: 2rem;
    background: var(--teal-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 186, 167, 0.15);
}

.process-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.25rem;
    color: var(--black);
    margin: 0;
}

.process-conclusion {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.emphasis-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.confidentiality-note {
    background: linear-gradient(135deg, #f8fffe 0%, #f0faf9 100%);
    border: 1px solid rgba(45, 186, 167, 0.2);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.confidentiality-note svg {
    flex-shrink: 0;
    margin-right: 1rem;
}

.confidentiality-note span {
    flex: 1;
}

.confidentiality-content p,
.partnership-content p,
.positioning-content p,
.location-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.goal-statement {
    background: var(--teal-light);
    padding: 2.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.goal-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--black);
    margin: 0;
}

.positioning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.positioning-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 186, 167, 0.1);
    transition: var(--transition);
}

.positioning-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 186, 167, 0.2);
    border-color: var(--primary-color);
}

.positioning-item h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.positioning-item p {
    font-size: 1rem;
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
}

/* === Values Section === */
.values-section {
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* === Certifications === */
.certifications-section {
    background: var(--white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cert-card {
    text-align: center;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.cert-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.cert-icon {
    margin: 0 auto 1.5rem;
}

.cert-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* === Quality Section === */
.quality-section {
    background: var(--light-gray);
}

.quality-content {
    max-width: 1000px;
    margin: 0 auto;
}

.quality-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.quality-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.quality-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.quality-list span {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* === Clients Showcase === */
.clients-showcase {
    background: var(--white);
}

.clients-by-industry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.industry-clients h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.client-tag {
    padding: 0.75rem 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition);
}

.client-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* === Services Page === */
.services-intro {
    background: var(--white);
    padding: 3rem 0;
}

.services-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.125rem;
}

.service-detail {
    padding: 5rem 0;
}

.service-detail.alt {
    background: var(--light-gray);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-number {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.service-lead {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2.5rem;
}

.service-features h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.features-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list span {
    font-size: 1rem;
    color: var(--text-gray);
}

.service-applications h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.app-tag {
    padding: 0.625rem 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.visual-placeholder p {
    font-weight: 600;
    color: var(--text-gray);
}

/* === Production Capabilities === */
.production-capabilities {
    background: var(--dark-gray);
    color: var(--white);
}

.production-capabilities .section-header h2,
.production-capabilities .section-header p {
    color: var(--white);
}

.production-capabilities .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.capability-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.capability-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.capability-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.capability-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* === Contact Page === */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-dark);
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-cta {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.contact-cta h3 {
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefits-list span {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* === Contact Form === */
.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.contact-form-container h2 {
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
    width: 100%;
}

.form-group-full input {
    width: 100%;
    box-sizing: border-box;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.field-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 186, 167, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

.form-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-left: 3px solid var(--primary-color);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    font-style: italic;
}

.form-error {
    padding: 1rem;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 6px;
    color: #c33;
    margin-bottom: 1.5rem;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    margin: 0 auto 2rem;
}

.form-success h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-success p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* === Additional Info === */
.additional-info {
    background: var(--light-gray);
    padding: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

.info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-card li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .services-grid,
    .features-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .confidentiality-note {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .confidentiality-note svg {
        margin-bottom: 0.75rem;
    }

    .story-content,
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-detail-content.reverse {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .facility-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .facility-image {
        aspect-ratio: 3 / 2;
        width: 100%;
        order: 2;
    }

    .facility-image img {
        border-radius: 0 0 24px 24px;
    }

    .facility-text {
        padding: 2rem 1.5rem;
        order: 1;
    }

    .facility-text h2 {
        font-size: 2rem;
    }

    .image-badge {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .about-intro .intro-content {
        max-width: 900px;
    }

    .section-header {
        max-width: 800px;
    }

    .about-content,
    .confidentiality-content,
    .partnership-content,
    .positioning-content,
    .location-content {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        margin-top: 82px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 0;
        max-height: calc(100vh - 82px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        display: block;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .btn-header {
        display: none;
    }

    .lang-switcher {
        position: absolute;
        top: auto;
        right: 70px;
        z-index: 10;
    }

    .home-manufacturer {
        padding: 3rem 0;
    }

    .home-manufacturer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .manufacturer-text-wrapper h2 {
        font-size: 1.75rem;
    }

    .manufacturer-text-wrapper p {
        font-size: 1rem;
    }

    .services-grid,
    .features-grid,
    .industries-grid,
    .values-grid,
    .certifications-grid,
    .capabilities-grid,
    .requirements-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .client-logos {
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .page-hero {
        padding: 3rem 0 2rem;
    }

    .about-intro .intro-content,
    .section-header {
        max-width: 100%;
    }

    .about-content,
    .confidentiality-content,
    .partnership-content,
    .positioning-content,
    .location-content {
        max-width: 100%;
    }

    .intro-title {
        font-size: 1.5rem;
    }

    .intro-large {
        font-size: 1.1rem;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .process-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .home-facility-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .process-grid-4,
    .positioning-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 40px;
    }

    .industry-strip-inner {
        gap: 0.5rem;
    }

    .strip-sep {
        display: none;
    }

    .strip-item {
        font-size: 10px;
    }

    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .about-stat-number {
        font-size: 2rem;
    }

    .client-logos {
        flex-direction: column;
        gap: 1.5rem;
    }

    .intro-title {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .intro-large {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-form-container {
        padding: 1.5rem 1rem;
    }

    .lang-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 0.875rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-card {
        padding: 1.25rem;
    }

    .process-card,
    .value-card,
    .cert-card {
        padding: 1.5rem;
    }
}

/* === Mobile Performance Optimizations === */
@media (max-width: 768px) {
    /* Disable continuous animations on mobile for better performance */
    .hero::before,
    .hero::after,
    .service-card img,
    .manufacturer-image-wrapper img {
        animation: none !important;
    }

    /* Remove transitions on mobile to prevent lag */
    .service-card,
    .industry-card,
    .process-card,
    .positioning-item,
    .feature {
        transition: none !important;
    }

    /* Disable hover transform effects on mobile */
    .service-card:hover,
    .industry-card:hover,
    .process-card:hover,
    .positioning-item:hover,
    .feature:hover {
        transform: none !important;
        box-shadow: inherit !important;
    }

    /* Instant scroll behavior on mobile */
    html {
        scroll-behavior: auto;
    }
}
