/* ============================================================
   GORILLA ATM SECURITY — Design System
   Blend: Bold Industrial + Professional Clean + High Contrast
   ============================================================ */

/* --- Variables --- */
:root {
  --red:       #CC0000;
  --red-dark:  #A00000;
  --red-light: #FF2222;
  --black:     #0D0D0D;
  --steel:     #1C1C1E;
  --steel-mid: #2C2C2E;
  --steel-light: #3A3A3C;
  --gray-dark: #555;
  --gray-mid:  #888;
  --gray-light:#CCC;
  --off-white: #F5F4F2;
  --white:     #FFFFFF;
  --gold:      #D4A017;

  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Arial', sans-serif;

  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.28);
  --transition: 0.2s ease;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--steel);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--steel { background: var(--steel); color: var(--white); }
.section--light { background: var(--off-white); }
.section--white { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }

.section-header { margin-bottom: 56px; }
.section-header p { font-size: 1.1rem; color: var(--gray-dark); max-width: 640px; }
.section-header.text-center p { margin: 0 auto; }
.section--dark .section-header p,
.section--steel .section-header p { color: var(--gray-light); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,0,0,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--black); }
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--steel-mid); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* --- Red accent line --- */
.red-line {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--red);
  margin: 16px 0 24px;
}
.red-line.center { margin: 16px auto 24px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--steel-mid);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span { color: var(--red); display: block; font-size: 0.7rem; letter-spacing: 0.2em; }
.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--gray-light);
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--steel);
  border: 1px solid var(--steel-light);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px !important;
  font-size: 0.8rem !important;
  color: var(--gray-light) !important;
  border-radius: 0 !important;
}
.nav-dropdown-menu a:hover { background: var(--steel-mid); color: var(--white) !important; }
.nav-dropdown-menu a::after { display: none; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  color: var(--gray-light);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--white); }
.nav-phone svg { color: var(--red); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
#mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--black);
  border-top: 1px solid var(--steel-mid);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  color: var(--gray-light);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--steel-mid);
}

/* ============================================================
   HERO — Dark Industrial + High Contrast
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(204,0,0,0.08) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    );
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13,13,13,0.98) 50%, rgba(13,13,13,0.7) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.4);
  color: #FF6666;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 .highlight { color: var(--red); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero Quote Form */
.hero-form-card {
  background: rgba(28,28,30,0.95);
  border: 1px solid var(--steel-light);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.hero-form-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.hero-form-card p {
  color: var(--gray-mid);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--steel-mid);
  border: 1px solid var(--steel-light);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: var(--steel); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-dark); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; }
