/* ============================================
   SPORTS CRAFTS — Shared Stylesheet
   Color: Navy #0A1628 | Orange #FF5A1F
   ============================================ */

:root {
  --navy: #0A1628;
  --navy2: #1B3A6B;
  --navy3: #2B5EA7;
  --orange: #FF5A1F;
  --orange2: #FF8C5A;
  --grey: #F8F9FA;
  --grey2: #E9ECEF;
  --grey3: #6C757D;
  --dark: #1A1A2E;
  --white: #FFFFFF;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-sub: 'Space Grotesk', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.14);
  --radius: 12px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; letter-spacing: -0.5px; }
h4, h5, h6 { font-family: var(--font-sub); font-weight: 600; }

/* ============================
   LAYOUT
   ============================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--grey); }
.bg-navy { background: var(--navy); }
.bg-navy2 { background: var(--navy2); }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: white; border-color: var(--orange); }
.btn-primary:hover { background: #E04E18; border-color: #E04E18; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,90,31,.3); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-ghost { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.3); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); }
.btn-lg { font-size: 17px; padding: 16px 32px; }
.btn-sm { font-size: 13px; padding: 8px 18px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================
   NAVIGATION
   ============================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all .3s;
  background: transparent;
}
.site-nav.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.site-nav.solid { background: var(--navy); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text { display: flex; align-items: baseline; gap: 0; font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: 1px; }
.logo-sports { color: white; }
.logo-crafts { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,.08); }
.nav-links .nav-cta { background: var(--orange); color: white; padding: 10px 20px; }
.nav-links .nav-cta:hover { background: #E04E18; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: .3s; }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(27,58,107,.8) 0%, rgba(10,22,40,1) 60%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,90,31,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,90,31,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  width: 100%;
  max-width: 760px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.headline-accent { color: var(--orange); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat { padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-num { display: block; font-family: var(--font-display); font-size: 36px; font-weight: 900; color: white; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================
   TRUST STRIP
   ============================ */
.trust-strip {
  background: var(--grey);
  border-top: 1px solid var(--grey2);
  border-bottom: 1px solid var(--grey2);
  padding: 16px 0;
  overflow: hidden;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--grey3);
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-flags {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-flags span {
  font-size: 13px;
  color: var(--grey3);
  font-weight: 500;
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light .section-title { color: white; }
.section-header.light .section-sub { color: rgba(255,255,255,.65); }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--grey3);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ============================
   PRODUCT TABS & GRID
   ============================ */
.product-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ptab {
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  border: 2px solid var(--grey2);
  background: white;
  color: var(--grey3);
  cursor: pointer;
  transition: all .2s;
}
.ptab:hover { border-color: var(--navy); color: var(--navy); }
.ptab.active { background: var(--navy); color: white; border-color: var(--navy); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey2);
  transition: all .3s;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-icon { font-size: 48px; }
.product-info { padding: 20px 24px; }
.product-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}
.product-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-info p { font-size: 14px; color: var(--grey3); margin-bottom: 12px; }
.product-moq {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy2);
  background: rgba(27,58,107,.08);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ============================
   WHY US GRID
   ============================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .3s;
}
.why-card:hover { background: rgba(255,255,255,.08); border-color: var(--orange); }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-display); font-size: 24px; color: white; margin-bottom: 12px; }
.why-card p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ============================
   PROCESS STEPS
   ============================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--navy);
  color: white;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--orange);
}
.step-content h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--grey3); line-height: 1.6; }
.step-arrow {
  position: absolute;
  top: 24px;
  right: -12px;
  font-size: 24px;
  color: var(--orange);
  z-index: 2;
  font-weight: 900;
}

/* ============================
   CERTIFICATIONS
   ============================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.cert-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--grey2);
  background: white;
  transition: all .2s;
}
.cert-card:hover { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,90,31,.08); }
.cert-badge {
  width: 44px; height: 44px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 12px;
}
.cert-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.cert-card p { font-size: 12px; color: var(--grey3); }

/* ============================
   OEM BANNER
   ============================ */
.oem-banner {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.oem-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--orange);
  opacity: .06;
  border-radius: 50%;
}
.oem-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.oem-banner-text h2 { font-size: clamp(32px, 4vw, 52px); color: white; margin-bottom: 16px; }
.oem-banner-text p { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 24px; line-height: 1.7; }
.oem-checklist { list-style: none; }
.oem-checklist li { font-size: 15px; color: rgba(255,255,255,.8); padding: 6px 0; font-weight: 500; }

.oem-banner-form {
  background: white;
  border-radius: 16px;
  padding: 36px;
}
.oem-banner-form h3 { font-family: var(--font-display); font-size: 28px; color: var(--navy); margin-bottom: 4px; }
.oem-banner-form > p { font-size: 14px; color: var(--grey3); margin-bottom: 20px; }

