/* ============================================================
   PERFECT CONTROLS — Main Stylesheet
   Colors: Navy #0D2B5E | Blue #1554A0 | Orange #F47920
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Nunito+Sans:wght@300;400;600;700&display=swap');

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --navy:      #0D2B5E;
  --blue:      #1554A0;
  --sky:       #2B7FD4;
  --orange:    #F47920;
  --amber:     #FFAA00;
  --white:     #FFFFFF;
  --offwhite:  #F4F6FA;
  --gray:      #8898AA;
  --dark:      #111827;
  --text:      #2D3748;
  --border:    #DDE3EE;
  --radius:    6px;
  --shadow-sm: 0 2px 8px rgba(13,43,94,.08);
  --shadow:    0 4px 24px rgba(13,43,94,.12);
  --shadow-lg: 0 16px 48px rgba(13,43,94,.18);
  --transition: all .28s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; }

/* ── LAYOUT UTILITIES ─────────────────────────────────────── */
.container    { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad  { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center  { text-align: center; }

/* ── SECTION TITLES ───────────────────────────────────────── */
.tag-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  background: rgba(244,121,32,.1);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--navy);
}
.section-lead {
  font-size: 1rem; color: var(--gray);
  margin-top: 12px; max-width: 580px; line-height: 1.75;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-lead { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .04em;
  transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary   { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #d96108; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,121,32,.38); }

.btn-navy      { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #0a1e44; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline   { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-wa {
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .04em;
  transition: var(--transition);
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-wa svg { width: 18px; height: 18px; }

.btn-call {
  background: var(--orange); color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: .04em;
  transition: var(--transition);
}
.btn-call:hover { background: #d96108; transform: translateY(-2px); }
.btn-call svg { width: 18px; height: 18px; }

/* ── TOPBAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.72);
  font-size: .82rem; padding: 8px 0; z-index: 1001;
}
.topbar-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 6px; }
.topbar-left svg { width: 14px; height: 14px; fill: var(--amber); }
.topbar-links { display: flex; gap: 20px; align-items: center; }
.topbar-links a { color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 5px; }
.topbar-links a:hover { color: var(--amber); }
.topbar-links a svg { width: 14px; height: 14px; fill: currentColor; }

/* ── HEADER / NAVBAR ──────────────────────────────────────── */
.site-header {
  background: #fff; box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(13,43,94,.14); }

.navbar {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}

/* Logo */
.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-img-wrap {
  width: 52px; height: 52px; border-radius: 8px; overflow: hidden;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.logo-text-wrap { line-height: 1.15; }
.logo-name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--navy); letter-spacing: .02em;
}
.logo-tagline {
  display: block; font-size: .7rem; font-weight: 600;
  color: var(--gray); letter-spacing: .08em; text-transform: uppercase;
}

/* Nav Links */
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--text); padding: 8px 14px; border-radius: 4px;
  transition: var(--transition);
}
.nav-link:hover  { color: var(--orange); background: rgba(244,121,32,.06); }
.nav-link.active { color: var(--orange); background: rgba(244,121,32,.08); }

/* Nav CTA buttons */
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-wa-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: var(--radius);
  background: #25D366; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 700; letter-spacing: .04em;
  transition: var(--transition);
}
.nav-wa-btn:hover { background: #1db954; }
.nav-call-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: var(--radius);
  background: var(--orange); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 700; letter-spacing: .04em;
  transition: var(--transition);
}
.nav-call-btn:hover { background: #d96108; }
.nav-wa-btn svg, .nav-call-btn svg { width: 15px; height: 15px; fill: #fff; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  background: #fff; border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text);
  padding: 11px 14px; border-radius: 4px;
  transition: var(--transition); display: block;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--orange); background: rgba(244,121,32,.07); }
.mobile-cta-row { display: flex; gap: 10px; margin-top: 14px; }
.mobile-cta-row a { flex: 1; justify-content: center; font-size: .88rem; padding: 11px 14px; }

/* ── FLOATING CTA ─────────────────────────────────────────── */
.floating-cta {
  position: fixed; bottom: 28px; right: 24px;
  display: flex; flex-direction: column; gap: 12px; z-index: 990;
}
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
  transition: var(--transition); cursor: pointer;
  position: relative;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.3); }
