/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1a365d;
    --color-primary-light: #2c5282;
    --color-accent: #c9a227;
    --color-dark: #1a1a2e;
    --color-light: #f7fafc;
    --color-text: #2d3748;
    --color-text-light: #718096;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    background: var(--color-dark);
    color: #fff;
    padding: 6px 0;
    font-size: 12px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.contact-link {
    color: var(--color-accent);
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.775);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 54, 93, 0.79);
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Override inline styles for logo image */
.logo img {
    height: 48px !important;
}

.header.scrolled .nav a {
    color: #fff;
}

.header.scrolled .logo {
    color: #fff;
}

/* Header styles */
.header .container {
    position: relative;
}

.header-inner,
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-inner {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-weight: 500;
    color: var(--color-text);
}

.nav a {
    position: relative;
}

.nav a:hover {
    color: var(--color-primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e2e8f0;
    transition: width 0.3s ease-in-out;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Hero - default blue gradient overlay */
.hero:not(.hero-easton) {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 82, 130, 0.85) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.75) 0%, rgba(44, 82, 130, 0.7) 100%);
}

/* Hero - Easton style (like eastonhk.com) */
.hero-easton {
    min-height: 0;
    aspect-ratio: 1920 / 1000;
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding-top: 120px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.hero-easton .hero-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.hero-content-left {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: left;
    width: 100%;
    padding: 10% 10%;
}

.hero-content-left .hero-title {
    margin-bottom: 28px;
}

.hero-title-bebas {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 70px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
}

.hero-tagline {
    font-size: 16px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
    color: #fff;
}

.hero-title-accent {
    color: var(--color-accent);
}

/* Easton-style hero button */
.btn-hero-easton {
    background: #2b398a;
    color: #fff;
    padding: 16px 35px;
}

.btn-hero-easton:hover {
    background: #fff;
    color: #2b398a;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: #d4ad2a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--color-primary);
}

.btn-lg {
    padding: 16px 48px;
    font-size: 16px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-light {
    background: #fff;
}

.section-dark {
    background: var(--color-dark);
    color: #fff;
}

.section-alt {
    background: var(--color-light);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    color: var(--color-primary);
}

.section-title-light {
    color: #fff;
}

.section-dark .section-title {
    color: #fff;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 24px;
    justify-items: center;
}

/* Product Grid - Easton style */
.product-grid-easton {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    justify-items: stretch;
}

.product-card-easton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 100px;
    padding: 16px 24px;
    background: rgba(194, 196, 200, 0.1);
    border: none;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease, background 0.3s ease;
}

.product-card-easton:hover {
    color: #2b398a;
    background: rgba(194, 196, 200, 0.2);
}

.product-card-arrow {
    font-style: normal;
    opacity: 0.8;
}

.product-icon {
    font-style: normal;
    font-size: 20px;
    margin-right: 8px;
    opacity: 0.8;
}

.product-card-more-easton {
    background: rgba(194, 196, 200, 0.15);
}

.product-card-more-easton:hover {
    color: #2b398a;
}

.product-card {
    width: 100%;
    max-width: 160px;
    padding: 24px 16px;
    background: #fff;
    border: 2px solid #e2e8f0;
    text-align: center;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.15);
}