.form-note { font-size: 0.75rem; color: var(--gray-dark); text-align: center; margin-top: 10px; margin-bottom: 0; }
.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
  background: var(--white);
  border-color: #DDD;
  color: var(--steel);
}
.form-light .form-group label { color: var(--gray-dark); }
.form-light .form-group input::placeholder { color: #BBB; }
.form-light .form-group select option { background: #fff; color: #333; }
.form-light .form-group input:focus,
.form-light .form-group select:focus { border-color: var(--red); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--steel);
  border-top: 1px solid var(--steel-mid);
  border-bottom: 1px solid var(--steel-mid);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.trust-item svg { color: var(--red); flex-shrink: 0; }
.trust-item-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-item-text span {
  font-size: 0.75rem;
  color: var(--gray-mid);
}
.trust-divider { width: 1px; height: 40px; background: var(--steel-light); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--red);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: var(--white);
  border: 1px solid #E8E8E8;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  border-color: var(--red);
}
.product-card-img {
  height: 220px;
  background: var(--steel);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-img .product-placeholder {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  text-align: center;
}
.product-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--steel);
}
.product-card-body p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  margin-bottom: 16px;
  flex: 1;
}
.product-spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.spec-pill {
  background: var(--off-white);
  border: 1px solid #E0E0E0;
  color: var(--gray-dark);
  font-size: 0.72rem;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ============================================================
   USE CASE CARDS
   ============================================================ */
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.usecase-card {
  background: var(--steel);
  border: 1px solid var(--steel-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
}
.usecase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.usecase-card:hover::before { transform: scaleY(1); }
.usecase-card:hover {
  background: var(--steel-mid);
  border-color: rgba(204,0,0,0.4);
  transform: translateY(-3px);
}
.usecase-icon {
  width: 52px;
  height: 52px;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 1.4rem;
}
.usecase-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.usecase-card p { color: var(--gray-mid); font-size: 0.85rem; margin: 0; }
.usecase-card .arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: var(--red);
  opacity: 0;
  transition: all var(--transition);
  font-size: 1.2rem;
}
.usecase-card:hover .arrow { opacity: 1; right: 16px; }

/* ============================================================
   WHY GORILLA SECTION
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-item {
  padding: 32px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  position: relative;
}
.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--radius) var(--radius) 0 0;
}
.why-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(204,0,0,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.why-item h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.why-item p { color: var(--gray-mid); font-size: 0.85rem; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid #E8E8E8;
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-dark);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}
.testimonial-author span { font-size: 0.78rem; color: var(--red); }
.testimonial-featured {
  grid-column: span 3;
  background: var(--steel);
  color: var(--white);
  border-color: var(--steel-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}
.testimonial-featured::before { color: var(--red); opacity: 0.3; }
.testimonial-featured .testimonial-text { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.testimonial-featured .testimonial-author strong { color: var(--white); }
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(204,0,0,0.2);
  border: 1px solid rgba(204,0,0,0.4);
  color: #FF8888;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ============================================================
   CRIME STATS URGENCY SECTION
   ============================================================ */
.urgency-section {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.urgency-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 120px,
    rgba(204,0,0,0.03) 120px,
    rgba(204,0,0,0.03) 121px
  );
}
.urgency-inner { position: relative; z-index: 1; }
.urgency-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 40px 0; }
.urgency-stat {
  background: var(--steel);
  padding: 32px 28px;
  text-align: center;
  position: relative;
}
.urgency-stat:first-child { border-left: 4px solid var(--red); }
.urgency-stat-big {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.urgency-stat-label { color: var(--gray-light); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; }
.urgency-stat-source { color: var(--gray-dark); font-size: 0.7rem; margin-top: 4px; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-hero {
  background: var(--black);
  padding: 120px 0 80px;
  position: relative;
}
.product-hero-inner { display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: start; }
.product-hero-content .product-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  padding: 4px 12px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.product-hero-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 32px; }
.spec-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.spec-table tr { border-bottom: 1px solid var(--steel-light); }
.spec-table td { padding: 12px 0; font-size: 0.9rem; color: var(--gray-light); vertical-align: top; }
.spec-table td:first-child { color: var(--gray-mid); font-family: var(--font-head); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; width: 40%; padding-right: 16px; }
.spec-table td:last-child { color: var(--white); }
.product-features-list { list-style: none; margin: 0 0 32px; }
.product-features-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.product-features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--red);
}
.product-img-card {
  background: var(--steel);
  border: 1px solid var(--steel-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-img-card .img-placeholder {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--steel-mid);
  color: var(--gray-dark);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  flex-direction: column;
  gap: 8px;
}
.product-img-card .img-placeholder svg { color: var(--steel-light); }

/* ============================================================
   ALERT / URGENCY BANNER
   ============================================================ */
.alert-banner {
  background: var(--red);
  padding: 14px 24px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.alert-banner .pulse-dot { width: 8px; height: 8px; background: var(--white); border-radius: 50%; animation: pulse 2s infinite; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid #E8E8E8;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-icon { color: var(--red); font-size: 1.2rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(0,0,0,0.04) 20px, rgba(0,0,0,0.04) 21px);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin: 0; }
.cta-banner .btn-secondary { border-color: var(--white); color: var(--white); }
.cta-banner .btn-secondary:hover { background: var(--white); color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  border-top: 1px solid var(--steel-mid);
  padding: 60px 0 32px;
  color: var(--gray-light);
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-text span { color: var(--red); }
.footer-tagline {
  font-size: 0.78rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 12px;
}
.footer-contact-item svg { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray-mid);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--steel-mid);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--gray-dark);
}
.footer-bottom a { color: var(--gray-dark); }
.footer-bottom a:hover { color: var(--gray-light); }
.footer-bbb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray-mid);
}
.bbb-badge {
  background: var(--steel-mid);
  border: 1px solid var(--steel-light);
  padding: 6px 12px;
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--black);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 80%);
}
.page-header .eyebrow { color: rgba(204,0,0,0.9); }
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-dark);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-dark); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--gray-mid); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--black);
}
.timeline-year {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-item h4 { color: var(--white); margin-bottom: 6px; font-size: 1rem; }
.timeline-item p { color: var(--gray-mid); font-size: 0.9rem; margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: start; }
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-info-text strong { display: block; color: var(--white); font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-info-text span { color: var(--gray-mid); font-size: 0.9rem; }
.quote-form-card {
  background: var(--white);
  border: 1px solid #E8E8E8;
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.quote-form-card h3 { color: var(--steel); font-size: 1.3rem; margin-bottom: 6px; }
.quote-form-card > p { color: var(--gray-dark); font-size: 0.9rem; margin-bottom: 28px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 480px; }
  .hero { min-height: auto; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero-stats { gap: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .urgency-stat-row { grid-template-columns: 1fr; gap: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-hero-inner { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .trust-bar-inner { justify-content: flex-start; gap: 16px; }
  .trust-divider { display: none; }
  h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-badge { font-size: 0.65rem; }
}

/* --- Footer Trust: Accreditations & Our Businesses --- */
.footer-trust-row {
  border-top: 1px solid var(--steel-mid);
  padding: 28px 0 32px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-trust-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 14px;
}
.footer-trust-items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-acc-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--steel-light);
  padding: 9px 16px;
  border-radius: var(--radius);
  min-width: 88px;
  text-align: center;
  transition: border-color var(--transition);
}
.footer-acc-badge:hover { border-color: var(--gray-mid); }
.footer-acc-badge .badge-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-acc-badge .badge-sub {
  font-size: 0.62rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.footer-biz-item {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--red);
  padding-left: 12px;
  transition: border-color var(--transition);
}
.footer-biz-item:hover { border-color: var(--red-light); }
.footer-biz-name {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.footer-biz-item:hover .footer-biz-name { color: var(--white); }
.footer-biz-tagline {
  font-size: 0.7rem;
  color: var(--gray-dark);
  margin-top: 2px;
}
@media (max-width: 640px) {
  .footer-trust-row { flex-direction: column; gap: 28px; }
}

/* --- Footer trust badges: image versions --- */
.footer-acc-badge img {
  height: 38px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity var(--transition);
  display: block;
}
.footer-acc-badge:hover img { opacity: 1; }
/* BBB: keep its blue color, don't invert */
.footer-acc-badge.badge-bbb img { filter: none; opacity: 0.85; }
.footer-acc-badge.badge-bbb:hover img { opacity: 1; }
.footer-biz-logo {
  height: 28px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity var(--transition);
  display: block;
}
.footer-biz-item:hover .footer-biz-logo { opacity: 1; }