.fab svg { width: 26px; height: 26px; fill: #fff; }
.fab-wa   { background: #25D366; }
.fab-call { background: var(--orange); }
.fab-tooltip {
  position: absolute; right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--dark); color: #fff;
  font-size: .78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 4px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.fab:hover .fab-tooltip { opacity: 1; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, #1a4090 60%, #1554A0 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: #fff;
  margin-bottom: 16px;
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  justify-content: center; font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb a { color: var(--amber); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; fill: rgba(255,255,255,.4); }

/* ── HERO (HOME) ──────────────────────────────────────────── */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(13,43,94,.92) 0%, rgba(13,43,94,.78) 50%, rgba(21,84,160,.55) 100%);
}
.hero-inner {
  position: relative; z-index: 1; width: 100%;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--amber); padding: 6px 16px; border-radius: 24px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem); font-weight: 900;
  color: #fff; line-height: 1.05; margin-bottom: 22px;
}
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  line-height: 1.75; max-width: 480px; margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.12); border-radius: 10px;
  overflow: hidden;
}
.hero-stat {
  flex: 1; min-width: 110px; padding: 18px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--amber); line-height: 1;
}
.hero-stat-label { font-size: .74rem; color: rgba(255,255,255,.55); margin-top: 4px; line-height: 1.4; }

/* Hero right - product cards */
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hero-product-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-product-card:hover {
  background: rgba(255,255,255,.12); transform: translateX(-6px);
  border-color: rgba(244,121,32,.4);
}
.hero-card-img {
  width: 64px; height: 64px; border-radius: 8px;
  flex-shrink: 0; overflow: hidden; background: rgba(255,255,255,.1);
}
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 3px;
}
.hero-card-body p { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.4; }
.hero-card-arrow {
  margin-left: auto; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(244,121,32,.2); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-arrow svg { width: 14px; height: 14px; fill: var(--orange); }

/* ── TRUST STRIP ──────────────────────────────────────────── */
.trust-strip { background: var(--orange); padding: 14px 0; }
.trust-inner {
  display: flex; gap: 40px; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: .04em;
}
.trust-item svg { width: 18px; height: 18px; fill: rgba(255,255,255,.8); flex-shrink: 0; }

/* ── PRODUCT CARDS (Home preview) ────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.product-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-6px);
  border-color: var(--sky);
}
.product-card-img {
  height: 200px; overflow: hidden; position: relative;
  background: var(--offwhite);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-num-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 800;
  padding: 3px 10px; border-radius: 4px;
}
.product-card-body { padding: 22px; }
.product-card-body h3 {
  font-size: 1.3rem; font-weight: 800; color: var(--navy);
  margin-bottom: 8px;
}
.product-card-body p { font-size: .86rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ptag {
  font-size: .72rem; font-weight: 700;
  background: var(--offwhite); color: var(--navy);
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid var(--border);
}

/* ── WHY CHOOSE US ────────────────────────────────────────── */
.why-section { background: var(--navy); overflow: hidden; position: relative; }
.why-section::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,127,212,.15) 0%, transparent 70%);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content .section-title  { color: #fff; }
.why-content .section-lead   { color: rgba(255,255,255,.6); }
.why-list { margin-top: 38px; display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(244,121,32,.12); border: 1px solid rgba(244,121,32,.25);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 22px; height: 22px; fill: var(--orange); }
.why-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 4px;
}
.why-item p { font-size: .86rem; color: rgba(255,255,255,.52); line-height: 1.65; }

