/* ============================================================
   ASCENTSUPPLY — MAIN STYLESHEET
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --navy:        #0c1832;
  --navy-mid:    #1a3566;
  --blue:        #1e4a8a;
  --gold:        #c8891e;
  --gold-light:  #e9a83c;
  --gold-pale:   #fdf3e0;
  --white:       #ffffff;
  --light:       #f4f7fc;
  --gray-100:    #edf1f7;
  --gray-200:    #d8e0ed;
  --gray-400:    #9aabc4;
  --gray-600:    #5a6d8a;
  --text:        #1a2240;
  --text-light:  #4a5e7a;
  --border:      #dce6f0;

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

  --shadow-sm:   0 2px 12px rgba(12,24,50,0.06);
  --shadow:      0 6px 28px rgba(12,24,50,0.10);
  --shadow-lg:   0 16px 56px rgba(12,24,50,0.14);
  --shadow-xl:   0 24px 80px rgba(12,24,50,0.18);

  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   22px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);

  --container:   1240px;
}

/* ---- 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.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Utilities ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.bg-light { background: var(--light); }
.bg-dark  { background: var(--navy); }
.text-white { color: var(--white) !important; }
.text-gold  { color: var(--gold); }
.text-light-muted { color: var(--gray-400); }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 15px 34px; font-size: 1rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--navy-mid);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,53,102,0.3);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,137,30,0.35);
}

.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.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-card {
  background: transparent;
  color: var(--navy-mid);
  border: 2px solid var(--border);
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
}
.btn-card:hover {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: 8px;
}
.btn-nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,137,30,0.3);
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 12px 0;
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.logo-icon svg { width: 34px; height: 34px; }
.logo-img      { width: 40px; height: 40px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: -0.5px;
}
.logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color var(--transition);
}
.navbar.scrolled .logo-name { color: var(--navy); }
.navbar.scrolled .logo-sub  { color: var(--gray-600); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.navbar.scrolled .nav-link { color: var(--text-light); }
.navbar.scrolled .nav-link:hover { color: var(--navy); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.nav-phone i { font-size: 0.8rem; }
.nav-phone:hover { color: var(--white); }
.navbar.scrolled .nav-phone { color: var(--text-light); }
.navbar.scrolled .nav-phone:hover { color: var(--navy); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,24,50,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,44,0.88) 0%,
    rgba(14,36,80,0.82) 50%,
    rgba(16,45,90,0.70) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,137,30,0.08) 0%, transparent 50%),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-text { max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,137,30,0.18);
  border: 1px solid rgba(200,137,30,0.4);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
}
.hero-badge i { font-size: 0.9rem; }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-trusted {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trusted-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.trusted-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trusted-pills span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.hero-scroll-btn {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-circle {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: var(--transition);
}
.scroll-circle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}


/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.02) 80px,
    rgba(255,255,255,0.02) 81px
  );
}
.stats-container {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: center;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 24px 20px;
}
.stat-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
  opacity: 0.85;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  background: rgba(255,255,255,0.12);
  height: 60px;
  width: 1px;
  justify-self: center;
}


/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding: 0 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-label::before { right: 100%; margin-right: 6px; transform: translateX(14px); }
.section-label::after  { left: 100%;  margin-left: 6px;  transform: translateX(-14px); }

.section-label-light {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
}
.section-header-light .section-title { color: var(--white); }
.section-header-light .section-desc  { color: rgba(255,255,255,0.6); }


/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 520px;
  box-shadow: var(--shadow-xl);
}
.about-badge-float {
  position: absolute;
  bottom: 28px;
  right: -28px;
}
.float-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
}
.float-badge i { color: var(--gold); font-size: 1.5rem; }
.float-badge span { font-size: 0.82rem; font-weight: 700; color: var(--navy); line-height: 1.3; }

.about-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}

.about-content .section-label { text-align: left; }
.about-content .section-label::before { display: none; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-body {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-values { display: flex; flex-direction: column; gap: 16px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.value-item:hover {
  background: var(--gold-pale);
  transform: translateX(4px);
}
.value-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.value-item strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.value-item span {
  font-size: 0.88rem;
  color: var(--text-light);
}


/* ============================================================
   PRODUCTS
   ============================================================ */