.quote-form-mini { display: flex; flex-direction: column; gap: 12px; }
.quote-form-mini input,
.quote-form-mini select,
.quote-form-mini textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  transition: border-color .2s;
  background: white;
}
.quote-form-mini input:focus,
.quote-form-mini select:focus,
.quote-form-mini textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.quote-form-mini textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--grey3); text-align: center; }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 2px solid var(--grey2);
  transition: all .3s;
}
.testimonial-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.testimonial-card.featured { border-color: var(--orange); background: linear-gradient(135deg,#FFF8F5,#fff); }
.testimonial-stars { color: #FFB800; font-size: 18px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--dark); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: white;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--navy); }
.testimonial-author span { font-size: 13px; color: var(--grey3); }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: #060D1A;
  padding: 72px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 12px; font-style: italic; }
.footer-address { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.footer-social a:hover { background: var(--orange); color: white; }

.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  padding: 5px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,.5); padding: 4px 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-badges { display: flex; gap: 8px; }
.footer-badges span {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.4);
}

/* ============================
   MOBILE STICKY BAR
   ============================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 8px 8px env(safe-area-inset-bottom, 8px);
  gap: 8px;
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: 8px;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.mobile-bar-btn.call { background: rgba(255,255,255,.08); color: white; }
.mobile-bar-btn.whatsapp { background: #25D366; color: white; }
.mobile-bar-btn.quote { background: var(--orange); color: white; }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 60px) 0 60px;
}
.page-hero-inner { max-width: 720px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); color: white; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 560px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; }
.breadcrumb a { font-size: 13px; color: rgba(255,255,255,.4); }
.breadcrumb span { font-size: 13px; color: rgba(255,255,255,.25); }
.breadcrumb .current { font-size: 13px; color: rgba(255,255,255,.65); }

/* ============================
   PRODUCT PAGE
   ============================ */
.product-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.product-detail-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--grey2);
  transition: all .3s;
}
.product-detail-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-detail-img {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  position: relative;
}
.product-detail-body { padding: 24px; }
.product-detail-body h3 { font-family: var(--font-display); font-size: 26px; color: var(--navy); margin-bottom: 8px; }
.product-detail-body p { font-size: 14px; color: var(--grey3); margin-bottom: 16px; }
.product-specs { list-style: none; margin-bottom: 16px; }
.product-specs li { font-size: 13px; color: var(--dark); padding: 4px 0; }
.product-specs li::before { content: '✓ '; color: var(--orange); font-weight: 700; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.product-tag {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 100px; background: rgba(27,58,107,.08); color: var(--navy2);
}

/* ============================
   OEM PAGE
   ============================ */
.oem-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.oem-feature-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 2px solid var(--grey2);
  background: white;
  transition: .3s;
}
.oem-feature-card:hover { border-color: var(--orange); }
.oem-feature-icon { font-size: 40px; margin-bottom: 16px; }
.oem-feature-card h3 { font-family: var(--font-display); font-size: 26px; color: var(--navy); margin-bottom: 8px; }
.oem-feature-card p { font-size: 15px; color: var(--grey3); line-height: 1.7; }

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th {
  background: var(--navy);
  color: white;
  font-family: var(--font-sub);
  font-size: 14px;
  padding: 16px 20px;
  text-align: left;
}
.pricing-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--grey2); background: white; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--grey); }

/* ============================
   ABOUT PAGE
   ============================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-img {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative;
}
.about-story-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(10,22,40,.6));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: white;
  border: 2px solid var(--grey2);
  transition: .3s;
}
.team-card:hover { border-color: var(--orange); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; color: white;
}
.team-card h4 { font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 8px; display: block; }
.team-card p { font-size: 14px; color: var(--grey3); }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-family: var(--font-display); font-size: 44px; color: var(--navy); margin-bottom: 16px; }
.contact-info p { font-size: 16px; color: var(--grey3); margin-bottom: 32px; line-height: 1.7; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--grey2);
}
.contact-detail-icon { font-size: 24px; flex-shrink: 0; }
.contact-detail h4 { font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.contact-detail p, .contact-detail a { font-size: 14px; color: var(--grey3); }
.contact-detail a:hover { color: var(--orange); }

.contact-form-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--grey2);
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: .2s;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================
   MANUFACTURING PAGE
   ============================ */
.factory-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.factory-stat {
  text-align: center;
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.factory-stat-num { font-family: var(--font-display); font-size: 52px; font-weight: 900; color: var(--orange); line-height: 1; }
.factory-stat-label { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 4px; }

.timeline { position: relative; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 8px; bottom: 8px; width: 2px; background: var(--grey2); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute; left: -40px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); border: 3px solid white;
  box-shadow: 0 0 0 3px var(--orange);
}
.timeline-item h4 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.timeline-item p { font-size: 14px; color: var(--grey3); }
.timeline-year { font-size: 12px; font-weight: 700; color: var(--orange); margin-bottom: 4px; }

/* ============================
   BLOG
   ============================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--grey2);
  transition: .3s;
}
.blog-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-card-body { padding: 20px 24px; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; display: block; }
.blog-card-body h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 8px; line-height: 1.2; }
.blog-card-body p { font-size: 14px; color: var(--grey3); margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--grey3); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .oem-banner-inner { gap: 40px; }
  .about-story-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--navy); padding: 16px 24px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-content { padding-top: calc(var(--nav-h) + 40px); }
  .hero-stats { gap: 0; }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 28px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step-arrow { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .oem-banner-inner { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .factory-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .oem-features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 44px; letter-spacing: -1.5px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; min-width: 80px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
