/* --- Design System --- */
:root {
    --primary-color: #afd81b; /* Vibrant brand lime green */
    --text-color: #2b2d2f;    /* Sleek dark charcoal */
    --text-muted: #72777a;   /* Clean gray for secondary text */
    --bg-color: #ffffff;
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --container-max-width: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #f8fafc;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 50px;
    border: 3px solid #f8fafc;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
html {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 80px; /* Space for fixed header */
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eef0f2;
    z-index: 1000;
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.nav-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
}

.nav-btn:hover {
    background-color: var(--text-color);
    color: #ffffff;
}

/* --- Hamburger Button (mobile only) --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-smooth);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger:hover {
    border-color: var(--primary-color);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Nav Drawer --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 85vw);
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-inner {
    padding: 2rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    line-height: 1;
    margin-bottom: 2.5rem;
    transition: color 0.2s;
}

.mobile-nav-close:hover {
    color: var(--text-color);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s;
    letter-spacing: -0.3px;
}

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

.mobile-nav-cta {
    margin-top: 1.5rem;
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color) !important;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    text-align: center;
    border-bottom: none !important;
}

.mobile-nav-cta:hover {
    background-color: var(--text-color);
    color: #ffffff !important;
}

/* Backdrop */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
    opacity: 1;
}

/* --- Layout Container --- */
.content-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    width: 96%;
    max-width: 1760px;
    min-height: 90vh;
    margin: 1.5rem auto 7rem auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background-color: #000;
}

/* Background Video Styling */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    align-items: flex-end;
    padding: 4rem 5rem;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    width: 100%;
    align-items: flex-end;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -1.5px;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-right p {
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    max-width: 400px;
    font-weight: 500;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: #ffffff;
    color: var(--text-color);
    transform: translateY(-2px);
}

/* --- Stats Section --- */
.stats {
    margin-bottom: 9rem;
    margin-top: 5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-body); /* Standard geometric sans for stats to match original */
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -1px;
    white-space: nowrap;
}

.stat-number .highlight {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.65em; /* Sized down to match original */
    margin-left: 2px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* --- Intro Section --- */
.intro {
    margin-bottom: 12rem;
    scroll-margin-top: 100px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

.intro-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.intro-right h3 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.8rem;
    letter-spacing: -0.8px;
}

.intro-right p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    line-height: 1.7;
    font-weight: 400;
}

.intro-right p:last-child {
    margin-bottom: 0;
}

/* --- Credentials Section --- */
.credentials {
    border-top: 1px solid #eef0f2;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem;
}

.credential-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.credential-card:hover {
    transform: translateY(-5px);
}

.credential-logo {
    margin-bottom: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 245px;
    width: 100%;
}

.credential-logo img {
    max-height: 225px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(10%) contrast(102%);
    transition: var(--transition-smooth);
}

.credential-card:hover .credential-logo img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(100%);
}

.credential-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.credential-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.45;
    min-height: 60px;
}

