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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --accent: #10b981;
  --accent-dark: #059669;
  --accent-light: #34d399;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  --gradient-primary: linear-gradient(135deg, #2563eb, #6366f1);
  --gradient-accent: linear-gradient(135deg, #10b981, #059669);
  --gradient-top-border: linear-gradient(90deg, #2563eb, #10b981);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px -8px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-page);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
}


h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  color: var(--text-dark);
}

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

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 12px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 80px; width: auto; object-fit: contain; }
.nav-logo .logo-icon {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: #fff;
  font-family: 'Inter', sans-serif; letter-spacing: 1px;
}
.nav-logo span { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--text-dark); }
.nav-logo .highlight { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--text-muted);
  padding: 8px 16px; border-radius: var(--radius-full);
  transition: all .25s ease;
}
.nav-links a:hover {
  color: var(--text-dark);
  background: var(--bg-card-hover);
}
.nav-links a::after { display: none; }
.nav-cta {
  padding: 10px 24px; border-radius: var(--radius-full); font-weight: 600;
  font-size: .88rem; background: var(--text-dark);
  color: #fff; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all .25s ease;
}
.nav-cta:hover { background: #334155; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text-dark);
  margin: 5px 0; transition: .3s;
}
.mobile-cta { display: none; }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg-page);
}
.hero .container { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 32px; align-items: center;
}
.hero-content { max-width: 100%; }
.hero-logo {
  display: flex; align-items: center; justify-content: center;
  animation: fadeInUp .8s ease .4s both;
}
.hero-logo img {
  max-width: 520px; width: 100%; height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.08));
  border-radius: var(--radius-xl);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: var(--radius-full);
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2);
  font-size: .82rem; font-weight: 600; color: var(--primary);
  margin-bottom: 28px;
  animation: fadeInUp .8s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800; margin-bottom: 20px;
  color: var(--text-dark);
  animation: fadeInUp .8s ease .15s both;
}
.hero h1 .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.08rem; color: var(--text-muted); max-width: 100%;
  margin-bottom: 28px; line-height: 1.7;
  animation: fadeInUp .8s ease .3s both;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp .8s ease .45s both;
}
.btn-primary {
  padding: 14px 32px; border-radius: var(--radius-full); font-weight: 600;
  font-size: .95rem; background: var(--accent);
  color: #fff; border: none; cursor: pointer;
  transition: all .25s ease;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,185,129,0.25); }
.btn-outline {
  padding: 14px 32px; border-radius: var(--radius-full); font-weight: 600;
  font-size: .95rem; background: var(--bg-card);
  color: var(--text-dark); border: 1px solid var(--border); cursor: pointer;
  transition: all .25s ease;
}
.btn-outline:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 36px;
  animation: fadeInUp .8s ease .6s both;
}
.hero-stat h3 {
  font-size: 2.2rem; font-weight: 800;
  color: var(--primary);
}
.hero-stat p { font-size: .88rem; color: var(--text-muted); margin-top: 2px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION COMMON ─── */
section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: var(--radius-full);
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.15);
  font-size: .8rem; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800;
  margin-bottom: 12px; color: var(--text-dark);
}
.section-header p { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ─── SERVICES / PRODUCT CARDS ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all .3s ease;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-top-border);
  transform: scaleX(0); transition: transform .35s; transform-origin: left;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(37,99,235,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.service-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.6; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.about-image {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  width: 100%;
  height: 460px;
}
.about-img-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.about-img-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.about-img-item:hover img {
  transform: scale(1.08);
}
.about-image .floating-card {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.floating-card .fc-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  flex-shrink: 0;
}
.floating-card h4 { font-size: .95rem; font-weight: 700; color: var(--text-dark); }
.floating-card p { font-size: .8rem; color: var(--text-muted); }
.about-content .section-tag { margin-bottom: 16px; }
.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 20px; color: var(--text-dark); }
.about-content > p { color: var(--text-muted); margin-bottom: 18px; font-size: .95rem; line-height: 1.7; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
}
.about-feature .check {
  width: 26px; height: 26px; border-radius: var(--radius-sm);
  background: rgba(16,185,129,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 13px; flex-shrink: 0; margin-top: 2px;
  font-weight: 700;
}
.about-feature h4 { font-size: .92rem; font-weight: 600; color: var(--text-dark); }
.about-feature p { font-size: .84rem; color: var(--text-muted); }

/* ─── CLIENTS ─── */
.clients { background: var(--bg-page); }
.clients-track {
  display: flex; gap: 24px; align-items: center;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}
.clients-wrapper { overflow: hidden; position: relative; }
.clients-wrapper::before, .clients-wrapper::after {
  content: ''; position: absolute; top: 0; width: 120px; height: 100%;
  z-index: 2;
}
.clients-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-page), transparent); }
.clients-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg-page), transparent); }
.client-logo {
  padding: 16px 30px; border-radius: var(--radius-md);
  background: var(--bg-card); border: 1px solid var(--border);
  white-space: nowrap; font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--text-muted);
  transition: all .25s; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.client-logo:hover { color: var(--text-dark); border-color: var(--border-hover); box-shadow: var(--shadow-md); }

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

