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

:root {
  --navy:        #162032;
  --navy-light:  #1e2f45;
  --orange:      #e05500;
  --orange-dark: #c44a00;
  --white:       #ffffff;
  --light:       #f5f6f8;
  --text:        #111827;
  --muted:       #6b7280;
  --border:      #e5e7eb;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.13);
  --radius:      6px;
  --t:           0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
p  { color: var(--muted); line-height: 1.75; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt  { background: var(--light); }
.section-dark { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 580px; margin: 12px auto 0; font-size: 1.05rem; }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(224,85,0,0.09);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(224,85,0,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.logo-words { display: flex; flex-direction: column; line-height: 1.15; }
.logo-words strong { font-size: 1rem; font-weight: 800; color: var(--white); }
.logo-words span   { font-size: 0.6rem; font-weight: 500; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.12em; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 8px 13px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--t);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem; font-weight: 600;
}
.header-phone svg { color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--t);
}

/* Mobile nav drawer */
.mobile-nav {
  background: var(--navy-light);
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-nav.open { max-height: 360px; }
.mobile-nav a {
  display: block;
  padding: 13px 24px;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--t);
}
.mobile-nav a:hover { color: var(--white); padding-left: 30px; }
.mobile-nav .mobile-phone {
  padding: 14px 24px;
  color: var(--orange);
  font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.28;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(22,32,50,0.85) 40%, rgba(22,32,50,0.2) 100%);
}
.hero-content { position: relative; max-width: 640px; }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px; max-width: 520px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat span   { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* ── Stats bar ── */
.stats-bar { background: var(--orange); padding: 20px 0; }
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.sbi {
  display: flex; align-items: center; gap: 12px;
  padding: 4px 24px;
  border-right: 1px solid rgba(255,255,255,0.22);
}
.sbi:last-child { border-right: none; }
.sbi-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.sbi-text strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--white); line-height: 1.1; }
.sbi-text span   { font-size: 0.75rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ════════════════════════════════
   PRODUCT CARDS (HOME PREVIEW)
════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--t);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--orange);
}
.pc-img { height: 195px; overflow: hidden; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .pc-img img { transform: scale(1.06); }
.pc-body { padding: 18px 20px; }
.pc-body h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.05rem; }
.pc-body p  { font-size: 0.85rem; margin-bottom: 12px; line-height: 1.5; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.pc-tag {
  font-size: 0.7rem; font-weight: 600; font-family: monospace;
  background: rgba(224,85,0,0.07); color: var(--orange);
  border: 1px solid rgba(224,85,0,0.15);
  padding: 2px 8px; border-radius: 3px;
}
.pc-footer {
  padding: 11px 20px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.pc-footer span { font-size: 0.8rem; color: var(--muted); }
.pc-footer a { font-size: 0.82rem; font-weight: 600; color: var(--orange); }
.pc-footer a:hover { text-decoration: underline; }

/* ════════════════════════════════
   WHY CHOOSE US
════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px;
}
.feature-card {
  padding: 28px 24px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--white);
  text-align: center; transition: var(--t);
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange); transform: translateY(-3px); }
.feature-icon {
  width: 58px; height: 58px; margin: 0 auto 18px;
  background: rgba(224,85,0,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.feature-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.feature-card p  { font-size: 0.86rem; }

/* ════════════════════════════════
   INDUSTRIES (DARK)
════════════════════════════════ */
.industries-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px;
}
.ind-item {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem; font-weight: 500;
  transition: var(--t);
}
.ind-item:hover { background: rgba(255,255,255,0.06); border-color: var(--orange); }
.ind-item svg { color: var(--orange); flex-shrink: 0; }

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0; text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 36px; font-size: 1rem; }
.cta-btns    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer { background: #0e1822; color: rgba(255,255,255,0.55); padding-top: 60px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { font-size: 0.86rem; line-height: 1.75; max-width: 250px; margin-top: 14px; }
.footer-col h5 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.13em;
  color: rgba(255,255,255,0.88); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: var(--t); }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.fc-contact { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: 0.85rem; }
.fc-contact svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom a { color: var(--orange); }
.gst-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  padding: 4px 10px; border-radius: 4px;
}

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 56px 0 44px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, transparent 45%, rgba(224,85,0,0.05) 100%);
  pointer-events: none;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: var(--t); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb svg { opacity: 0.4; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.5rem); }
.page-hero .sub { color: rgba(255,255,255,0.55); margin-top: 10px; max-width: 520px; font-size: 1rem; }

