/* ============================================================
   NEXUS CLEANING — Premium Design System
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary:       #16a34a;
  --primary-dark:  #15803d;
  --primary-light: #dcfce7;
  --primary-xlight:#f0fdf4;
  --accent:        #f59e0b;
  --accent-light:  #fef3c7;
  --navy:          #0f172a;
  --navy-light:    #1e293b;
  --navy-mid:      #334155;
  --muted:         #64748b;
  --border:        #e2e8f0;
  --border-dark:   #cbd5e1;
  --bg:            #f8fafc;
  --bg2:           #f1f5f9;
  --white:         #ffffff;
  --radius-xs:     6px;
  --radius-sm:     10px;
  --radius:        16px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --radius-pill:   999px;
  --shadow-xs:     0 1px 4px rgba(15,23,42,.06);
  --shadow-sm:     0 2px 12px rgba(15,23,42,.08);
  --shadow:        0 8px 32px rgba(15,23,42,.10);
  --shadow-md:     0 16px 48px rgba(15,23,42,.12);
  --shadow-lg:     0 24px 72px rgba(15,23,42,.16);
  --transition:    all 0.3s cubic-bezier(.4,0,.2,1);
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.72;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.18;
  color: var(--navy);
}
a { transition: var(--transition); text-decoration: none; }
img { max-width: 100%; }
p { color: var(--muted); line-height: 1.78; }

/* ---- Utility ---- */
.text-primary-custom { color: var(--primary) !important; }
.section-sub { color: var(--muted); font-size: 1.02rem; max-width: 520px; margin: 0 auto; }

/* ============================================================
   TOP BAR
   ============================================================ */
.wrap {
  background: var(--navy);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.wrap .phone,
.wrap .phone a,
.wrap .mailus {
  color: rgba(255,255,255,.75) !important;
  font-size: 0.82rem;
}
.wrap .phone a:hover { color: var(--primary) !important; text-decoration: none; }
.wrap .social-media a {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  margin-left: 6px;
  color: rgba(255,255,255,.70) !important;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.wrap .social-media a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
  transform: translateY(-1px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#ftco-navbar {
  background: rgba(255,255,255,.98) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15,23,42,.07) !important;
  padding: 0;
  box-shadow: 0 1px 0 rgba(15,23,42,.06), 0 4px 24px rgba(15,23,42,.05);
}
#ftco-navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy) !important;
  letter-spacing: -.04em;
  padding: 18px 0;
  display: flex; align-items: center; gap: 8px;
}
#ftco-navbar .navbar-brand::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 3px;
  display: inline-block;
}
#ftco-navbar .navbar-brand span { color: var(--primary) !important; }
.ftco_navbar .navbar-nav .nav-link {
  color: var(--navy-mid) !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 28px 16px !important;
  position: relative;
  letter-spacing: .01em;
}
.ftco_navbar .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform .25s ease;
}
.ftco_navbar .navbar-nav .nav-item.active .nav-link::after,
.ftco_navbar .navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.ftco_navbar .navbar-nav .nav-item.active .nav-link,
.ftco_navbar .navbar-nav .nav-link:hover { color: var(--primary) !important; }

/* Navbar CTA pill */
.nav-get-quote {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: #fff !important;
  border-radius: var(--radius-pill);
  padding: 11px 24px !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  margin: auto 0 auto 16px;
  transition: var(--transition);
  display: inline-flex !important; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(22,163,74,.30);
}
.nav-get-quote:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(22,163,74,.40) !important;
  color: #fff !important;
}
.nav-get-quote::after { display: none !important; }

/* Mobile toggler */
.navbar-toggler { border: none; outline: none; }
.navbar-toggler:focus { outline: none; box-shadow: none; }