.why-stats { display: flex; flex-direction: column; gap: 18px; position: relative; z-index: 1; }
.why-stat-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 24px 28px;
  display: flex; gap: 20px; align-items: center;
  transition: var(--transition);
}
.why-stat-card:hover { background: rgba(255,255,255,.08); transform: translateX(6px); }
.wsc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 900; color: var(--amber); line-height: 1; white-space: nowrap;
}
.wsc-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 3px;
}
.wsc-text p { font-size: .82rem; color: rgba(255,255,255,.48); }

/* ── INDUSTRIES ───────────────────────────────────────────── */
.industries-section { background: var(--offwhite); }
.industries-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.industry-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 22px 14px; text-align: center;
  transition: var(--transition);
}
.industry-card:hover { border-color: var(--orange); box-shadow: 0 6px 20px rgba(244,121,32,.12); transform: translateY(-3px); }
.industry-icon {
  width: 52px; height: 52px; background: rgba(21,84,160,.07);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 12px;
}
.industry-icon svg { width: 26px; height: 26px; fill: var(--blue); }
.industry-card h4 { font-size: .9rem; font-weight: 800; color: var(--navy); font-family: 'Barlow Condensed', sans-serif; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #d96108 100%);
  padding: 72px 0;
}
.cta-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 32px; flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900;
  color: #fff; margin-bottom: 8px;
}
.cta-text p { font-size: .95rem; color: rgba(255,255,255,.82); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-btn-wa {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius);
  background: #25D366; color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 800; letter-spacing: .04em;
  transition: var(--transition);
}
.cta-btn-wa:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.cta-btn-call {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius);
  background: #fff; color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 800; letter-spacing: .04em;
  transition: var(--transition);
}
.cta-btn-call:hover { background: var(--offwhite); transform: translateY(-2px); }
.cta-btn-wa svg, .cta-btn-call svg { width: 20px; height: 20px; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-block {
  position: relative;
}
.about-main-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); height: 460px;
}
.about-main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-box {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); border-radius: 12px;
  padding: 22px 26px; text-align: center; color: #fff;
  box-shadow: 0 10px 30px rgba(244,121,32,.4);
}
.about-badge-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-badge-label { font-size: .78rem; font-weight: 700; opacity: .85; margin-top: 4px; line-height: 1.3; }

.about-content .section-title { margin-bottom: 8px; }
.about-content p { font-size: .94rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px;
}
.hl-box {
  background: var(--offwhite); border-radius: 8px; padding: 16px 18px;
  border-left: 3px solid var(--orange);
}
.hl-box h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: 4px;
}
.hl-box p { font-size: .8rem; color: var(--gray); margin: 0; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 24px; text-align: center;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--blue); }
.value-icon {
  width: 60px; height: 60px; background: rgba(21,84,160,.07);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
}
.value-icon svg { width: 30px; height: 30px; fill: var(--blue); }
.value-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* ── PRODUCTS PAGE ────────────────────────────────────────── */
.products-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 700; letter-spacing: .05em;
  padding: 8px 20px; border-radius: 24px; cursor: pointer;
  background: var(--offwhite); color: var(--gray);
  border: 1px solid var(--border); transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange); color: #fff; border-color: var(--orange);
}
.product-detail-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; margin-bottom: 40px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.product-detail-card:hover { box-shadow: var(--shadow-lg); }
.pdc-inner { display: grid; grid-template-columns: 420px 1fr; }
.pdc-inner.reverse { grid-template-columns: 1fr 420px; }
.pdc-inner.reverse .pdc-visual { order: 2; }
.pdc-inner.reverse .pdc-body   { order: 1; }

