/* ================================================
   Powered Control Systems — pcs.css v2.0
   Utah's Premier Life Safety Integrator
   ================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --teal:          #17acc6;
  --teal-dark:     #0f8fa6;
  --teal-light:    rgba(23,172,198,0.12);
  --grad-start:    #00E0CE;
  --grad-end:      #2989D8;
  --gradient:      linear-gradient(to right, #00E0CE, #2989D8);
  --gradient-diag: linear-gradient(135deg, #00E0CE, #2989D8);
  --dark:          #0d0d0d;
  --dark-2:        #111111;
  --dark-card:     #181818;
  --heading:       #0d0d0d;
  --body:          #6D6D6E;
  --light-bg:      #F6F6F6;
  --border:        #e8e8e8;
  --white:         #ffffff;
  --font-h:        'Raleway', sans-serif;
  --font-b:        'Open Sans', sans-serif;
  --ease:          all 0.3s ease;
  --ease-slow:     all 0.5s ease;
  --r:             4px;
  --r-lg:          10px;
  --r-xl:          16px;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.15);
  --shadow-teal:   0 8px 28px rgba(23,172,198,0.35);
}

/* ================================================
   HERO — Pure CSS gradient (no image)
   ================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Deep dark base + layered radial spotlights in brand colors */
  background-color: #070d14;
  background-image:
    radial-gradient(ellipse 90% 80% at 5% 55%,  rgba(0,224,206,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 65% 65% at 88% 12%,  rgba(41,137,216,0.11) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 92% 88%,  rgba(0,224,206,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 50%,  rgba(13,13,13,0.4)   0%, transparent 100%);
}

/* Subtle grid texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* Brand gradient accent bar across the top */
#hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 3;
}

/* Remove old image-layer rules (no longer needed) */
.hero-bg,
.hero-gradient-overlay { display: none; }

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  font-weight: 400;
  color: var(--body);
  line-height: 1.75;
  overflow-x: hidden;
  background: #fff;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-h);
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 0;
}
a { color: var(--teal); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--teal-dark); }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- Utility --- */
.section-pad   { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-light-brand { background: var(--light-bg) !important; }
.bg-dark-brand  { background: var(--dark) !important; }
.bg-gradient    { background: var(--gradient) !important; }
.text-teal      { color: var(--teal) !important; }
.text-white-75  { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: block;
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.eyebrow.light { color: rgba(255,255,255,0.7); }

.section-heading {
  font-family: var(--font-h);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-heading.light { color: #fff; }

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--body);
  max-width: 620px;
  line-height: 1.75;
}

.section-sub.light { color: rgba(255,255,255,0.78); }

.gradient-bar {
  height: 3px;
  width: 52px;
  background: var(--gradient);
  border-radius: 2px;
  margin-bottom: 28px;
}

.gradient-bar.center { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn-pcs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--r);
  padding: 14px 30px;
  transition: var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-pcs-primary {
  background: var(--gradient);
  color: #fff !important;
}
.btn-pcs-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
  color: #fff !important;
}

.btn-pcs-outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-pcs-outline:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
  background: rgba(23,172,198,0.06);
}

.btn-pcs-outline-dark {
  background: transparent;
  color: var(--teal) !important;
  border: 2px solid var(--teal);
}
.btn-pcs-outline-dark:hover {
  background: var(--teal);
  color: #fff !important;
}

.btn-pcs-white {
  background: #fff;
  color: var(--teal) !important;
}
.btn-pcs-white:hover {
  background: var(--dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ================================================
   NAVIGATION
   ================================================ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--ease-slow);
}

#mainNav.scrolled {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}

.nav-logo img {
  height: 36px;
  transition: var(--ease);
}

/* Show white logo by default (on dark hero), dark logo on scroll */
.logo-white { display: block; }
.logo-dark  { display: none; }
#mainNav.scrolled .logo-white { display: none; }
#mainNav.scrolled .logo-dark  { display: block; }

.navbar-nav .nav-link {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88) !important;
  padding: 8px 12px !important;
  transition: var(--ease);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 1px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff !important; }

#mainNav.scrolled .navbar-nav .nav-link { color: var(--heading) !important; }
#mainNav.scrolled .navbar-nav .nav-link:hover { color: var(--teal) !important; }