/* ════════════════════════════════
   ABOUT PAGE
════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-imgs .img-main { grid-column: 1/-1; height: 260px; object-fit: cover; border-radius: var(--radius); }
.about-imgs .img-side { height: 170px; object-fit: cover; border-radius: var(--radius); }

.about-text h2 { margin-bottom: 16px; }
.about-text > p { margin-bottom: 14px; }
.check-list { margin: 18px 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--muted); padding: 5px 0;
}
.check-list li svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }

.founder-card {
  background: var(--light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin-top: 24px;
}
.founder-card strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 3px; }
.founder-card span { font-size: 0.82rem; color: var(--orange); font-weight: 600; }

/* ════════════════════════════════
   PRODUCTS PAGE
════════════════════════════════ */
.product-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.product-block-header {
  background: var(--navy);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.product-block-header h3 { color: var(--white); font-size: 1.1rem; margin: 0; }
.product-block-header .range { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.product-block-body { display: grid; grid-template-columns: 220px 1fr; }
.pb-img { overflow: hidden; }
.pb-img img { width: 100%; height: 100%; object-fit: cover; }
.pb-info { padding: 22px 26px; }
.pb-info > p { font-size: 0.9rem; margin-bottom: 14px; }
.grades-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.grade { font-size: 0.75rem; font-weight: 700; font-family: monospace; background: rgba(224,85,0,0.08); color: var(--orange); border: 1px solid rgba(224,85,0,0.18); padding: 3px 9px; border-radius: 4px; }

.size-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.size-table thead th {
  padding: 9px 14px; text-align: left;
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--navy); background: var(--light); border-bottom: 2px solid var(--border);
}
.size-table td { padding: 8px 14px; border-bottom: 1px solid var(--border); color: var(--muted); }
.size-table tbody tr:last-child td { border-bottom: none; }
.size-table tbody tr:hover td { background: var(--light); }

.table-wrap { overflow-x: auto; }

/* ════════════════════════════════
   SERVICES PAGE
════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: var(--t);
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange); transform: translateY(-2px); }
.sv-icon {
  width: 50px; height: 50px; margin-bottom: 16px;
  background: rgba(224,85,0,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.service-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1rem; }
.service-card p  { font-size: 0.86rem; margin-bottom: 14px; }
.service-card ul li {
  font-size: 0.84rem; color: var(--muted); padding: 3px 0 3px 16px;
  position: relative;
}
.service-card ul li::before { content: '›'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ════════════════════════════════
   CONTACT PAGE
════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 36px; align-items: start; }

.contact-info-box {
  background: var(--navy); border-radius: var(--radius); padding: 32px;
}
.contact-info-box h3 { color: var(--white); margin-bottom: 8px; font-size: 1.15rem; }
.contact-info-box > p { color: rgba(255,255,255,0.5); font-size: 0.86rem; margin-bottom: 28px; }
.ci-row {
  display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start;
}
.ci-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(255,255,255,0.07); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.ci-text strong { display: block; color: var(--white); font-size: 0.86rem; margin-bottom: 2px; }
.ci-text span   { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.ci-text a      { color: rgba(255,255,255,0.6); transition: var(--t); }
.ci-text a:hover { color: var(--orange); }

.map-box { margin-top: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.map-box iframe { width: 100%; height: 200px; border: 0; display: block; }

.contact-form-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.contact-form-box h3 { color: var(--navy); margin-bottom: 6px; }
.contact-form-box > p { font-size: 0.86rem; margin-bottom: 26px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 13px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; font-family: inherit; color: var(--text);
  background: var(--white); outline: none; transition: var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(224,85,0,0.08); }
.form-group textarea { resize: vertical; min-height: 115px; }

/* ════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: var(--t);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.55); }
.wa-float svg { color: var(--white); }

/* ════════════════════════════════
   ENQUIRY BANNER (product pages)
════════════════════════════════ */
.enquiry-banner {
  background: var(--orange);
  padding: 28px 0;
  text-align: center;
}
.enquiry-banner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 16px; }
.enquiry-banner h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-grid          { grid-template-columns: 1fr; }
  .contact-layout      { grid-template-columns: 1fr; }
  .product-block-body  { grid-template-columns: 1fr; }
  .pb-img              { height: 220px; }
}

@media (max-width: 768px) {
  .section             { padding: 56px 0; }
  .main-nav            { display: none; }
  .header-right .btn   { display: none; }
  .header-phone        { display: none; }
  .hamburger           { display: flex; }
  .stats-bar-inner     { grid-template-columns: 1fr 1fr; }
  .sbi:nth-child(2)    { border-right: none; }
  .sbi:nth-child(3),
  .sbi:nth-child(4)    { border-top: 1px solid rgba(255,255,255,0.15); }
  .hero                { min-height: 75vh; }
  .about-imgs .img-main { height: 200px; }
  .form-row-2          { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom       { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container           { padding: 0 16px; }
  .stats-bar-inner     { grid-template-columns: 1fr; }
  .sbi                 { border-right: none; border-top: 1px solid rgba(255,255,255,0.15); }
  .sbi:first-child     { border-top: none; }
  .hero-btns           { flex-direction: column; }
  .hero-btns .btn      { justify-content: center; }
  .hero-stats          { gap: 20px; }
  .wa-float            { bottom: 18px; right: 18px; }
}

/* ── Trusted Customers Marquee ── */
.clients-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0 32px;
  overflow: hidden;
}
.clients-strip .strip-title {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.clients-strip .strip-title strong { color: var(--orange); }
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.client-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.client-mono {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.client-chip span {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  letter-spacing: 0.2px;
}
@media (max-width: 768px) {
  .marquee-track { gap: 36px; animation-duration: 24s; }
  .client-mono   { width: 34px; height: 34px; font-size: 0.85rem; }
  .client-chip span { font-size: 0.92rem; }
}

.client-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 4px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .client-logo { width: 34px; height: 34px; }
}

.client-logo--dark { background: var(--navy); border-color: var(--navy); }