.pdc-visual {
  position: relative; overflow: hidden; min-height: 340px;
  background: var(--navy);
}
.pdc-visual img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.pdc-num {
  position: absolute; top: 20px; left: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem; font-weight: 900; color: rgba(255,255,255,.1); line-height: 1;
}
.pdc-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.pdc-body .tag-label { margin-bottom: 10px; }
.pdc-body h2 { font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.pdc-body > p { font-size: .92rem; color: var(--gray); line-height: 1.78; margin-bottom: 24px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.spec-box { background: var(--offwhite); border-radius: 6px; padding: 12px 14px; }
.spec-box .sl { font-size: .7rem; font-weight: 700; color: var(--gray); letter-spacing: .1em; text-transform: uppercase; }
.spec-box .sv { font-size: .9rem; font-weight: 700; color: var(--navy); margin-top: 3px; }
.pdc-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Product features list */
.product-features { margin-bottom: 24px; }
.product-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: var(--text); padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.product-features li:last-child { border-bottom: none; }
.product-features li svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.contact-detail-block { margin-bottom: 28px; display: flex; gap: 18px; align-items: flex-start; }
.cd-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 10px;
  background: rgba(21,84,160,.08);
  display: flex; align-items: center; justify-content: center;
}
.cd-icon svg { width: 22px; height: 22px; fill: var(--blue); }
.cd-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 5px;
}
.cd-info p { font-size: .92rem; color: var(--text); line-height: 1.65; }
.cd-info a { color: var(--blue); }
.cd-info a:hover { color: var(--orange); }

.contact-cta-panel {
  background: var(--navy); border-radius: 16px; padding: 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-cta-panel h3 {
  font-size: 1.6rem; font-weight: 900; color: #fff; margin-bottom: 4px;
}
.contact-cta-panel > p { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 8px; }

.cta-action-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px; padding: 18px 20px;
  display: flex; gap: 16px; align-items: center;
  transition: var(--transition); cursor: pointer;
  text-decoration: none;
}
.cta-action-card:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.cac-icon {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cac-icon svg { width: 24px; height: 24px; fill: #fff; }
.cac-icon.wa   { background: #25D366; }
.cac-icon.call { background: var(--orange); }
.cac-icon.mail { background: var(--sky); }
.cac-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 800; color: #fff;
}
.cac-text p { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 2px; }

.map-frame {
  margin-top: 60px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.map-frame iframe { display: block; width: 100%; border: none; height: 420px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.55); padding-top: 72px; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.6fr; gap: 52px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand {}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-img {
  width: 46px; height: 46px; border-radius: 6px; overflow: hidden;
  background: rgba(255,255,255,.08); flex-shrink: 0;
}
.footer-logo-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.footer-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: #fff; letter-spacing: .02em; display: block;
}
.footer-logo-tag { font-size: .68rem; color: rgba(255,255,255,.4); letter-spacing: .08em; text-transform: uppercase; }
.footer-brand p { font-size: .86rem; line-height: 1.75; max-width: 300px; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .86rem; color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--amber); padding-left: 4px; }

.footer-contact-list li {
  display: flex; gap: 10px; font-size: .84rem;
  color: rgba(255,255,255,.5); margin-bottom: 12px;
}
.footer-contact-list svg { width: 15px; height: 15px; fill: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,.5); }
.footer-contact-list a:hover { color: var(--amber); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-size: .8rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--amber); }

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.up-delay-1 { transition-delay: .1s; }
.reveal.up-delay-2 { transition-delay: .2s; }
.reveal.up-delay-3 { transition-delay: .3s; }
.reveal.visible   { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1120px) {
  .products-grid        { grid-template-columns: repeat(2, 1fr); }
  .industries-grid      { grid-template-columns: repeat(3, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .hero-grid, .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-cards { display: none; }
  .pdc-inner, .pdc-inner.reverse { grid-template-columns: 1fr; }
  .pdc-inner.reverse .pdc-visual { order: 0; }
  .pdc-inner.reverse .pdc-body   { order: 0; }
  .pdc-visual { min-height: 260px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-badge-box { right: 20px; }
  .about-main-img { height: 380px; }
}
@media (max-width: 640px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; text-align: center; gap: 6px; }
  .trust-inner { gap: 20px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hero-stat { min-width: 80px; }
  .section-pad { padding: 64px 0; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