/* Dropdown menus */
.dropdown-menu {
  border: none !important;
  border-radius: var(--r-lg) !important;
  box-shadow: var(--shadow-lg) !important;
  border-top: 3px solid var(--teal) !important;
  padding: 10px 0 !important;
  min-width: 230px;
  margin-top: 8px !important;
}

.dropdown-item {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--heading) !important;
  padding: 9px 20px !important;
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-item i {
  width: 16px;
  font-size: 13px;
  color: var(--teal);
  flex-shrink: 0;
}

.dropdown-item:hover {
  background: var(--light-bg) !important;
  color: var(--teal) !important;
  padding-left: 24px !important;
}

.dropdown-item:hover i { color: var(--teal-dark); }

.dropdown-section-head {
  font-family: var(--font-h);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  padding: 8px 20px 4px;
}

/* Mega menu — services (2-column) */
/* NOTE: do NOT put display:grid here — it overrides Bootstrap's display:none
   and makes the menu permanently visible. Only apply grid when .show is present. */
.mega-services {
  min-width: 480px;
  padding: 8px !important;
  gap: 2px;
}

.mega-services.show {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
}

.mega-services .dropdown-item {
  border-radius: var(--r);
  font-size: 12.5px;
}

/* ============================================
   Style 3 - Icon-card services mega-menu
   (scoped under .mega-cards to avoid collision
    with homepage body .service-card grid)
   ============================================ */
.mega-cards {
  min-width: 680px;
  padding: 12px !important;
  gap: 8px;
}
.mega-cards.show {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;
}
.mega-cards-2col { min-width: 460px; }
.mega-cards-2col.show { grid-template-columns: 1fr 1fr; }
.mega-cards .service-card {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 13px !important;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--ease);
  text-decoration: none;
  height: 100%;
  background: #fff;
}
.mega-cards .service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 18px rgba(23,172,198,0.13);
  transform: translateY(-2px);
  background: #fff !important;
  padding-left: 13px !important;
}
.mega-cards .sc-icon {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(23,172,198,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ease);
}
.mega-cards .sc-icon i { color: var(--teal); font-size: 14px; }
.mega-cards .service-card:hover .sc-icon { background: var(--teal); }
.mega-cards .service-card:hover .sc-icon i { color: #fff; }
.mega-cards .sc-text { display: flex; flex-direction: column; }
.mega-cards .sc-name {
  font-family: var(--font-b);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
}
.mega-cards .sc-desc {
  font-size: 11px;
  color: var(--body);
  line-height: 1.4;
  margin-top: 2px;
}
.mega-cards .mega-viewall-li { grid-column: 1 / -1; list-style: none; }
.mega-cards .mega-viewall {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 11px !important;
  border: none;
  border-radius: var(--r);
  background: rgba(23,172,198,0.08);
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal) !important;
  text-decoration: none;
  transition: var(--ease);
}
.mega-cards .mega-viewall:hover {
  background: var(--gradient);
  color: #fff !important;
}
.mega-cards .mega-viewall i { font-size: 11px; transition: var(--ease); }
.mega-cards .mega-viewall:hover i { transform: translateX(3px); }

/* Nav CTA button */
.nav-btn {
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gradient) !important;
  color: #fff !important;
  border-radius: var(--r);
  padding: 9px 18px !important;
  margin-left: 6px;
  transition: var(--ease);
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-teal);
  color: #fff !important;
}

.nav-btn::after { display: none !important; }

/* Mobile nav */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  font-size: 20px;
  color: rgba(255,255,255,0.88);
  background: none;
}

#mainNav.scrolled .navbar-toggler { color: var(--heading); }

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 16px;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
  }
  .navbar-nav .nav-link { color: var(--heading) !important; padding: 10px 8px !important; border-bottom: 1px solid var(--border); }
  .dropdown-menu { box-shadow: none !important; border: none !important; border-top: none !important; background: var(--light-bg) !important; }
  .mega-services { grid-template-columns: 1fr; min-width: unset; }
  .mega-cards.show { grid-template-columns: 1fr; }
  .mega-cards { min-width: unset; }
  .mega-cards-2col { min-width: unset; }
  .mega-cards-2col.show { grid-template-columns: 1fr; }
  .logo-white { display: none; }
  .logo-dark  { display: block; }
}