/* ---- Services hover mega-dropdown ---- */
.nav-services-dropdown { position: relative; }
.nav-services-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 660px;
  z-index: 9999;
  padding-top: 6px;
}
.nsm-inner {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(15,23,42,.18);
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.nsm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  color: var(--navy) !important;
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nsm-item:nth-last-child(2):not(.nsm-footer),
.nsm-item:last-of-type { border-bottom: none; }
.nsm-item:hover { background: var(--primary-xlight); color: var(--primary) !important; padding-left: 26px; }
.nsm-icon {
  width: 28px; height: 28px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nsm-icon .fa { color: var(--primary); font-size: 0.75rem; }
.nsm-footer {
  grid-column: 1 / -1;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.nsm-footer a {
  color: var(--primary) !important;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.nsm-footer a:hover { color: var(--primary-dark) !important; gap: 10px; }
.nav-services-dropdown:hover .nav-services-menu,
.nav-services-dropdown:focus-within .nav-services-menu { display: block; }
.nav-link-services::after { display: none !important; }
@media (max-width: 991.98px) {
  .nav-services-menu { position: static; transform: none; width: 100%; padding-top: 0; display: none; }
  .nsm-inner { grid-template-columns: 1fr; border-radius: 12px; }
  .nav-services-dropdown.mobile-open .nav-services-menu { display: block; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 30px;
  border: none;
  transition: var(--transition);
  letter-spacing: .1px;
  display: inline-flex; align-items: center; gap: 9px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0; transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #14532d 140%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(22,163,74,.30);
}
.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(22,163,74,.40);
  color: #fff;
}
.btn.btn-secondary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 22px rgba(15,23,42,.18);
}
.btn.btn-secondary:hover { background: var(--navy-light); transform: translateY(-2px); color: #fff; }
.btn.btn-white {
  background: rgba(255,255,255,.92);
  color: var(--navy);
  border: 1.5px solid rgba(255,255,255,.30) !important;
  backdrop-filter: blur(8px);
}
.btn.btn-white:hover { background: #fff; color: var(--primary); transform: translateY(-2px); }
.btn.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary) !important;
}
.btn.btn-outline-primary:hover { background: var(--primary); color: #fff; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.ftco-section { padding: 100px 0; }
.heading-section .subheading {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.heading-section .subheading::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.heading-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.18;
}
.heading-section p.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: 12px;
  line-height: 1.75;
}
.divider {
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--primary), #86efac);
  border-radius: 4px;
  margin: 16px 0 28px;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-modern .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-modern:hover .hero-bg { transform: scale(1.0); }
.hero-modern .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,.94) 0%,
    rgba(15,23,42,.75) 50%,
    rgba(22,163,74,.30) 100%
  );
}
/* Animated blobs */
.hero-modern::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(22,163,74,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
@keyframes blobFloat {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-40px,60px) scale(1.15); }
}
.hero-modern .hero-content {
  position: relative; z-index: 2;
  padding: 140px 0 100px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(22,163,74,.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(22,163,74,.35);
  border-radius: var(--radius-pill);
  padding: 9px 22px;
  color: #86efac;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: .4px; margin-bottom: 28px;
}
.hero-badge .fa { color: var(--accent); font-size: 0.9rem; }
.hero-modern h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900; margin-bottom: 22px; line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-modern h1 em { color: var(--accent); font-style: normal; }
.hero-modern .hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem; margin-bottom: 42px; max-width: 500px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 54px; }
.customer-badge {
  display: inline-flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 18px 26px; max-width: 360px;
}
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.5);
  margin-left: -10px; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 13px; flex-shrink: 0;
}
.avatar-stack .av:first-child { margin-left: 0; }
.avatar-stack .av.av2 { background: #0ea5e9; }
.avatar-stack .av.av3 { background: var(--accent); }
.badge-text strong { display: block; font-size: 0.92rem; font-weight: 800; color: #fff; }
.badge-text .stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 1px; }
.badge-text small { display: block; font-size: 0.74rem; color: rgba(255,255,255,.55); margin-top: 1px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item {
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,.14);
  color: #fff;
  position: relative; z-index: 1;
}
.stat-item:last-child { border-right: none; }
.stat-item .si-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  display: block;
}
.stat-item .si-label {
  font-size: 0.83rem;
  opacity: .80;
  font-weight: 500;
  margin-top: 6px;
  display: block;
  letter-spacing: .2px;
}
.stat-item .si-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.14);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.stat-item .si-icon .fa { font-size: 1.2rem; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-modern {
  background: var(--white);
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.about-modern::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22,163,74,.06) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--primary-light);
  border-radius: var(--radius-xl);
  z-index: 0;
}
.about-badge {
  position: absolute; bottom: 28px; left: -24px; z-index: 3;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--border);
}
.about-badge .ab-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(22,163,74,.30);
}
.about-badge .ab-icon .fa { color: #fff; font-size: 1.3rem; }
.about-badge strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--navy); line-height: 1; }
.about-badge span { font-size: 0.78rem; color: var(--muted); margin-top: 2px; display: block; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.feature-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-item::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  border-radius: 0 4px 4px 0;
  transition: transform .3s ease;
}
.feature-item:hover {
  border-color: var(--primary);
  background: var(--primary-xlight);
  transform: translateX(4px);
}
.feature-item:hover::after { transform: scaleY(1); }
.feature-item .fi-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.feature-item:hover .fi-icon { background: var(--primary); }
.feature-item:hover .fi-icon .fa { color: #fff !important; }
.feature-item .fi-icon .fa { color: var(--primary); font-size: 1.1rem; }
.feature-item h5 { font-size: 0.93rem; font-weight: 800; margin-bottom: 4px; }
.feature-item p { font-size: 0.82rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-modern {
  background: var(--bg);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.services-modern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.service-card-new {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.service-card-new:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.sc-img-wrap {
  position: relative;
  height: 210px;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.sc-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,.10) 30%, rgba(15,23,42,.70));
  transition: var(--transition);
}
.service-card-new:hover .sc-img-wrap::after {
  background: linear-gradient(to bottom, rgba(15,23,42,.20) 0%, rgba(22,163,74,.60));
}
.sc-float-icon {
  position: absolute; bottom: -22px; left: 24px; z-index: 2;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(22,163,74,.40);
  border: 3px solid #fff;
  transition: var(--transition);
}
.service-card-new:hover .sc-float-icon { transform: rotate(-8deg) scale(1.1); }
.sc-float-icon .fa { color: #fff; font-size: 1.15rem; }
.sc-body { padding: 40px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.sc-body h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.sc-body p { font-size: 0.86rem; color: var(--muted); margin-bottom: 20px; line-height: 1.65; flex: 1; }
.sc-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.87rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 0;
  border-top: 1px solid var(--border);
}
.sc-link:hover { color: var(--primary-dark); gap: 14px; }
.sc-link .fa { transition: var(--transition); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}
.why-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }
.why-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,163,74,.15) 0%, transparent 60%);
  pointer-events: none;
}
.check-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: var(--transition);
  cursor: default;
}
.check-item:hover {
  border-color: var(--primary);
  background: var(--primary-xlight);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.check-item .ci-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(22,163,74,.28);
}
.check-item .ci-icon .fa { color: #fff; font-size: 1rem; }
.check-item h5 { font-size: 0.97rem; font-weight: 800; margin-bottom: 3px; color: var(--navy); }
.check-item p { font-size: 0.83rem; color: var(--muted); margin: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--navy);
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 0% 50%, rgba(22,163,74,.20), transparent),
    radial-gradient(ellipse 600px 400px at 100% 20%, rgba(22,163,74,.12), transparent);
}
.how-it-works .heading-section h2 { color: #fff; }
.how-it-works .heading-section .subheading {
  background: rgba(22,163,74,.20);
  color: #86efac;
  border: 1px solid rgba(22,163,74,.30);
}
.how-it-works .heading-section .subheading::before { background: #86efac; }
.step-card {
  position: relative; z-index: 1;
  text-align: center;
  padding: 48px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(22,163,74,.35);
  transform: translateY(-6px);
}
.step-num-badge {
  width: 44px; height: 44px;
  background: rgba(22,163,74,.20);
  border: 2px solid rgba(22,163,74,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: #86efac;
  margin: 0 auto 16px;
}
.step-icon-box {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 16px 36px rgba(22,163,74,.40);
  transition: var(--transition);
}
.step-card:hover .step-icon-box { transform: rotate(-8deg) scale(1.08); }
.step-icon-box .fa { color: #fff; font-size: 1.5rem; }
.step-card h4 { color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.step-card p { color: rgba(255,255,255,.55); font-size: 0.87rem; margin: 0; line-height: 1.7; }
.step-connector {
  display: flex; align-items: center; justify-content: center;
  padding-top: 20px;
}
.step-connector::before {
  content: '';
  width: 60px; height: 2px;
  background: linear-gradient(90deg, rgba(22,163,74,.3), rgba(22,163,74,.6), rgba(22,163,74,.3));
  border-radius: 2px;
}

/* ============================================================
   CLIENTS MARQUEE
   ============================================================ */
.clients-marquee {
  background: var(--bg);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.clients-marquee::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-track {
  display: flex; gap: 20px; align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-tile {
  flex: none;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: center;
  min-width: 170px; height: 76px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.client-tile:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.client-tile img { max-height: 40px; max-width: 120px; object-fit: contain; filter: grayscale(.3); transition: var(--transition); }
.client-tile:hover img { filter: none; }
.client-tile span { font-weight: 700; font-size: 0.87rem; color: var(--muted); }

/* ============================================================
   GALLERY / PORTFOLIO
   ============================================================ */
.portfolio-modern { background: var(--white); padding: 100px 0; }
.project-card-new {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.project-card-new:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.project-card-new .pcn-bg {
  width: 100%; height: 270px;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.project-card-new:hover .pcn-bg { transform: scale(1.08); }
.project-card-new .pcn-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.88) 0%, rgba(15,23,42,.20) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  opacity: 0; transition: opacity .35s ease;
}
.project-card-new:hover .pcn-overlay { opacity: 1; }
.project-card-new .pcn-expand {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.7); transition: var(--transition);
}
.project-card-new:hover .pcn-expand { opacity: 1; transform: scale(1); }
.project-card-new .pcn-expand .fa { color: var(--navy); font-size: 0.95rem; }
.project-card-new h4 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.project-card-new p { color: rgba(255,255,255,.65); font-size: 0.82rem; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-modern { background: var(--bg); padding: 100px 0; }
.testimonials-modern .carousel-testimony .testimony-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 8px 14px 32px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.testimonials-modern .carousel-testimony .testimony-wrap::before {
  content: '"';
  position: absolute;
  top: -10px; right: 24px;
  font-size: 8rem; font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonials-modern .carousel-testimony .testimony-wrap:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.testimonials-modern .testimony-wrap .icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px; margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(22,163,74,.30);
}
.testimonials-modern .testimony-wrap .icon .fa { color: #fff; font-size: 1.1rem; }
.testimonials-modern .testimony-wrap .user-img {
  width: 54px; height: 54px; border-radius: 50%;
  border: 3px solid var(--primary-light);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-sm);
}
.testimonials-modern .testimony-wrap .name { font-weight: 800; font-size: 0.97rem; color: var(--navy); margin-bottom: 1px; }
.testimonials-modern .testimony-wrap .position { font-size: 0.78rem; color: var(--muted); }
.testimonials-modern .testimony-wrap p.mb-1 { color: var(--navy-mid); font-size: 0.92rem; line-height: 1.75; font-style: italic; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #14532d 100%);
  padding: 90px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(22,163,74,.25), transparent),
    radial-gradient(ellipse 500px 400px at 80% 50%, rgba(22,163,74,.15), transparent);
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-section p { color: rgba(255,255,255,.72); font-size: 1.05rem; margin: 0; }

/* ============================================================
   QUOTE / FORM SECTION
   ============================================================ */
.quote-modern {
  background: var(--bg);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.quote-modern::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(22,163,74,.08) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  border-radius: 50%;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 52px 48px;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #86efac, var(--primary));
}
.quote-card .form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  padding: 14px 18px;
  height: auto;
  background: var(--bg);
  transition: var(--transition);
}
.quote-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(22,163,74,.10);
  background: #fff;
  outline: none;
}
.quote-card label { font-size: 0.82rem; font-weight: 700; color: var(--navy-mid); margin-bottom: 7px; display: block; }
.quote-card .form-group { margin-bottom: 22px; }

/* ============================================================
   INNER PAGE HEROES (.hero-wrap-2)
   ============================================================ */
.hero-wrap-2 {
  position: relative;
  min-height: 440px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-wrap-2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(15,23,42,.3), transparent);
  pointer-events: none;
}
.hero-wrap-2 .container,
.hero-wrap-2 .row { position: relative; z-index: 2; }
.hero-wrap-2 .slider-text {
  min-height: 440px;
  padding-top: 120px;
  padding-bottom: 60px;
  align-items: center !important;
}
.hero-wrap-2 .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,.92) 0%,
    rgba(15,23,42,.65) 55%,
    rgba(22,163,74,.45) 100%
  ) !important;
  opacity: 1 !important;
}
.hero-wrap-2 .bread {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
  line-height: 1.12;
}
.hero-wrap-2 .hero-sub {
  color: rgba(255,255,255,.80);
  font-size: 1.05rem;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,.18);
}
.hero-wrap-2 .breadcrumbs {
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-wrap-2 .breadcrumbs a {
  color: rgba(255,255,255,.70);
  font-size: 0.85rem; font-weight: 600;
}
.hero-wrap-2 .breadcrumbs a:hover { color: #86efac; }
.hero-wrap-2 .breadcrumbs span {
  color: rgba(255,255,255,.45);
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 10px;
}
.hero-wrap-2 .breadcrumbs span::before {
  content: '/';
  color: rgba(255,255,255,.30);
}

/* About page: show full banner image without crop */
.hero-wrap-2.about-hero-full {
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center top !important;
  background-color: #ffffff;
  min-height: min(48vw, 560px);
}
.hero-wrap-2.about-hero-full .slider-text {
  min-height: min(48vw, 560px);
}
.hero-wrap-2.about-hero-full .overlay {
  background: linear-gradient(135deg, rgba(15,23,42,.45), rgba(22,163,74,.22)) !important;
}

@media (max-width: 991.98px) {
  .hero-wrap-2,
  .hero-wrap-2 .slider-text { min-height: 320px; }
  .hero-wrap-2 .slider-text { padding-top: 96px; padding-bottom: 40px; }
  .hero-wrap-2.about-hero-full,
  .hero-wrap-2.about-hero-full .slider-text {
    min-height: min(64vw, 420px);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer.ftco-section {
  background: #07101e;
  padding: 90px 0 0;
  position: relative; overflow: hidden;
}
.footer.ftco-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer .footer-heading {
  color: #fff !important;
  font-size: 1rem; font-weight: 800;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer p, .footer .block-23 li span.text {
  color: rgba(255,255,255,.50) !important;
  font-size: 0.87rem; line-height: 1.8;
}
.footer a, .footer .block-23 li a span.text {
  color: rgba(255,255,255,.50) !important;
  font-size: 0.87rem; text-decoration: none;
}
.footer a:hover, .footer .block-23 li a:hover span.text {
  color: #86efac !important;
}
.footer .list-unstyled li { margin-bottom: 10px; }
.footer .list-unstyled li a {
  display: flex; align-items: center; gap: 10px;
  transition: var(--transition);
}
.footer .list-unstyled li a::before {
  content: '\f105';
  font-family: FontAwesome;
  color: var(--primary);
  font-size: 0.9rem;
  transition: transform .2s;
}
.footer .list-unstyled li a:hover::before { transform: translateX(4px); }
.footer .ftco-footer-social {
  display: flex; gap: 10px; list-style: none; padding: 0; margin-top: 20px;
}
.footer .ftco-footer-social li a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55) !important;
  font-size: 14px;
  transition: var(--transition);
}
.footer .ftco-footer-social li a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
  transform: translateY(-3px);
}
.footer .block-23 ul { padding: 0; list-style: none; margin: 0; }
.footer .block-23 ul li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.footer .block-23 ul li .icon { color: var(--primary) !important; font-size: 13px; margin-top: 4px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 60px; padding: 24px 0; text-align: center;
}
.footer-bottom .copyright { color: rgba(255,255,255,.30) !important; font-size: 0.82rem; margin: 0; }
.footer-bottom .copyright a { color: var(--primary) !important; }

/* ============================================================
   FLOATING CTAs
   ============================================================ */
.float-call {
  position: fixed; right: 22px; bottom: 90px; z-index: 9999;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 8px 28px rgba(15,23,42,.32);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); text-decoration: none;
  border: 2px solid rgba(255,255,255,.08);
}
.float-call:hover { transform: scale(1.12) translateY(-2px); background: var(--navy-light); }
.float-call .fa { color: #fff; font-size: 1.1rem; }
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 9999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 30px rgba(37,211,102,.40);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); text-decoration: none;
}
.float-wa:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 16px 42px rgba(37,211,102,.55); }
.float-wa .fa { color: #fff; font-size: 1.25rem; }

/* ============================================================
   UTILITIES & MISC
   ============================================================ */
.rounded-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.bg-dot {
  background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px);
  background-size: 28px 28px;
}
#ftco-loader { background: var(--white); }
#ftco-loader .path { stroke: var(--primary) !important; }

