/* ============================================
   PROJECT EVERSHING — Premium Corporate Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

:root {
    --bg: #f8f9fb;
    --white: #ffffff;
    --dark: #0a1628;
    --darker: #060f1d;
    --text: #1a1a2e;
    --muted: #64748b;
    --primary: #1e3a5f;
    --primary-light: #2d5a8e;
    --accent: #c8a45a;
    --accent-hover: #b8933f;
    --accent-light: rgba(200,164,90,0.1);
    --border: #e2e8f0;
    --light-bg: #f1f5f9;
    --success: #16a34a;
    --r: 16px;
    --rs: 8px;
    --rl: 24px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --t: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226,232,240,0.6);
    transition: var(--t);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header__inner { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; }

.logo { display: inline; align-items: center; font-size: 1.7rem; font-weight: 800; color: var(--dark); letter-spacing: -0.8px; }
.logo span { color: var(--accent); font-weight: 300; }
.footer-logo { display: inline; }

.nav { display: flex; align-items: center; gap: 2.25rem; }
.nav__link { font-size: 0.92rem; font-weight: 500; color: var(--muted); position: relative; padding: 0.3rem 0; }
.nav__link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--accent); transition: var(--t); border-radius: 2px; }
.nav__link:hover { color: var(--text); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--text); font-weight: 600; }

.nav__cta {
    background: var(--primary); color: white !important;
    padding: 0.65rem 1.75rem; border-radius: var(--rs); font-weight: 600; font-size: 0.9rem;
}
.nav__cta:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(30,58,95,0.3); }
.nav__cta::after { display: none; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0.5rem; z-index: 1001; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: var(--t); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden; padding-top: 80px;
}
.hero__video-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 0;
}
.hero__video-bg video {
    width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 22, 40, 0.75);
    z-index: 1;
}
.hero__video-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 0;
}
.hero__video-bg video {
    width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 22, 40, 0.75);
    z-index: 1;
}
.hero__content { position: relative; z-index: 2; max-width: 750px; }
.hero__label {
    display: inline-block; background: rgba(200,164,90,0.15); color: var(--accent);
    padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem;
    border: 1px solid rgba(200,164,90,0.25);
}
.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 580px; line-height: 1.8; }
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.9rem 2.25rem; border-radius: var(--rs); font-weight: 600; font-size: 1rem;
    cursor: pointer; border: none; transition: var(--t); text-align: center;
}
.btn--primary { background: var(--accent); color: var(--dark); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,90,0.3); }
.btn--outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn--dark { background: var(--primary); color: white; }
.btn--dark:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,95,0.3); }
.btn--white { background: white; color: var(--primary); }
.btn--white:hover { background: var(--light-bg); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }
.btn--ghost { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn--ghost:hover { background: var(--accent); color: var(--dark); }

/* ===== SECTIONS ===== */
.section { padding: 7rem 0; }
.section--white { background: var(--white); }
.section--dark { background: var(--dark); color: white; }
.section--primary { background: var(--primary); color: white; }
.section--light { background: var(--light-bg); }

.section__label {
    display: inline-block; color: var(--accent); font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.75rem;
}
.section__title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.5px; line-height: 1.2; }
.section__subtitle { font-size: 1.1rem; color: var(--muted); max-width: 620px; margin-bottom: 3rem; line-height: 1.8; }
.section__subtitle--light { color: rgba(255,255,255,0.7); }
.text-center { text-align: center; }
.text-center .section__subtitle { margin-left: auto; margin-right: auto; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.service-card {
    background: var(--white); border-radius: var(--r); padding: 2.5rem;
    border: 1px solid var(--border); transition: var(--t); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    transform: scaleX(0); transition: var(--t); transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
    width: 64px; height: 64px; background: var(--accent-light); border-radius: var(--rs);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.6rem;
}
.service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.7; }
.service-card__link { color: var(--accent); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.service-card__link:hover { gap: 0.85rem; }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat__number { font-size: 3.5rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; }
.stat__label { font-size: 0.95rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ===== ABOUT GRID ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; }
.about-image img { width: 100%; height: 420px; object-fit: cover; transition: var(--t); }
.about-image:hover img { transform: scale(1.03); }
.about-image__badge {
    position: absolute; bottom: 1.5rem; left: 1.5rem; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px); padding: 0.75rem 1.25rem; border-radius: var(--rs);
    box-shadow: var(--shadow);
}
.about-image__badge strong { display: block; font-size: 1.5rem; color: var(--accent); }
.about-image__badge span { font-size: 0.8rem; color: var(--muted); }
.about-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.5px; line-height: 1.2; }
.about-content p { color: var(--muted); margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.8; }