.product-card-more {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.product-card-more:hover {
    background: var(--color-primary-light);
    color: #fff;
}

/* Featured Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.featured-card {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
}

.featured-placeholder,
.featured-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    background-color: rgba(255,255,255,1);
}

.featured-placeholder {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
}

.featured-card h3 {
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
}

.btn-link {
    display: inline-block;
    padding: 0 20px 20px;
    color: var(--color-accent);
    font-weight: 600;
}

.btn-link:hover {
    text-decoration: underline;
}

.text-center {
    text-align: center;
    margin-top: 48px;
}

/* About */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Certifications */
.cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.cert-item {
    padding: 16px 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Capabilities */
.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.capability-item {
    padding: 24px;
    background: #fff;
    border-left: 4px solid var(--color-accent);
    font-weight: 500;
}

/* Four Modules Section */
.four-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.module-item {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.module-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.module-icon {
    max-height: 80px;
    margin-bottom: 12px;
}

.module-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Module-specific title colors */
.module-safety .module-title {
    color: #E60012;
}

.module-capabilities .module-title {
    color: #142B81;
}

.module-service .module-title {
    color: #25A938;
}

.module-solutions .module-title {
    color: #EEC502;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.module-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text);
    border-bottom: 1px solid #f0f0f0;
}

.module-list li:last-child {
    border-bottom: none;
}

/* Responsive for four modules */
@media (max-width: 1024px) {
    .four-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Worldwide Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.project-item {
    position: relative;
    padding: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-item-content {
    padding: 32px;
}

.project-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.project-number {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    line-height: 1;
}

.project-region {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-accent);
    display: block;
    width: 100%;
}

.project-link {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--color-primary);
}

/* Our Partners */
.section-light {
    background: #f2f2f2;
    padding: 60px 0;
}

.partners-marquee {
    background: #f2f2f2;
    overflow: hidden;
    margin-top: 32px;
    position: relative;
}

.partner-item {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    background: #f2f2f2;
    padding: 0;
    margin: 0;
}

.partners-track {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 48px;
}

.partner-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.3s ease;
}

.partner-item img:hover {
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* CTA Section */
.cta-section {
    background: var(--color-primary);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: #fff;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.footer a {
    color: rgba(255,255,255,0.8);
}

.footer a:hover {
    color: var(--color-accent);
}

.footer .footer-col:first-child p:last-child {
    font-size: 90%;
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Contact Page */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 33px;
    margin-bottom: 16px;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-info-box {
    background: var(--color-light);
    padding: 32px;
    margin-top: 48px;
    border-radius: 8px;
}

.contact-info-box p {
    margin-bottom: 8px;
}

/* About Page */

.page-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Products Page */
.products-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
}

.products-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.products-sidebar h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.category-list {
    list-style: none;
}

.category-list > li {
    margin-bottom: 8px;
}

.category-list > li > a {
    color: var(--color-text);
    display: block;
    padding: 8px 0;
}

.category-list > li > a:hover {
    color: var(--color-primary);
}

/* Two-level category menu */
.category-parent {
    position: relative;
}

.category-parent > a {
    font-weight: 600;
    color: var(--color-primary);
}

.subcategory-list {
    list-style: none;
    margin-left: 20px;
    margin-top: 4px;
    display: block;
}

.subcategory-list li {
    margin-bottom: 4px;
}

.subcategory-list a {
    font-size: 0.9em;
    color: var(--color-text-light);
    padding: 4px 0;
    display: block;
}

.subcategory-list a:hover {
    color: var(--color-primary);
}

.products-page-card {
    background: #fff;
    border: 1px solid #e2e8f0;
}

.featured-card.products-page-card img {
    height: 200px;
    object-fit: contain;
    background: #f8f9fa;
}

.products-page-card h3 {
    padding: 16px;
    color: var(--color-text);
}

.products-page-card .btn-sm {
    margin: 0 16px 16px;
    padding: 8px 20px;
    font-size: 12px;
}

.products-main .featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* Project Page */
.project-section {
    margin-bottom: 48px;
}

.project-region {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-primary);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-accent);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.project-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card h3 {
    padding: 16px 16px 8px;
    font-size: 18px;
}

.project-card p {
    padding: 0 16px 16px;
    font-size: 14px;
    color: var(--color-text-light);
}

.project-card .btn-link {
    padding: 0 16px 16px;
}

/* News Page */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.news-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    padding: 24px;
    flex: 1;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.news-content time {
    display: block;
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.news-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px), (max-device-width: 768px), (-webkit-max-device-width: 768px) {
    html {
        overflow-x: hidden;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .project-image {
        height: 180px;
    }
    
    .project-item-content {
        padding: 24px;
    }
    
    .project-region {
        font-size: 18px;
    }

    /* Four modules responsive */
    .four-modules-grid {
        grid-template-columns: 1fr;
    }
    
    .module-item {
        padding: 16px;
    }
    
    .module-icon {
        max-height: 60px;
    }
    
    .module-title {
        font-size: 14px;
    }
    
    .module-list li {
        font-size: 13px;
        padding: 6px 0;
    }

    /* Partners marquee responsive */
    .section-light {
        padding: 48px 0;
    }
    
    .partners-track {
        gap: 32px;
    }
    
    .partner-item {
        width: 160px;
    }
    
    .partner-item img {
        max-height: 70px;
    }

    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .header-inner {
        flex-wrap: nowrap;
    }

    .header {
        padding: 8px 0 !important;
    }

    .header .logo {
        font-size: 18px !important;
    }

    .header .logo img {
        height: 34px !important;
    }

    .nav-toggle {
        width: 36px !important;
        height: 36px !important;
        padding: 6px !important;
    }

    .nav-toggle span {
        width: 22px !important;
        height: 1.5px !important;
        gap: 5px !important;
    }

    .nav {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        padding: 16px 0;
        width: 100%;
    }

    body.nav-open .nav {
        display: flex;
    }

    .nav a {
        display: block;
        padding: 14px 24px;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    /* Ensure mobile nav menu displays correctly when scrolled */
    .header.scrolled .nav {
        display: none;
    }
    
    body.nav-open .header.scrolled .nav {
        display: flex;
        background: rgba(26, 54, 93, 0.98);
    }
    
    .header.scrolled .nav a {
        color: #fff !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    body.nav-open .header.scrolled .nav a {
        color: #fff !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero {
        min-height: 360px;
    }

    .hero-easton {
        aspect-ratio: 1920 / 850;
        min-height: 0;
    }

    .hero-content-left {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-title-bebas {
        font-size: 42px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .hero-content .btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .hero-content .btn-hero-easton {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-grid-easton {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card-easton {
        min-height: 80px;
        font-size: 16px;
        padding: 12px 16px;
    }

    .product-card {
        padding: 16px 8px;
        font-size: 13px;
        max-width: none;
    }

    .section {
        padding: 20px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card h3 {
        font-size: 15px;
    }

    .products-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .products-sidebar {
        position: static;
    }

    .page-hero {
        padding: 48px 0;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .contact-hero h1 {
        font-size: 24px;
    }

    .page-content,
    .contact-form-section {
        padding: 40px 0;
    }

    .page-content p {
        font-size: 16px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-col p {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 8px;
    }

    .cta-section .btn-lg {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
}

/* 小屏手机 */
@media (max-width: 480px), (max-device-width: 480px), (-webkit-max-device-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-title-bebas {
        font-size: 32px;
    }

    .hero {
        min-height: 320px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-card-easton {
        min-height: 70px;
        font-size: 14px;
        padding: 10px 12px;
    }

    .product-card {
        padding: 12px 6px;
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
    }

    .header .logo {
        font-size: 16px !important;
    }

    .header .logo img {
        height: 28px !important;
    }

    .cert-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .capability-item {
        padding: 16px;
        font-size: 14px;
    }

    /* Partners marquee responsive for small screens */
    .section-light {
        padding: 40px 0;
    }
    
    .partners-track {
        gap: 24px;
    }
    
    .partner-item {
        width: 140px;
    }
    
    .partner-item img {
        max-height: 60px;
    }
}

/* Vertical screen orientation fix */
@media screen and (orientation: portrait) {
    .product-grid-easton {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card-easton {
        flex-wrap: wrap;
        gap: 8px;
        padding: 16px;
    }
    
    .product-icon {
        margin-right: 0;
    }
    
    /* Products page two-column waterfall layout */
    .products-main .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-page-card {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    
    .products-page-card img {
        flex-shrink: 0;
    }
    
    .products-page-card h3 {
        flex-grow: 1;
        display: flex;
        align-items: center;
    }
}