/* ============================================================
   FAQ INLINE SECTION (homepage preview)
   ============================================================ */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 22px 28px;
  margin-bottom: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.faq-item h5 {
  font-size: 0.97rem; font-weight: 800; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px; color: var(--navy);
}
.faq-item h5::before {
  content: 'Q';
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900;
}
.faq-item p { color: var(--muted); margin: 0; font-size: 0.9rem; padding-left: 38px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero-modern h1 { font-size: 2.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .step-connector { display: none !important; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-item:last-child { border-bottom: none; }
  .about-img-wrap::before { display: none; }
  .about-badge { left: 16px; }
}
@media (max-width: 768px) {
  .ftco-section { padding: 70px 0; }
  .hero-modern { min-height: 85vh; }
  .hero-modern .hero-content { padding: 110px 0 70px; }
  .customer-badge { max-width: 100%; }
  #ftco-navbar { padding: 0 12px; }
  .about-img-wrap { margin-bottom: 48px; }
  .quote-card { padding: 32px 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .step-card { padding: 36px 20px; }
}

/* ============================================================
   ABOUT PAGE — HERO BANNER  (matches provided design reference)
   ============================================================ */
.about-hero-banner {
  background: #fff;
  overflow: hidden;
}

/* Two-column split */
.ahb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
}

/* LEFT: photo panel */
.ahb-photo {
  position: relative;
  overflow: hidden;
  background: #e8f4fd;
}
.ahb-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Tagline overlay top-left */
.ahb-tagline {
  position: absolute;
  top: 36px;
  left: 32px;
  z-index: 3;
}
.ahb-tagline-text {
  display: flex;
  flex-direction: column;
}
.ahb-tagline-text span {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -.03em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(255,255,255,.8);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(6px);
  padding: 2px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 4px;
}
.ahb-tagline-bar {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
  border-radius: 4px;
  margin-top: 8px;
}

/* RIGHT: content panel */
.ahb-content {
  background: #fff;
  padding: 52px 52px 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.ahb-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #1d4ed8, #3b82f6, var(--primary));
}

/* Script title */
.ahb-title-wrap { margin-bottom: 18px; }
.ahb-script {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #1d4ed8;
  letter-spacing: .01em;
  margin: 0;
}
.ahb-title-deco {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
  border-radius: 3px;
  margin-top: 6px;
}

.ahb-who {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: .05em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.ahb-desc {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.72;
  margin-bottom: 4px;
}

/* 6-feature icon grid */
.ahb-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 14px;
  margin-top: 24px;
}
.ahb-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.ahb-feat-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2px solid #bfdbfe;
  background: #eff6ff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.ahb-feat:hover .ahb-feat-icon {
  background: #1d4ed8;
  border-color: #1d4ed8;
}
.ahb-feat:hover .ahb-feat-icon .fa { color: #fff !important; }
.ahb-feat-icon .fa {
  color: #1d4ed8;
  font-size: 1.25rem;
  transition: var(--transition);
}
.ahb-feat > span {
  font-size: 0.68rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* BOTTOM: mission bar */
.ahb-mission-bar {
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  border-top: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
}
.ahb-mission-main {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 36px;
  border-right: 1px solid #e2e8f0;
}
.ahb-mission-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(29,78,216,.30);
}
.ahb-mission-icon .fa { color: #fff; font-size: 1.25rem; }
.ahb-mission-main strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: .05em;
  margin-bottom: 5px;
}
.ahb-mission-main p {
  font-size: 0.83rem;
  color: #475569;
  margin: 0;
  line-height: 1.65;
}
.ahb-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ahb-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid #e2e8f0;
  gap: 6px;
  transition: var(--transition);
}
.ahb-value:last-child { border-right: none; }
.ahb-value:hover { background: rgba(29,78,216,.04); }
.ahb-val-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  transition: var(--transition);
}
.ahb-value:hover .ahb-val-icon { background: #1d4ed8; border-color: #1d4ed8; }
.ahb-value:hover .ahb-val-icon .fa { color: #fff !important; }
.ahb-val-icon .fa { color: #1d4ed8; font-size: 1rem; transition: var(--transition); }
.ahb-value strong {
  font-size: 0.75rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.ahb-value span {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 991.98px) {
  .ahb-inner { grid-template-columns: 1fr; }
  .ahb-photo { height: 340px; }
  .ahb-content { padding: 36px 28px 32px; }
  .ahb-features { grid-template-columns: repeat(3, 1fr); }
  .ahb-mission-bar { grid-template-columns: 1fr; }
  .ahb-mission-main { border-right: none; border-bottom: 1px solid #e2e8f0; }
  .ahb-values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .ahb-features { grid-template-columns: repeat(2, 1fr); }
  .ahb-values { grid-template-columns: repeat(2, 1fr); }
  .ahb-value:nth-child(2), .ahb-value:nth-child(4) { border-right: none; }
  .ahb-script { font-size: 2rem; }
  .ahb-content { padding: 28px 20px; }
}