.products-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-head);
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-light);
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--navy-mid);
  color: var(--navy-mid);
}
.filter-btn.active {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,53,102,0.2);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy-mid);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-gold { background: var(--gold); }
.badge-new  { background: #2e7d32; }

.product-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.product-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
}
.product-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}
.product-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-specs span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 3px 9px;
  border-radius: 50px;
}
.product-specs i { color: var(--gold); font-size: 0.7rem; }

.products-cta {
  text-align: center;
  padding: 44px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
}
.products-cta p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 20px;
}


/* ============================================================
   WHY US — FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-icon i {
  font-size: 1.4rem;
  color: var(--gold);
}
.feature-card:hover .feature-icon {
  background: var(--gold);
}
.feature-card:hover .feature-icon i {
  color: var(--white);
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}


/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  text-align: center;
}
.industry-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,137,30,0.3);
  transform: translateY(-6px);
}
.industry-icon {
  width: 64px;
  height: 64px;
  background: rgba(200,137,30,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.industry-icon i { font-size: 1.5rem; color: var(--gold-light); }
.industry-card:hover .industry-icon {
  background: var(--gold);
}
.industry-card:hover .industry-icon i { color: var(--white); }
.industry-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.industry-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}


/* ============================================================
   ORDER PROCESS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
  margin-top: 20px;
}
.process-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.step-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(200,137,30,0.15);
  position: absolute;
  top: 12px;
  right: 18px;
  line-height: 1;
}
.step-icon {
  width: 60px;
  height: 60px;
  background: var(--navy-mid);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.step-icon i { font-size: 1.3rem; color: var(--white); }
.process-step:hover .step-icon { background: var(--gold); }
.process-step h3 {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0.5;
}
.process-connector::after {
  content: '→';
  font-size: 1.6rem;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); }

.testimonials-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  flex: 0 0 100%;
  padding: 52px 56px;
  background: linear-gradient(135deg, #f8faff 0%, #edf2fb 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.testimonial-quote {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 24px;
  opacity: 0.7;
}
.testimonial-text {
  font-size: 1.15rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 780px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.author-info span {
  font-size: 0.85rem;
  color: var(--gray-600);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.t-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-mid);
  font-size: 0.9rem;
  transition: var(--transition);
}
.t-btn:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: scale(1.08);
}
.t-dots {
  display: flex;
  gap: 8px;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}
.t-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,44,0.92) 0%, rgba(26,53,102,0.88) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(26,53,102,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #1b5e20;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success i { font-size: 1.1rem; }

/* Info */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 24px;
}
.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-item:last-of-type { border-bottom: none; }
.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,137,30,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.info-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.info-text span,
.info-text a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.info-text a:hover { color: var(--gold-light); }

.contact-social {
  display: flex;
  gap: 10px;
  padding-top: 20px;
}
.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe { display: block; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); }

.footer-top { padding: 80px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 56px;
}

.footer-brand .logo { margin-bottom: 20px; }
.logo-footer .logo-name { color: var(--white); }
.logo-footer .logo-sub  { color: rgba(255,255,255,0.4); }

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
}
.footer-contact-list li i {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-list a { color: inherit; }
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-cert {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(200,137,30,0.3);
  border-radius: var(--radius-sm);
  background: rgba(200,137,30,0.06);
}
.cert-badge i { color: var(--gold); font-size: 1rem; }
.cert-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }


/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(200,137,30,0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,137,30,0.45);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { gap: 48px; }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .process-connector { display: none; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }

  /* Nav */
  .nav-phone { display: none; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 90px 32px 40px;
    gap: 4px;
    box-shadow: -8px 0 40px rgba(12,24,50,0.18);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    color: var(--text-light);
    font-size: 1rem;
    padding: 10px 16px;
    width: 100%;
    border-radius: 8px;
  }
  .nav-link:hover { color: var(--navy); background: var(--light); }
  .nav-link::after { display: none; }

  .nav-actions { gap: 10px; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Grids */
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 360px; }
  .about-badge-float { right: 8px; bottom: 8px; }
  .about-img-accent { display: none; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }

  .stats-container { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .stat-item { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }

  .hero h1 { font-size: 2.2rem; letter-spacing: -0.5px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .testimonial-card { padding: 32px 24px; }
  .testimonial-text { font-size: 1rem; }

  .section-label::before, .section-label::after { display: none; }

  .back-to-top { bottom: 20px; right: 20px; }

  .cta-actions { flex-direction: column; align-items: center; }

  .stats-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-badge { font-size: 0.74rem; }
  .trusted-pills span { font-size: 0.72rem; }
}
