/* ═══════════════════════════════════════════════════
   UNIFORMALY — PROFESSIONAL UNIFORM WEBSITE
   CSS v1.0
═══════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --navy:        #1E3A8A;
  --navy-dark:   #162d6e;
  --navy-mid:    #1d4ed8;
  --steel:       #64748B;
  --orange:      #F97316;
  --orange-dark: #C2600E;
  --white:       #FFFFFF;
  --light-gray:  #F1F5F9;
  --mid-gray:    #E2E8F0;
  --charcoal:    #1E293B;
  --text:        #334155;
  --text-light:  #64748B;
  --text-muted:  #94A3B8;
  --border:      #E2E8F0;

  --font-head:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow:      0 4px 16px rgba(0,0,0,0.10);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 50px rgba(0,0,0,0.16);
  --shadow-navy: 0 8px 30px rgba(30,58,138,0.25);
  --shadow-orange:0 8px 30px rgba(249,115,22,0.35);

  --transition:  0.3s ease;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ─── LAYOUT ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 96px 0; }
.hide-mobile { display: inline; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-sm  { padding: 8px 18px;  font-size: 0.82rem; }
.btn-md  { padding: 12px 24px; font-size: 0.9rem;  }
.btn-lg  { padding: 15px 32px; font-size: 1rem;    }
.btn-block { width: 100%; justify-content: center; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(249,115,22,0.45);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ═══════════════════════════════
   TOP BAR
═══════════════════════════════ */
.top-bar {
  background: var(--charcoal);
  padding: 9px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar-left a, .top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.top-bar-left a:hover { color: var(--orange); }
.top-bar-left svg { width: 14px; height: 14px; }
.top-bar-right { display: flex; align-items: center; gap: 1.5rem; }
.top-bar-right span { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.top-bar-cta {
  background: var(--orange);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.78rem;
  transition: background var(--transition);
}
.top-bar-cta:hover { background: var(--orange-dark); }

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
.header { position: sticky; top: 0; z-index: 1000; }
.navbar {
  background: var(--navy);
  padding: 0;
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  /* Logo is dark on transparent — invert on scrolled dark navbar if needed */
  filter: brightness(0) invert(1);
}
/* Navbar stays navy always — keep logo white */
.logo-mark {
  width: 40px; height: 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.logo-text-group { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.logo-tagline {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 60%; }
.nav-link.active { color: var(--white); }
.nav-link.active::after { width: 60%; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--navy-dark);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 1.5rem; }
.mobile-link {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all var(--transition);
}
.mobile-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.mobile-cta { width: 100%; justify-content: center; }

/* ═══════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #fbbf24);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ═══════════════════════════════
   HERO — SPLIT SCREEN
═══════════════════════════════ */
.hero.hero-split {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* ── LEFT CONTENT SIDE ── */
.hero-content-side {
  position: relative;
  background: linear-gradient(145deg, #0a1628 0%, #1E3A8A 55%, #162d6e 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 60px 80px;
  z-index: 2;
  overflow: hidden;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(90deg, #fff 0, #fff 1px, transparent 0, transparent 50px),
    repeating-linear-gradient(180deg, #fff 0, #fff 1px, transparent 0, transparent 50px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero-content-side::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content-side::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(30,58,138,0.4) 0%, transparent 70%);
  pointer-events: none;
}

/* ── RIGHT VISUAL SIDE ── */
.hero-visual-side {
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-split:hover .hero-img { transform: scale(1.06); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,40,0.55) 0%,
    rgba(30,58,138,0.2) 40%,
    transparent 100%
  );
}

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.35);
  color: #FED7AA;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── HERO HEADLINE (staggered lines) ── */
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero-line {
  display: block;
}
.hero-line.hero-accent {
  color: var(--orange);
  position: relative;
}

/* ── HERO SUB, PROPS, CTAs, TRUST ── */
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-props {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-prop {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-prop svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background var(--transition), border-color var(--transition);
}
.trust-badge:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(249,115,22,0.4);
}
.trust-badge svg { width: 14px; height: 14px; color: var(--orange); }

/* ── FLOATING STAT CARDS ── */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  z-index: 5;
}
.hero-float--clients {
  top: 18%;
  right: 8%;
}
.hero-float--speed {
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
}
.hero-float--pieces {
  bottom: 18%;
  right: 10%;
}
.hf-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hf-icon svg { width: 20px; height: 20px; color: var(--white); }
.hf-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hf-num {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}
.hf-label {
  font-size: 0.7rem;
  color: var(--steel);
  font-weight: 500;
}

/* ── SCROLL ARROW ── */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 25%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 10;
}
.hero-scroll svg { width: 28px; height: 28px; }
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── HERO ANIMATION (stagger-in) ── */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.hero-anim.hero-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════
   BRAND MARQUEE
═══════════════════════════════ */
.brand-marquee {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.marquee-track {
  overflow: hidden;
  position: relative;
}
.marquee-track::before,
.marquee-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-track::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.marquee-track::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-brand {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition);
}
.marquee-brand:hover { color: var(--navy); }
.marquee-sep {
  color: var(--orange);
  font-size: 0.6rem;
  flex-shrink: 0;
  opacity: 0.5;
}
.marquee-track:hover .marquee-inner {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════
   STATS BAR
═══════════════════════════════ */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
  border-bottom: 3px solid var(--orange);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 1rem;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-item:last-child::after { display: none; }
.stat-value {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ═══════════════════════════════
   INDUSTRIES
═══════════════════════════════ */
.industries-section { background: var(--light-gray); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--navy);
  transform: scaleY(0);
  transition: transform var(--transition);
  border-radius: 4px 0 0 4px;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.industry-card:hover::before { transform: scaleY(1); }
.industry-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.industry-icon svg { width: 26px; height: 26px; }
.industry-icon.navy   { background: #EFF6FF; color: var(--navy); }
.industry-icon.orange { background: #FFF7ED; color: var(--orange); }
.industry-icon.teal   { background: #F0FDFA; color: #0F766E; }
.industry-icon.steel  { background: #F8FAFC; color: var(--steel); }
.industry-icon.purple { background: #F5F3FF; color: #7C3AED; }
.industry-icon.dark   { background: #F1F5F9; color: var(--charcoal); }
.industry-icon.green  { background: #F0FDF4; color: #16A34A; }
.industry-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.industry-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--transition), color var(--transition);
}
.industry-link svg { width: 16px; height: 16px; }
.industry-link:hover { color: var(--orange); gap: 10px; }

/* ═══════════════════════════════
   PRODUCTS / TABS
═══════════════════════════════ */
.products-section { background: var(--white); }
.product-tabs { margin-top: 0; }
.tab-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  background: transparent;
}
.tab-btn:hover { color: var(--navy); background: var(--light-gray); }
.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
  background: var(--light-gray);
}
.tab-pane { display: none; animation: fadeIn 0.35s ease; }
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-img {
  height: 200px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.product-img-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-info { padding: 24px; }
.product-info h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.product-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}
.product-price {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
/* Custom Tab Pane */
.custom-cta-pane {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.custom-icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--orange);
}
.custom-icon svg { width: 32px; height: 32px; }
.custom-cta-pane h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.custom-cta-pane p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.custom-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 320px;
  margin: 0 auto 36px;
}
.custom-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.custom-features svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }

/* ═══════════════════════════════
   WHY UNIFORMALY
═══════════════════════════════ */
.why-section { background: var(--light-gray); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-navy);
  border-color: var(--navy);
}
.feature-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.feature-highlight {
  display: inline-block;
  background: #EFF6FF;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════
   PROCESS
═══════════════════════════════ */
.process-section { background: var(--white); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 56px;
}
.process-line {
  position: absolute;
  top: 56px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px 40px;
}
.step-number {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 8px;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-navy);
  transition: all var(--transition);
}
.process-step:hover .step-icon {
  background: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: scale(1.1);
}
.step-icon svg { width: 22px; height: 22px; }
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 12px;
}
.step-time {
  display: inline-block;
  background: var(--light-gray);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.process-cta { text-align: center; }

/* ═══════════════════════════════
   CUSTOMIZATION
═══════════════════════════════ */
.customization-section { background: var(--charcoal); }
.customization-section .section-eyebrow { color: var(--orange); }
.customization-section .section-title { color: var(--white); }
.customization-section .section-subtitle { color: rgba(255,255,255,0.6); }
.custom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.custom-grid--enhanced {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.custom-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.custom-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.custom-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 16px;
}
.custom-icon {
  width: 52px; height: 52px;
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.custom-icon svg { width: 24px; height: 24px; }
.custom-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.custom-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ═══════════════════════════════
   GALLERY
═══════════════════════════════ */
.gallery-section { background: var(--light-gray); }
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all var(--transition);
}
.filter-btn:hover { color: var(--navy); border-color: var(--navy); }
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #1E3A8A;
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,58,138,0.92) 0%, rgba(30,58,138,0.55) 50%, transparent 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.g-industry { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); }
.g-qty { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.g-year { font-size: 0.78rem; color: var(--orange); font-weight: 600; }
.gallery-cta { text-align: center; }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testimonials-section { background: var(--navy); }
.testimonials-section .section-eyebrow { color: rgba(255,255,255,0.6); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.55); }
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}
.testimonial-card {
  min-width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-stars { color: var(--orange); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 24px; }
.testimonial-quote {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 32px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; gap: 3px; }
.author-info strong { font-family: var(--font-head); color: var(--white); font-size: 0.95rem; }
.author-info span:not(.author-industry) { font-size: 0.83rem; color: rgba(255,255,255,0.6); }
.author-industry {
  display: inline-block;
  background: rgba(249,115,22,0.2);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 100px;
  margin-top: 4px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.carousel-btn:hover { background: var(--orange); border-color: var(--orange); }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════
   CLIENT LOGOS
═══════════════════════════════ */
.clients-section { background: var(--white); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: all var(--transition);
  cursor: default;
}
.client-logo:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.03);
}

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
.pricing-section { background: var(--light-gray); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 28px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 2px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-popular {
  border-color: var(--navy);
  transform: scale(1.03);
  box-shadow: var(--shadow-navy);
}
.pricing-popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-header { margin-bottom: 8px; }
.pricing-tier {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}
.pricing-qty {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 6px 0;
}
.pricing-price {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.pricing-price strong { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.pricing-price span { font-size: 0.9rem; }
.pricing-tag-small {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-features svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}
.pricing-note a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.faq-section { background: var(--white); }
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--navy); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--light-gray); }
.faq-item.open .faq-q { background: var(--light-gray); }
.faq-q span {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  flex: 1;
}
.faq-icon {
  width: 20px; height: 20px;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact-section { background: var(--light-gray); }
.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  background: var(--white);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}
.form-group input.error,
.form-group select.error { border-color: #EF4444; }
.form-error { font-size: 0.78rem; color: #EF4444; min-height: 18px; }
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 4px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--navy); }
.form-group--urgent { margin-bottom: 28px; }
.urgent-check { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); gap: 10px; }
.urgent-check svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius);
  margin-top: 16px;
}
.form-success.visible { display: flex; }
.form-success svg { width: 48px; height: 48px; color: #16A34A; }
.form-success strong { font-family: var(--font-head); font-size: 1.1rem; color: #15803D; }
.form-success p { font-size: 0.9rem; color: #166534; }
.field-error { border-color: #EF4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.15) !important; }

/* Contact Info */
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-text { display: flex; flex-direction: column; gap: 4px; }
.ci-text strong { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.05em; }
.ci-text a, .ci-text span { font-size: 0.9rem; color: var(--text-light); }
.ci-text a:hover { color: var(--orange); }
.contact-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.cert-mini {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
}
.contact-social { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px;
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel);
  transition: all var(--transition);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ═══════════════════════════════
   CERTIFICATIONS
═══════════════════════════════ */
.certifications-section {
  background: var(--charcoal);
  padding: 80px 0;
}
.certifications-section .section-header { margin-bottom: 48px; }
.certifications-section .section-eyebrow { color: rgba(255,255,255,0.5); }
.certifications-section .section-title { color: var(--white); margin-bottom: 0; }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.cert-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
}
.cert-card:hover { background: rgba(255,255,255,0.09); border-color: var(--orange); }
.cert-icon {
  width: 52px; height: 52px;
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.cert-icon svg { width: 24px; height: 24px; }
.cert-card h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.cert-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ═══════════════════════════════
   BLOG
═══════════════════════════════ */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.blog-img {
  height: 200px;
  position: relative;
  display: flex; align-items: flex-start; justify-content: flex-start;
  padding: 20px;
}
.blog-cat {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-body { padding: 28px; }
.blog-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-body p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; margin-bottom: 18px; }
.blog-link { font-size: 0.85rem; font-weight: 600; color: var(--navy); transition: color var(--transition); }
.blog-link:hover { color: var(--orange); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer { background: #0F172A; padding-top: 80px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo .logo-mark {
  width: 36px; height: 36px;
  font-size: 0.95rem;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 4px;
}
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social .social-icon { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.footer-social .social-icon:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-contact li:last-child { border-bottom: none; padding-bottom: 0; }
.footer-contact svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-navy);
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); box-shadow: var(--shadow-orange); }
.back-to-top svg { width: 22px; height: 22px; }

/* ═══════════════════════════════
   RESPONSIVE — TABLET 1024px
═══════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 72px 0; }
  .hero-content-side { padding: 100px 40px 70px; }
  .hero-float--speed { left: -8%; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-grid { grid-template-columns: repeat(3, 1fr); }
  .custom-grid--enhanced { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-line { display: none; }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3)::after { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-wrap { padding: 36px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto 28px; }
  .pricing-popular { transform: none; }
  .pricing-popular:hover { transform: translateY(-4px); }
}

/* ═══════════════════════════════
   RESPONSIVE — HERO SPLIT 860px
═══════════════════════════════ */
@media (max-width: 860px) {
  .hero.hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .hero-content-side {
    padding: 90px 32px 60px;
    order: 2;
  }
  .hero-visual-side {
    order: 1;
    height: 55vw;
    min-height: 280px;
    max-height: 420px;
  }
  .hero-img-wrap { position: relative; height: 100%; }
  .hero-img { object-position: center 20%; }
  .hero-float--clients { top: 12%; right: 5%; }
  .hero-float--speed { top: auto; bottom: 12%; left: 5%; transform: none; }
  .hero-float--pieces { bottom: 12%; right: 5%; }
  .hero-scroll { left: 50%; bottom: -52px; }
}

/* ═══════════════════════════════
   RESPONSIVE — TABLET 768px
═══════════════════════════════ */
@media (max-width: 768px) {
  .top-bar-left span:last-child { display: none; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero-content-side { padding: 80px 24px 56px; }
  .hero-sub br { display: none; }
  .hide-mobile { display: none; }
  .hero-float { padding: 10px 14px; }
  .hf-num { font-size: 1rem; }
  .hf-label { font-size: 0.65rem; }
  .hf-icon { width: 36px; height: 36px; }
  .brand-marquee { padding: 22px 0; }
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .industry-card { padding: 24px 18px; }
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .custom-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-grid--enhanced { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tab-nav { gap: 4px; }
  .tab-btn { padding: 8px 14px; font-size: 0.82rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .product-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .testimonial-card { padding: 32px 24px; }
  .testimonial-quote { font-size: 0.95rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════
   RESPONSIVE — MOBILE 480px
═══════════════════════════════ */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 1.25rem; }
  .top-bar { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-trust { gap: 8px; }
  .trust-badge { font-size: 0.72rem; }
  .hero-float--speed { display: none; }
  .hero-float--clients, .hero-float--pieces { position: static; margin: 0; }
  .hero-float-row {
    display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px;
  }
  .industries-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .custom-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .custom-grid--enhanced { grid-template-columns: 1fr; max-width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 1.6rem; }
  .contact-form-wrap { padding: 24px 20px; }
  .custom-cta-pane { padding: 40px 24px; }
  .back-to-top { bottom: 20px; right: 20px; }
  .hero-props { flex-direction: column; gap: 12px; }
  .process-timeline { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* ═══════════════════════════════
   ANIMATION ENHANCEMENTS
═══════════════════════════════ */

/* Industry card — hover: orange glow border + lift */
.industry-card {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}
.industry-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(249,115,22,0.18), 0 4px 16px rgba(0,0,0,0.08);
  border-color: var(--orange);
}

/* Feature card lift */
.feature-card {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(30,58,138,0.12);
}

/* Pricing card lift + glow */
.pricing-card {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(30,58,138,0.15);
}

/* FAQ — open state color accent */
.faq-item.open .faq-icon { color: var(--orange); }

/* Process step — draw line animation */
.process-line {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s;
}
.process-line.animated { transform: scaleX(1); }

/* Button ripple */
.btn { position: relative; overflow: hidden; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: ripple-expand 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-expand {
  to { transform: scale(4); opacity: 0; }
}

/* Stat number pop */
.stat-number {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}
.stat-item:hover .stat-number { transform: scale(1.08); }

/* Nav link underline animate */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease-out);
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Custom card subtle hover */
.custom-card {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(30,58,138,0.1);
}

/* Cert card hover */
.cert-card {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30,58,138,0.12);
}

/* Testimonial card */
.testimonial-card {
  transition: transform 0.3s var(--ease-out);
}
.testimonial-card:hover { transform: translateY(-4px); }

/* Gallery lightbox overlay */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: scale(0.9);
  transition: transform 0.3s var(--ease-out);
}
.gallery-lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px;
  border: none; background: rgba(255,255,255,0.1);
  color: var(--white); font-size: 1.4rem;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover { background: var(--orange); }
.lightbox-caption {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════
   NO MINIMUM BADGE
═══════════════════════════════════════════════════ */
.no-minimum-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(249,115,22,0.12);
  border: 1.5px solid rgba(249,115,22,0.4);
  border-radius: 50px;
  padding: 10px 20px 10px 12px;
  margin-top: 24px;
}
.nmb-icon {
  width: 32px; height: 32px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nmb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.nmb-text strong {
  font-size: 0.85rem;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  color: var(--orange);
}
.nmb-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}

/* ═══════════════════════════════════════════════════
   ANIMATED SVG FEATURE ICONS
═══════════════════════════════════════════════════ */
.feature-icon--animated {
  width: 64px; height: 64px;
  margin-bottom: 20px;
}
.feature-icon--animated .fi-svg {
  width: 64px; height: 64px;
  overflow: visible;
}

/* Box chart bars (fi-box1/2/3) grow up on card hover */
.feature-card .fi-box1,
.feature-card .fi-box2,
.feature-card .fi-box3 {
  transform-origin: bottom center;
  transform-box: fill-box;
  transition: transform 0.4s var(--ease-out), fill 0.3s ease;
}
.feature-card:hover .fi-box1 { transform: scaleY(1.12); fill: #1D4ED8; }
.feature-card:hover .fi-box2 { transform: scaleY(1.1);  fill: #2563EB; }
.feature-card:hover .fi-box3 { transform: scaleY(1.15); fill: #EA580C; }

/* check circle pulse */
.feature-card .fi-check {
  transition: r 0.3s ease, fill 0.3s ease;
}
.feature-card:hover .fi-check { fill: #EA580C; }

/* Speed icon needle rotate */
.feature-card .fi-needle {
  transform-origin: 50% 90%;
  transform-box: fill-box;
  transition: transform 0.5s var(--ease-out);
}
.feature-card:hover .fi-needle { transform: rotate(-35deg); }

/* Shield expand */
.feature-card .fi-shield {
  transition: transform 0.35s var(--ease-out);
  transform-origin: center;
  transform-box: fill-box;
}
.feature-card:hover .fi-shield { transform: scale(1.08); }

/* Gear rotate */
.feature-card .fi-gear {
  transform-origin: center;
  transform-box: fill-box;
  transition: transform 0.6s ease;
}
.feature-card:hover .fi-gear { transform: rotate(45deg); }

/* Globe orbit */
.feature-card .fi-orbit {
  transform-origin: center;
  transform-box: fill-box;
  transition: transform 0.5s ease;
}
.feature-card:hover .fi-orbit { transform: rotate(30deg); }

/* Medal ribbon bob */
.feature-card .fi-ribbon {
  transform-origin: top center;
  transform-box: fill-box;
  transition: transform 0.4s ease;
}
.feature-card:hover .fi-ribbon { transform: translateY(3px); }

/* Background circle highlight on hover */
.feature-card .fi-bg {
  transition: fill 0.3s ease;
}
.feature-card:hover .fi-bg { fill: #DBEAFE; }

/* Feature card with green highlight for No-MOQ */
.feature-card.feature-highlight--green {
  border-top: 3px solid #16A34A;
}
.feature-card.feature-highlight--green .feature-icon--animated .fi-bg { fill: #DCFCE7; }
.feature-card.feature-highlight--green:hover .feature-icon--animated .fi-bg { fill: #BBF7D0; }

/* ═══════════════════════════════════════════════════
   CUSTOMIZATION CARDS — VISUAL VARIANT
═══════════════════════════════════════════════════ */
.custom-card--visual {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
}
.custom-card-media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
}
.custom-card-media .custom-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.custom-card--visual:hover .custom-img { transform: scale(1.06); }
.custom-img-fallback {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
}
.custom-card-overlay {
  position: absolute;
  top: 12px; right: 12px;
}
.custom-label-badge {
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-family: var(--font-head);
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.custom-card-body {
  padding: 20px 22px 22px;
}
.custom-num {
  font-size: 2rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: #E2E8F0;
  line-height: 1;
  margin-bottom: 6px;
}
.custom-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.custom-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.55;
}
.custom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.custom-tags span {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

/* CTA variant card */
.custom-card--cta {
  background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 100%);
  border: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  min-height: 240px;
}
.custom-card--cta h3 { color: var(--white); font-size: 1.15rem; }
.custom-card--cta p  { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.custom-icon-large {
  font-size: 2.8rem;
}

/* Flat/icon-only variant */
.custom-card--flat {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* ═══════════════════════════════════════════════════
   PRODUCT TAB HEADER
═══════════════════════════════════════════════════ */
.product-tab-header {
  position: relative;
  height: 220px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 60%, #F97316 100%);
  margin: -24px -24px 24px;
}
@media (min-width: 768px) {
  .product-tab-header { margin: -32px -32px 32px; }
}
.product-tab-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.product-tab-header:hover .product-tab-img { transform: scale(1.04); }
.product-tab-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.1) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.product-tab-header-overlay h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.product-tab-header-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  line-height: 1.4;
  max-width: 480px;
}

/* ═══════════════════════════════════════════════════
   STARTER / TRIAL PRICING CARD
═══════════════════════════════════════════════════ */
.pricing-card--starter {
  border: 2px solid #16A34A;
  position: relative;
}
.pricing-card--starter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,163,74,0.04) 0%, rgba(22,163,74,0) 60%);
  border-radius: inherit;
  pointer-events: none;
}
.starter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #16A34A;
  color: #fff;
  font-size: 0.75rem;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.starter-badge svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.pricing-tag-small {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}