.features-list { list-style: none; margin-bottom: 2rem; }
.features-list li { padding: 0.6rem 0; display: flex; align-items: center; gap: 0.75rem; font-weight: 500; color: var(--text); }
.features-list li::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ===== PRODUCTS ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.product-card {
    background: var(--white); border-radius: var(--r); overflow: hidden;
    border: 1px solid var(--border); transition: var(--t);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card__image { height: 220px; overflow: hidden; position: relative; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: var(--t); }
.product-card:hover .product-card__image img { transform: scale(1.08); }
.product-card__image::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}
.product-card__body { padding: 1.5rem; }
.product-card__category { font-size: 0.75rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
.product-card__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.product-card__desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== INSIGHTS ===== */
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 2rem; }
.insight-card {
    background: var(--white); border-radius: var(--r); overflow: hidden;
    border: 1px solid var(--border); transition: var(--t);
}
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.insight-card__image { height: 240px; overflow: hidden; position: relative; }
.insight-card__image img { width: 100%; height: 100%; object-fit: cover; transition: var(--t); }
.insight-card:hover .insight-card__image img { transform: scale(1.05); }
.insight-card__body { padding: 1.75rem; }
.insight-card__tag {
    display: inline-block; background: var(--accent-light); color: var(--accent-hover);
    padding: 0.3rem 0.85rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem;
}
.insight-card__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.insight-card__excerpt { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.7; }
.insight-card__meta { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.testimonial {
    background: var(--white); border-radius: var(--r); padding: 2.5rem;
    border: 1px solid var(--border); transition: var(--t); position: relative;
}
.testimonial:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial::before {
    content: '"'; position: absolute; top: 1.5rem; right: 2rem;
    font-size: 5rem; color: var(--accent); opacity: 0.15; font-family: Georgia, serif; line-height: 1;
}
.testimonial__text { font-size: 1rem; color: var(--muted); margin-bottom: 1.5rem; font-style: italic; line-height: 1.8; }
.testimonial__author { display: flex; align-items: center; gap: 1rem; }
.testimonial__avatar {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--primary); font-size: 1.1rem;
}
.testimonial__avatar--1 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.testimonial__avatar--2 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.testimonial__avatar--3 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.testimonial__name { font-weight: 600; font-size: 0.95rem; }
.testimonial__role { font-size: 0.85rem; color: var(--muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
    text-align: center; padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white; border-radius: var(--rl); margin: 0 2rem;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,164,90,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; position: relative; }
.cta-banner p { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; line-height: 1.8; }
.cta-banner .btn { position: relative; }

/* ===== PAGE HEADER ===== */
.page-header {
    background-color: var(--darker);
    padding: 10rem 0 5rem; text-align: center; color: white; position: relative; overflow: hidden;
}
.page-header {
    position: relative;
    padding: 10rem 0 5rem;
    text-align: center;
    color: white;
    overflow: hidden;
}
.page-header__bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: 0;
}
.page-header h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 800; margin-bottom: 1rem; position: relative; z-index: 2; letter-spacing: -0.5px; }
.page-header p { font-size: 1.15rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; position: relative; z-index: 2; line-height: 1.8; }

/* ===== SOURCING HERO (Video + Form) ===== */
.sourcing-hero {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start;
    min-height: 80vh; padding: 8rem 0 4rem;
}
.video-wrapper { position: relative; }
.video-container {
    position: relative; border-radius: var(--r); overflow: hidden;
    box-shadow: var(--shadow-xl); background: var(--dark);
}
.video-container video, .video-container iframe { width: 100%; height: 300px; object-fit: cover; border: none; }
.video-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; color: white; text-align: center; padding: 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    cursor: pointer; transition: var(--t);
}
.video-placeholder:hover { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.video-placeholder__play {
    width: 80px; height: 80px; background: rgba(200,164,90,0.2); border: 2px solid var(--accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; font-size: 2rem; transition: var(--t);
}
.video-placeholder:hover .video-placeholder__play { transform: scale(1.1); background: rgba(200,164,90,0.3); }
.video-placeholder__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.video-placeholder__sub { font-size: 0.9rem; opacity: 0.7; }

.transcript {
    margin-top: 1.5rem; padding: 1.5rem; background: var(--white);
    border-radius: var(--rs); border: 1px solid var(--border);
    font-size: 0.9rem; color: var(--muted); line-height: 1.8;
    max-height: 250px; overflow-y: auto;
}
.transcript strong { color: var(--text); }

/* ===== CONTACT FORM ===== */
.contact-form {
    background: var(--white); border-radius: var(--r); padding: 2.5rem;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.contact-form h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.contact-form > p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }

.form__group { margin-bottom: 1.25rem; }
.form__group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--text); }
.form__group input, .form__group textarea, .form__group select {
    width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--border);
    border-radius: var(--rs); font-size: 1rem; font-family: inherit;
    transition: var(--t); background: var(--white); color: var(--text);
}
.form__group input:focus, .form__group textarea:focus, .form__group select:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,164,90,0.12);
}
.form__group textarea { resize: vertical; min-height: 130px; }