/* ─── LOCATION ─── */
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch;
}
.location-maps-row {
  display: flex; flex-direction: column; gap: 24px;
}
.location-map-wrapper {
  display: flex; flex-direction: column; gap: 0;
}
.map-label {
  background: var(--bg-card); border: 1px solid var(--border);
  border-bottom: none; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 14px 20px; font-weight: 700; font-size: .95rem;
  color: var(--text-dark); display: flex; align-items: center; gap: 8px;
}
.location-map {
  border-radius: 0 0 var(--radius-xl) var(--radius-xl); overflow: hidden; height: 300px;
  border: 1px solid var(--border); border-top: none; position: relative;
  background: #f1f5f9; box-shadow: var(--shadow-md);
}
.location-map iframe { width: 100%; height: 100%; border: none; filter: none; }
.location-info { display: flex; flex-direction: column; gap: 20px; }
.location-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: all .25s; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden; flex: 1;
}
.location-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-top-border);
  opacity: 0; transition: opacity .3s;
}
.location-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-hover); }
.location-card:hover::before { opacity: 1; }
.location-card .lc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.location-card .lc-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(37,99,235,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.location-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.location-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }
.location-card a { color: var(--primary) !important; font-weight: 500; }
.location-card a:hover { text-decoration: underline; }

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  background: var(--bg-card);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 36px;
}
.footer-about .nav-logo { margin-bottom: 16px; }
.footer-about p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; }
.footer-col h4 {
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; margin-bottom: 20px; color: var(--text-dark);
}
.footer-col a {
  display: block; color: var(--text-muted); font-size: .88rem;
  padding: 4px 0; transition: color .25s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px; text-align: center;
  color: var(--text-light); font-size: .82rem;
}

/* ─── PRODUCT GALLERY ─── */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.product-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-item:hover img { transform: scale(1.06); }
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity .35s;
}
.product-item:hover .product-overlay { opacity: 1; }
.product-overlay span {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: .88rem; color: #fff;
}

/* ─── SERVICES 2-COL VARIANT ─── */
.services-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── TRADED BRANDS ─── */
.traded-brands {
  margin-top: 36px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.traded-brands h3 {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 24px; color: var(--text-dark);
}
.brand-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.brand-tag {
  padding: 8px 20px; border-radius: var(--radius-full);
  background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.15);
  font-size: .88rem; font-weight: 600; color: var(--primary);
  transition: all .25s;
}
.brand-tag:hover {
  background: rgba(37,99,235,0.12); border-color: var(--primary);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}

/* ─── PARTNERS ─── */
.partners-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  text-align: center; position: relative;
  transition: all .3s; box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.partner-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-top-border);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.partner-badge {
  display: inline-block; padding: 4px 14px; border-radius: var(--radius-full);
  background: var(--gradient-primary); font-size: .72rem;
  font-weight: 700; color: #fff; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 18px;
}
.partner-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.partner-role {
  color: var(--primary); font-weight: 600;
  font-size: .86rem; margin-bottom: 10px;
}
.partner-card > p:last-child { color: var(--text-muted); font-size: .88rem; }