.credential-subtitle {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.2px;
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 1.2rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.section-header .highlight-p {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 500;
    border-left: 3px solid var(--primary-color);
    padding-left: 1.2rem;
}

/* --- Products Section --- */
.products {
    border-top: 1px solid #eef0f2;
    padding-top: 10rem;
    padding-bottom: 10rem;
    scroll-margin-top: 100px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eef0f2;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.product-image {
    height: 380px; /* Tall cards to accommodate tall fashion images */
    overflow: hidden;
    background-color: #f7f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* Custom Orders CTA Banner */
.products-cta-banner {
    margin-top: 4.5rem;
    background-color: var(--text-color);
    border-radius: 28px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    color: #ffffff;
}

.cta-banner-text {
    text-align: left;
}

.cta-banner-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.cta-banner-text p {
    font-size: 1.05rem;
    color: #d1d5db;
    line-height: 1.5;
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.btn-cta:hover {
    background-color: #ffffff;
    color: var(--text-color);
}

/* Styled Placeholder Image Card */
.product-image.placeholder {
    font-size: 4rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
    min-height: 200px;
}

.product-info {
    padding: 1.8rem;
    flex-shrink: 0;
    background-color: #ffffff;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.product-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Standards & Core Values Section --- */
.standards-details {
    border-top: 1px solid #eef0f2;
    padding-top: 10rem;
    padding-bottom: 8rem;
    scroll-margin-top: 100px;
}

/* Core Values — separate section, just needs breathing room */
.core-values {
    border-top: 1px solid #eef0f2;
    padding-top: 8rem;
    padding-bottom: 8rem;
    scroll-margin-top: 100px;
}


.standards-header-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    margin-bottom: 5rem;
    align-items: start;
}

.standards-header-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.standards-header-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.standards-intro-p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.standards-highlight-box {
    display: flex;
    gap: 1.2rem;
    align-items: stretch;
}

.standards-highlight-box .highlight-bar {
    width: 4px;
    background-color: var(--primary-color);
    flex-shrink: 0;
    border-radius: 2px;
}

.standards-highlight-box p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.6;
}

.values-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.values-center-label {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.values-center-label .highlight {
    color: var(--primary-color);
}

.standards-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.value-card {
    background-color: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.value-flag {
    background-color: #f7faf0;
    color: var(--primary-color);
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: var(--transition-smooth);
}

.value-card:hover .value-flag {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    color: var(--text-color);
}

.value-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Contact Section --- */
.contact {
    border-top: 1px solid #eef0f2;
    padding-top: 10rem;
    padding-bottom: 10rem;
    scroll-margin-top: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1.2px;
}

.contact-left p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

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

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

.contact-item .icon {
    font-size: 1.8rem;
    background-color: #f4f6f8;
    padding: 0.8rem;
    border-radius: 12px;
    line-height: 1;
}

.contact-item label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.contact-item a,
.contact-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #eef0f2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-color);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(175, 216, 27, 0.15);
}

.btn-submit {
    width: 100%;
    background-color: var(--text-color);
    color: #ffffff;
    padding: 1rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

/* --- Group of Companies Logos Section --- */
.group-logos {
    border-top: 1px solid #eef0f2;
    padding-top: 3rem;
    padding-bottom: 4rem;
    text-align: center;
}

.group-logos-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.logos-row-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    margin-top: 1rem;
}

.logo-box-parent {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    transition: var(--transition-smooth);
}

.logo-box-parent img {
    max-height: 100px;
    width: auto;
    max-width: 100%;
    filter: grayscale(100%) opacity(40%);
    transition: var(--transition-smooth);
}

.logo-box-parent:hover img {
    filter: grayscale(0%) opacity(90%);
}

.logo-separator {
    width: 2px;
    height: 70px;
    background-color: #e2e8f0;
    align-self: center;
    flex-shrink: 0;
}

.logo-box-subs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    flex: 1;
}

.logo-box-img {
    max-width: 160px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.logo-box-img img {
    max-height: 55px;
    width: auto;
    max-width: 100%;
    filter: grayscale(100%) opacity(40%);
    transition: var(--transition-smooth);
}

.logo-box-img:hover img {
    filter: grayscale(0%) opacity(90%);
}

/* Ready Trend horizontal logo — significantly larger */
.logo-ready-trend {
    max-width: 240px;
}

.logo-ready-trend img {
    max-height: 80px;
}

/* --- Footer --- */
.footer {
    background-color: #0f1117;
    border-top: 3px solid var(--primary-color);
    margin-top: 0;
}

.footer-top {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 5rem 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    align-items: flex-start;
}

.footer-brand {
    flex: 0 0 260px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.8rem;
}

.footer-logo img {
    height: 44px;
    width: auto;
    /* Invert dark logo for dark background */
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.footer-links-group {
    display: flex;
    gap: 5rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.footer-col a,
.footer-col span {
    font-size: 0.92rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1e2530;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: #475569;
}

.back-to-top {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.back-to-top:hover {
    color: var(--primary-color);
}

/* --- Responsive Adaptations --- */
@media (max-width: 1100px) {
    .hero-overlay {
        padding: 3.5rem;
    }
    .hero-content {
        gap: 2.5rem;
    }
    .stats-grid {
        gap: 2rem;
    }
    .intro-grid {
        gap: 3rem;
    }
    .credentials-grid {
        gap: 2rem;
    }
    .standards-values-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    body {
        padding-top: 70px;
    }
    .header {
        height: 70px;
    }
    .header-logo-img {
        height: 32px;
    }
    .nav {
        gap: 1.2rem;
    }
    .hero {
        height: auto;
        min-height: 70vh;
        width: 96%;
        border-radius: 24px;
    }
    .hero-overlay {
        padding: 2.5rem 2rem;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-right {
        justify-content: flex-start;
    }
    .hero-right p {
        max-width: 100%;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .credential-logo {
        height: 180px;
    }
    .credential-logo img {
        max-height: 160px;
    }
    .credential-title {
        min-height: auto;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .products-cta-banner {
        padding: 2.5rem 3rem;
        gap: 2rem;
    }
    .standards-header-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    .standards-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .content-container {
        padding: 0 1.5rem;
    }
    .header .logo {
        font-size: 1.3rem;
    }
    .nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-nav-backdrop {
        display: block;
    }
    .hero {
        width: 100%;
        border-radius: 0;
        margin-top: -1.5rem;
        min-height: 480px;
    }
    .hero-overlay {
        padding: 2rem 1.5rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-image {
        height: 320px; /* Reduced image height for mobile aspect ratio */
    }
    .products-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
        gap: 1.8rem;
    }
    .cta-banner-text {
        text-align: center;
    }
    .standards-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .core-values {
        padding: 3rem 1.8rem;
        border-radius: 20px;
        margin-top: 1rem;
        margin-bottom: 3rem;
    }
    .values-center-label {
        font-size: 1.8rem;
    }
    .logos-row-parent {
        flex-direction: column;
        gap: 2rem;
    }
    .logo-separator {
        width: 60px;
        height: 2px;
    }
    .logo-box-subs {
        gap: 2.5rem;
    }
    .footer-top {
        flex-direction: column;
        gap: 3rem;
        padding: 3.5rem 1.5rem 2.5rem;
    }
    .footer-brand {
        flex: none;
    }
    .footer-links-group {
        gap: 2.5rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