.form__phone-group { display: flex; gap: 0.5rem; }
.form__phone-group select { width: 140px; flex-shrink: 0; }
.form__phone-group input { flex: 1; }

.form__submit {
    width: 100%; padding: 1rem; background: var(--primary); color: white;
    border: none; border-radius: var(--rs); font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: var(--t);
}
.form__submit:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,58,95,0.3); }

.form-msg { margin-top: 1rem; padding: 0.75rem 1rem; border-radius: var(--rs); font-size: 0.9rem; display: none; text-align: center; }
.form-msg--success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.form-msg--error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

.form-success-overlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,22,40,0.85); backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
}
.form-success-overlay.active { display: flex; }
.form-success-box {
    background: var(--white); border-radius: var(--rl); padding: 3.5rem 3rem;
    text-align: center; max-width: 480px; box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.5s ease;
}
.form-success-box__icon {
    width: 72px; height: 72px; background: #dcfce7; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; font-size: 2rem; color: #16a34a;
}
.form-success-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; }
.form-success-box p { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.form-success-box .btn { cursor: pointer; }

/* ===== VIDEO WRITEUP ===== */
.video-writeup {
    margin-top: 1.5rem; padding: 2rem; background: var(--white);
    border-radius: var(--r); border: 1px solid var(--border);
}
.video-writeup h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.video-writeup p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }

/* ===== FOOTER ===== */
.footer { background: var(--darker); color: rgba(255,255,255,0.65); padding: 5rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.8; }
.footer h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; letter-spacing: 0.5px; text-transform: uppercase; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a { font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.footer__links a:hover { color: var(--accent); padding-left: 4px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
    width: 42px; height: 42px; background: rgba(255,255,255,0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: white;
    font-size: 0.85rem; font-weight: 700; transition: var(--t);
}
.footer__social a:hover { background: var(--accent); color: var(--dark); transform: translateY(-2px); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { border-radius: var(--rs); overflow: hidden; height: 200px; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--t); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.4));
    opacity: 0; transition: var(--t);
}
.gallery-item:hover::after { opacity: 1; }

/* ===== PARTNERS ===== */
.partners { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; opacity: 0.5; }
.partners span { font-size: 1.2rem; font-weight: 700; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }

.partners-marquee { overflow: hidden; position: relative; padding: 2rem 0; }
.partners-marquee::before, .partners-marquee::after {
    content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2;
}
.partners-marquee::before { left: 0; background: linear-gradient(90deg, var(--light-bg), transparent); }
.partners-marquee::after { right: 0; background: linear-gradient(-90deg, var(--light-bg), transparent); }
.partners-track {
    display: flex; gap: 4rem; align-items: center;
    animation: marquee 40s linear infinite;
    width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo {
    font-size: 1.1rem; font-weight: 700; color: var(--muted); letter-spacing: 1.5px;
    text-transform: uppercase; white-space: nowrap; opacity: 0.6; transition: var(--t);
    padding: 0.75rem 1.5rem; border: 1px solid var(--border); border-radius: var(--rs);
    background: var(--white);
}
.partner-logo:hover { opacity: 1; color: var(--accent); border-color: var(--accent); transform: scale(1.05); }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== EMPTY STATE ===== */
.empty-msg { text-align: center; padding: 3rem 0; color: var(--muted); font-size: 1.1rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .sourcing-hero { grid-template-columns: 1fr; min-height: auto; gap: 2rem; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .video-container video { height: 280px !important; }
    .partners-marquee::before, .partners-marquee::after { width: 50px; }
    .partner-logo { font-size: 0.9rem; padding: 0.5rem 1rem; }
    .partners-track { gap: 2rem; }
    .form__phone-group { flex-direction: column; }
    .form__phone-group select { width: 100%; }
    .form-success-box { margin: 1rem; padding: 2rem 1.5rem; max-width: calc(100% - 2rem); }
    .page-header { padding: 8rem 0 3rem; }
    .page-header h1 { font-size: 2rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .section__title { font-size: 1.8rem; }
    .about-grid { gap: 2rem; }
    .about-content h2 { font-size: 1.8rem; }
    .contact-form { padding: 1.5rem; }
    .contact-form h2 { font-size: 1.5rem; }
    .insights-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .gallery-item { height: 150px; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .nav { display: none; }
    .nav--open {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: white;
        padding: 1.5rem 2rem; border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg); gap: 1rem;
        max-height: 80vh; overflow-y: auto;
    }
    .nav__toggle { display: flex; }
    .section { padding: 3rem 0; }
    .services-grid, .products-grid, .insights-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .stat__number { font-size: 2.5rem; }
    .hero__buttons { flex-direction: column; }
    .cta-banner { margin: 0; border-radius: 0; padding: 3rem 1.5rem; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .sourcing-hero { grid-template-columns: 1fr; }
    .video-container video { height: 250px !important; }
    .partners-marquee::before, .partners-marquee::after { width: 50px; }
    .partner-logo { font-size: 0.9rem; padding: 0.5rem 1rem; }
    .partners-track { gap: 2rem; }
    .form__phone-group { flex-direction: column; }
    .form__phone-group select { width: 100%; }
    .form-success-box { margin: 1rem; padding: 2rem 1.5rem; max-width: calc(100% - 2rem); }
    .page-header { padding: 8rem 0 3rem; }
    .page-header h1 { font-size: 2rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .section__title { font-size: 1.8rem; }
    .about-grid { gap: 2rem; }
    .about-content h2 { font-size: 1.8rem; }
    .contact-form { padding: 1.5rem; }
    .contact-form h2 { font-size: 1.5rem; }
    .insights-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .gallery-item { height: 150px; }
}

@media (max-width: 480px) {
    .stats { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .container { padding: 0 1rem; }
    .section { padding: 2.5rem 0; }
    .hero { min-height: auto; padding-top: 100px; padding-bottom: 3rem; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.95rem; }
    .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
    .stat__number { font-size: 2rem; }
    .stat__label { font-size: 0.85rem; }
    .page-header { padding: 7rem 0 2.5rem; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header p { font-size: 0.95rem; }
    .section__title { font-size: 1.5rem; }
    .section__subtitle { font-size: 0.95rem; }
    .about-content h2 { font-size: 1.5rem; }
    .about-content p { font-size: 0.95rem; }
    .features-list li { font-size: 0.9rem; }
    .contact-form { padding: 1.25rem; }
    .contact-form h2 { font-size: 1.3rem; }
    .form__group label { font-size: 0.85rem; }
    .form__group input, .form__group textarea, .form__group select { padding: 0.75rem 0.85rem; font-size: 0.9rem; }
    .form__submit { padding: 0.85rem; font-size: 0.9rem; }
    .partners-marquee::before, .partners-marquee::after { width: 30px; }
    .partner-logo { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
    .partners-track { gap: 1.5rem; }
    .gallery-item { height: 120px; }
    .cta-banner { padding: 2.5rem 1rem; }
    .cta-banner h2 { font-size: 1.5rem; }
    .cta-banner p { font-size: 0.95rem; }
    .service-card { padding: 1.5rem; }
    .service-card__icon { width: 50px; height: 50px; font-size: 1.3rem; }
    .service-card h3 { font-size: 1.1rem; }
    .service-card p { font-size: 0.9rem; }
    .product-card__body { padding: 1rem; }
    .product-card__title { font-size: 1rem; }
    .product-card__desc { font-size: 0.85rem; }
    .insight-card__body { padding: 1.25rem; }
    .insight-card__title { font-size: 1.1rem; }
    .insight-card__excerpt { font-size: 0.85rem; }
    .testimonial { padding: 1.5rem; }
    .testimonial__text { font-size: 0.9rem; }
    .video-container video { height: 200px !important; }
    .form-success-box { padding: 1.5rem 1rem; }
    .form-success-box h3 { font-size: 1.3rem; }
    .form-success-box p { font-size: 0.9rem; }
    .form-success-box__icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .footer { padding: 3rem 0 1.5rem; }
    .footer__brand p { font-size: 0.85rem; }
    .footer h4 { font-size: 0.9rem; }
    .footer__links a { font-size: 0.85rem; }
    .footer__bottom { font-size: 0.8rem; }
    .logo { font-size: 1.5rem; }
    .header__inner { padding: 0.85rem 0; }
}