/* ================================================
   HERO
   ================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/parallaxbg1.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.3;
  will-change: transform;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,224,206,0.18) 0%,
    rgba(41,137,216,0.22) 60%,
    rgba(13,13,13,0.7) 100%
  );
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, #070d14, transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(40px, 6.5vw, 78px);
  font-weight: 200;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-h1 .bold-line {
  font-weight: 800;
  display: block;
}

.hero-h1 .gradient-word {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-sub {
  font-family: var(--font-b);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Hero credential pills */
.hero-creds {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.cred-pill i { color: var(--teal); font-size: 12px; }

/* Scroll indicator */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-h);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  display: block;
  font-size: 16px;
  margin-top: 6px;
  animation: scrollBounce 2.2s ease infinite;
}

@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(7px); opacity: 0.7; }
}

@media (max-width: 767px) {
  .hero-h1 { font-size: 38px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-pcs { text-align: center; justify-content: center; }
  .hero-content { padding: 120px 0 70px; }
}

/* ================================================
   TRUST / CREDENTIAL BAR
   ================================================ */
#trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 0;
}

.trust-bar-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.trust-bar-inner::-webkit-scrollbar { display: none; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  min-width: 0;
  flex: 1;
}

.trust-item:last-child { border-right: none; }

.trust-item-icon {
  width: 38px;
  height: 38px;
  background: rgba(23,172,198,0.12);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon i { font-size: 16px; color: var(--teal); }

.trust-item-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.trust-item-sub {
  font-family: var(--font-b);
  font-size: 10.5px;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}

@media (max-width: 991px) {
  .trust-item { padding: 16px 18px; }
}

/* ================================================
   ABOUT SECTION
   ================================================ */
#about {
  padding: 90px 0;
  background: #fff;
}

.about-text-col h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text-col p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 16px;
}

.about-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
}

.about-check-item i {
  color: var(--teal);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--r-lg);
  background: var(--light-bg);
  border: 1px solid var(--border);
  transition: var(--ease);
}

.stat-card:hover {
  border-color: var(--teal);
  background: #fff;
  box-shadow: var(--shadow);
}

.stat-num {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body);
}

/* ================================================
   SERVICES GRID
   ================================================ */
#services {
  padding: 90px 0;
  background: var(--light-bg);
}

.service-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 22px;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-accent { transform: scaleX(1); }

.service-card:hover {
  border-color: rgba(23,172,198,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--teal-light);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.service-icon-wrap i { font-size: 20px; color: var(--teal); }

.service-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.service-card p {
  font-size: 12.5px;
  color: var(--body);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.service-card-link {
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--ease);
  margin-top: auto;
}

.service-card-link:hover { color: var(--teal-dark); gap: 10px; }

/* ================================================
   ENGINEERING CALLOUT
   ================================================ */
#engineering {
  padding: 90px 0;
  background: #fff;
}

.nicet-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-light);
  border: 1px solid rgba(23,172,198,0.25);
  border-radius: 50px;
  padding: 10px 22px;
  margin-bottom: 24px;
}

.nicet-badge i { color: var(--teal); font-size: 18px; }

.nicet-badge span {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
}

.eng-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.eng-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eng-feature-icon i { font-size: 16px; color: var(--teal); }

.eng-feature h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 3px;
}

.eng-feature p {
  font-size: 12.5px;
  color: var(--body);
  line-height: 1.6;
}

.plan-review-card {
  background: var(--gradient-diag);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  color: #fff;
  height: 100%;
}

.plan-review-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.plan-review-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 24px;
}

.plan-review-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.plan-review-list li:last-child { border-bottom: none; }
.plan-review-list li i { color: rgba(255,255,255,0.6); font-size: 13px; flex-shrink: 0; }

/* ================================================
   WHY PCS
   ================================================ */
#why-pcs {
  padding: 90px 0;
  background: var(--gradient);
}

.why-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  height: 100%;
  transition: var(--ease);
}

.why-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.why-card-icon { font-size: 28px; color: #fff; margin-bottom: 16px; }

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

/* ================================================
   INDUSTRIES
   ================================================ */
#industries {
  padding: 90px 0;
  background: #fff;
}