/* ─── TEAM ─── */
.team-grid {
  display: flex; justify-content: center; gap: 64px;
}
.team-card {
  text-align: center; max-width: 280px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px 32px;
  box-shadow: var(--shadow-sm); transition: all .3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo {
  width: 160px; height: 160px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              var(--gradient-primary) border-box;
  padding: 3px;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.team-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.team-role {
  color: var(--primary); font-weight: 600;
  font-size: .9rem;
}

/* ─── FOOTER ─── */
.footer {
  background: #0f172a; color: #cbd5e1; padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-about p {
  color: #94a3b8; font-size: .9rem; line-height: 1.7; margin-top: 16px;
}
.footer-logo {
  display: inline-block;
}
.footer-logo-img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  border-radius: 50%;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 8px;
}
.footer-col a {
  color: #94a3b8; font-size: .88rem; text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: .82rem; color: #64748b; }

/* ─── ALTERNATE SECTION BG ─── */
section:nth-of-type(even) {
  background: var(--bg-card);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */

/* --- Tablet --- */
@media (max-width: 968px) {
  .container { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-logo { order: -1; margin-bottom: 20px; }
  .hero-logo img { max-width: 320px; margin: 0 auto; }
  .hero-badge { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 32px; }
  .hero p { margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image-grid { height: 360px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .product-gallery { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-2col { grid-template-columns: 1fr; }
  .team-grid { flex-direction: column; align-items: center; gap: 32px; }
  .location-map { height: 320px; }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  section { padding: 48px 0; }

  /* Navbar */
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(16px);
    padding: 24px; gap: 4px;
    z-index: 1001; overflow-y: auto;
    max-height: calc(100vh - 70px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active a {
    padding: 14px 16px; border-radius: var(--radius-md);
    font-size: 1.05rem; font-weight: 600;
  }
  .nav-cta { display: none; }
  .mobile-cta { display: block !important; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
  .mobile-cta-btn {
    display: block !important; width: 100%; text-align: center;
    padding: 14px 24px !important; border-radius: var(--radius-full) !important;
    background: var(--accent) !important; color: #fff !important;
    font-weight: 700 !important; font-size: 1rem !important;
    transition: background .25s;
  }
  .mobile-cta-btn:hover { background: var(--accent-dark) !important; }
  .nav-logo-img { height: 56px; }

  /* Hero */
  .hero { min-height: auto; padding-top: 0; }
  .hero .container { padding-top: 80px; padding-bottom: 32px; }
  .hero h1 { font-size: 1.8rem; margin-bottom: 16px; }
  .hero p { font-size: .95rem; margin-bottom: 20px; }
  .hero-badge { font-size: .75rem; padding: 6px 14px; margin-bottom: 20px; }
  .hero-logo img { max-width: 240px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 10px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; padding: 12px 24px; font-size: .9rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .hero-stat h3 { font-size: 1.6rem; }
  .hero-stat p { font-size: .78rem; }

  /* Section headers */
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 1.6rem; }
  .section-header p { font-size: .9rem; }
  .section-tag { font-size: .72rem; padding: 5px 12px; }

  /* About */
  .about-image-grid { height: 280px; gap: 8px; }
  .about-content h2 { font-size: 1.4rem; }
  .about-content > p { font-size: .88rem; }
  .about-feature h4 { font-size: .86rem; }
  .about-feature p { font-size: .8rem; }

  /* Products & Services */
  .services-grid { grid-template-columns: 1fr; }
  .product-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-card { padding: 24px 20px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: .85rem; }

  /* Partners */
  .partner-card { padding: 24px 20px; }
  .partner-card h3 { font-size: 1rem; }

  /* Team */
  .team-card { padding: 28px 24px; max-width: 100%; }
  .team-photo { width: 120px; height: 120px; }

  /* Location */
  .location-map { height: 260px; }
  .location-info { grid-template-columns: 1fr; }
  .location-card { padding: 20px; }
  .location-card h3 { font-size: .92rem; }
  .location-card p { font-size: .84rem; }
  .map-label { font-size: .85rem; padding: 12px 16px; }

  /* Traded brands */
  .traded-brands { padding: 24px 16px; }
  .brand-tag { padding: 6px 14px; font-size: .8rem; }

  /* Clients */
  .client-logo { padding: 12px 20px; font-size: .85rem; }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-logo-img { height: 52px; width: 52px; }
  .footer-col h4 { font-size: .85rem; margin-bottom: 8px; }
  .footer-col a { font-size: .84rem; }
  .footer-bottom p { font-size: .76rem; }
}

/* --- Small phones --- */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  section { padding: 36px 0; }

  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: .88rem; }
  .hero-logo img { max-width: 180px; }
  .hero-stats { gap: 12px; }
  .hero-stat h3 { font-size: 1.3rem; }

  .section-header h2 { font-size: 1.35rem; }

  .about-image-grid { height: 220px; gap: 6px; }
  .about-content h2 { font-size: 1.2rem; }

  .product-gallery { grid-template-columns: 1fr; gap: 12px; }
  .product-item { aspect-ratio: 4/3; }

  .team-grid { gap: 20px; }
  .team-photo { width: 100px; height: 100px; }
  .team-card h3 { font-size: 1rem; }

  .location-map { height: 220px; }

  .footer-grid { gap: 20px; }
}