.industry-card {
  background: var(--light-bg);
  border-radius: var(--r-lg);
  padding: 28px 16px;
  text-align: center;
  transition: var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.industry-card:hover {
  background: #fff;
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(23,172,198,0.15);
}

.industry-icon {
  font-size: 30px;
  color: var(--teal);
  margin-bottom: 12px;
}

.industry-card h4 {
  font-family: var(--font-h);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.industry-card:hover h4 { color: var(--teal); }

/* ================================================
   STATS
   ================================================ */
#stats {
  padding: 70px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.stat-item { text-align: center; padding: 24px 16px; }

.stat-big-num {
  font-family: var(--font-h);
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-big-label {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
}

/* ================================================
   VIDEO SECTION
   ================================================ */
#video-section {
  padding: 90px 0;
  background: var(--light-bg);
}

.video-outer {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  background: var(--dark);
  position: relative;
}

.video-outer video { width: 100%; display: block; }

/* ================================================
   LUNCH & LEARN CALLOUT
   ================================================ */
#lunch-learn {
  padding: 90px 0;
  background: var(--dark-2);
}

.lunch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(23,172,198,0.12);
  border: 1px solid rgba(23,172,198,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 20px;
}

.lunch-badge i { color: var(--teal); font-size: 14px; }

.lunch-badge span {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
}

.audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 7px 16px;
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-right: 8px;
  margin-bottom: 8px;
}

.audience-pill i { color: var(--teal); font-size: 12px; }

/* ================================================
   CTA BANNER
   ================================================ */
#cta-banner {
  padding: 80px 0;
  background: var(--gradient);
  text-align: center;
}

#cta-banner h2 {
  font-family: var(--font-h);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 200;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

#cta-banner h2 strong { font-weight: 800; }

#cta-banner p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

.cta-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9) !important;
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 600;
  transition: var(--ease);
}

.cta-phone-link i { font-size: 18px; }
.cta-phone-link:hover { color: #fff !important; transform: scale(1.04); }

/* ================================================
   CONTACT SECTION
   ================================================ */
#contact {
  padding: 90px 0;
  background: var(--dark);
}

.contact-info-block { margin-bottom: 28px; }

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon-wrap {
  width: 42px;
  height: 42px;
  background: rgba(23,172,198,0.12);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap i { font-size: 16px; color: var(--teal); }

.contact-info-lbl {
  font-family: var(--font-h);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}

.contact-info-val {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.contact-info-val a { color: rgba(255,255,255,0.82); }
.contact-info-val a:hover { color: var(--teal); }

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 36px 32px;
}

.form-label {
  font-family: var(--font-h) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 7px !important;
}

.form-control,
.form-select {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--r) !important;
  color: rgba(255,255,255,0.88) !important;
  padding: 12px 16px !important;
  font-family: var(--font-b) !important;
  font-size: 14px !important;
  transition: var(--ease) !important;
}

.form-control::placeholder { color: rgba(255,255,255,0.25) !important; }

.form-control:focus,
.form-select:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(23,172,198,0.15) !important;
  background: rgba(255,255,255,0.08) !important;
  outline: none !important;
  color: #fff !important;
}

.form-select option { background: #1a1a1a; color: #fff; }

/* ================================================
   FOOTER
   ================================================ */
#footer {
  background: #060606;
  padding: 64px 0 28px;
}

.footer-accent-bar {
  height: 3px;
  background: var(--gradient);
  margin-bottom: 48px;
}

.footer-logo img { height: 32px; margin-bottom: 16px; }

.footer-tagline {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-col-head {
  font-family: var(--font-h);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}

.footer-link-list li { margin-bottom: 9px; }

.footer-link-list a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link-list a:hover {
  color: var(--teal);
  padding-left: 3px;
}

.footer-divider { border-color: rgba(255,255,255,0.05); margin: 40px 0 20px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.2); }

.footer-legal-links a {
  font-size: 11.5px;
  color: rgba(255,255,255,0.2);
  margin-left: 18px;
  transition: var(--ease);
}

.footer-legal-links a:hover { color: var(--teal); }

.footer-address {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
}

/* ================================================
   SCROLL TO TOP
   ================================================ */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--ease);
  z-index: 999;
}

#scrollTop.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

#scrollTop:hover { transform: translateY(-3px); box-shadow: var(--shadow-teal); }

/* ================================================
   AOS OVERRIDES
   ================================================ */
[data-aos] { pointer-events: auto !important; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .about-check-list { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
  .section-heading { font-size: 26px; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item { flex: none; width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .stat-big-num { font-size: 38px; }
  .contact-form-wrap { padding: 24px 20px; }
  #cta-banner h2 { font-size: 26px; }
}
