/*
Theme Name: SCT Starter
Theme URI: https://scteknologies.com
Description: Custom theme for SC Teknologies — no framework dependency.
Author: SC Teknologies / Mojoe.net
Version: 2.0.0
Requires PHP: 7.4
License: Proprietary
Text Domain: sct
*/
/* ============================================================
   SC TEKNOLOGIES — CUSTOM THEME CSS
   scteknologies.com | collisioncontrol.net (redirected)
   Brand: SC Blue #1B6FBE | Tech Green #1DC99A | Navy #08102B
   ============================================================ */

/* ── 1. ROOT VARIABLES & RESET ─────────────────────────────── */
:root {
  --sct-blue:       #1B6FBE;
  --sct-blue-dark:  #0F4F8F;
  --sct-blue-light: #4A9FE8;
  --sct-green:      #1DC99A;
  --sct-green-dark: #14A07C;
  --sct-cyan:       #4DD8E0;
  --sct-navy:       #08102B;
  --sct-navy-mid:   #0D1F4E;
  --sct-navy-light: #162650;
  --sct-white:      #FFFFFF;
  --sct-text-muted: #A8B8CC;
  --sct-text-dim:   #6A7F99;
  --sct-border:     rgba(77,216,224,0.2);
  --sct-gradient:   linear-gradient(135deg, #1B6FBE 0%, #1DC99A 100%);
  --sct-gradient-dark: linear-gradient(135deg, #08102B 0%, #0D1F4E 100%);
  --sct-shadow:     0 8px 32px rgba(8,16,43,0.6);
  --sct-glow:       0 0 14px rgba(29,201,154,0.15);
  --sct-radius:     6px;
  --sct-radius-lg:  12px;
  --sct-font-head:  'Orbitron', sans-serif;
  --sct-font-body:  'Inter', 'Source Sans Pro', sans-serif;
  --sct-font-mono:  'IBM Plex Mono', monospace;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

html,
body,
#page-container {
  background: #08102B !important;
  margin: 0;
  padding: 0;
}

/* ── 2. GLOBAL TYPOGRAPHY ──────────────────────────────────── */
body,
#page-container {
  font-family: var(--sct-font-body);
  color: #A8B8CC;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: var(--sct-font-head);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--sct-font-head) !important;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
}

h3 {
  font-family: var(--sct-font-body);
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
}

h4 {
  font-family: var(--sct-font-body);
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
}

p { color: #A8B8CC; }

/* Eyebrow labels */
.sct-eyebrow {
  font-family: var(--sct-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sct-green);
  display: block;
  margin-bottom: 12px;
}

/* ── 2b. LAYOUT PRIMITIVES ────────────────────────────────── */
.sct-section {
  padding: 80px 40px;
}
.sct-section--dark  { background: #08102B; }
.sct-section--mid   { background: #0D1F4E; }
.sct-section--hero  { padding: 120px 40px 80px; }

.sct-container {
  width: 80%;
  max-width: none;
  margin: 0 auto;
}
.sct-container--narrow {
  width: 80%;
  max-width: none;
  margin: 0 auto;
}
.sct-container--center {
  text-align: center;
  margin-bottom: 48px;
}

/* Grids */
.sct-grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sct-grid-3   { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.sct-grid-4   { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.sct-grid-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Stat cards */
.sct-stat-box {
  background: #08102B;
  border: 1px solid rgba(77,216,224,.15);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.sct-stat-box--alt { background: #0D1F4E; }
.sct-stat-value {
  font-family: var(--sct-font-head);
  font-size: 24px;
  font-weight: 700;
  color: #1DC99A;
  margin-bottom: 8px;
}
.sct-stat-label {
  color: #A8B8CC;
  font-size: 13px;
  line-height: 1.5;
}

/* Checkmark list items */
.sct-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sct-check-icon {
  color: #1DC99A;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 18px;
}

/* Breadcrumb */
.sct-breadcrumb {
  font-size: 11px;
  color: #6A7F99;
  margin-bottom: 10px;
}
.sct-breadcrumb a {
  color: #1DC99A;
  text-decoration: none;
}

/* Step number decoration */
.sct-step-num {
  font-family: var(--sct-font-head);
  font-size: 32px;
  font-weight: 700;
  color: rgba(29,201,154,.25);
  margin-bottom: 16px;
  line-height: 1;
}

/* HIW step headings (green) */
.sct-step-title {
  font-family: var(--sct-font-head);
  font-size: 20px;
  font-weight: 700;
  color: #1DC99A;
  margin-bottom: 10px;
}

/* Hero grid pattern overlay */
.sct-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,201,154,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,201,154,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Team member styling */
.sct-member-role {
  color: #1DC99A;
  font-family: var(--sct-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.sct-member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  border: 2px solid rgba(29,201,154,.35);
}
.sct-member-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(29,201,154,.1);
  border: 2px solid rgba(29,201,154,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* Responsive images */
img { max-width: 100%; height: auto; }

/* Gradient text accent */
.sct-text-gradient {
  background: var(--sct-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 3. NAVIGATION ─────────────────────────────────────────── */
#main-header,
#top-header {
  background: rgba(8, 16, 43, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sct-border);
}

/* Transparent hero nav → solid on scroll */
#main-header.et-fixed-header {
  background: rgba(8, 16, 43, 0.98) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

/* ── 4. HERO SECTION ───────────────────────────────────────── */
#sct-hero {
  position: relative;
  overflow: hidden;
  background: var(--sct-navy) !important;
}

/* Animated circuit grid overlay */
#sct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,201,154,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,201,154,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: sct-grid-drift 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow behind hero content */
#sct-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(27,111,190,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@keyframes sct-grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Particle canvas (injected by sct-hero.js) */
#sct-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.sct-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 24px 0;
}

.sct-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sct-green) !important;
  color: var(--sct-navy) !important;
  font-family: var(--sct-font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--sct-radius);
  border: none;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(29,201,154,0.15);
}
.sct-btn-primary:hover {
  background: #0C68D2 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12,104,210,0.2);
}

.sct-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: var(--sct-white) !important;
  font-family: var(--sct-font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--sct-radius);
  border: 1px solid rgba(255,255,255,0.25) !important;
  text-decoration: none !important;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.sct-btn-ghost:hover {
  border-color: var(--sct-green) !important;
  color: var(--sct-green) !important;
  background: rgba(29,201,154,0.06) !important;
}

.sct-btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sct-blue) !important;
  color: var(--sct-white) !important;
  font-family: var(--sct-font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: var(--sct-radius);
  border: none;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
}
.sct-btn-blue:hover {
  background: var(--sct-blue-dark) !important;
  transform: translateY(-1px);
}

/* ── 6. TRUST BADGES ───────────────────────────────────────── */
.sct-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.sct-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sct-font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--sct-text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 14px;
  white-space: nowrap;
}

.sct-trust-badges span::before {
  content: '✓';
  color: var(--sct-green);
  font-weight: 700;
}

/* ── 7. STATS COUNTER BAR ──────────────────────────────────── */
.sct-stat-card {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--sct-border);
  transition: background 0.2s;
}
.sct-stat-card:last-child { border-right: none; }
.sct-stat-card:hover { background: rgba(29,201,154,0.04); }

.sct-stat-number {
  font-family: var(--sct-font-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  background: var(--sct-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.sct-stat-label {
  font-family: var(--sct-font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sct-text-muted);
}

/* ── 8. PRODUCT CARDS ──────────────────────────────────────── */
.sct-product-card {
  background: var(--sct-navy-mid);
  border: 1px solid var(--sct-border);
  border-radius: var(--sct-radius-lg);
  padding: 36px 28px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sct-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sct-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.sct-product-card:hover {
  border-color: rgba(29,201,154,0.4);
  box-shadow: 0 4px 24px rgba(29,201,154,0.08);
}

.sct-product-card:hover::before {
  transform: scaleX(1);
}

/* Clickable link cards — float up + shadow */
.sct-product-card--link {
  cursor: pointer;
  transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sct-product-card--link:hover {
  border-color: rgba(29,201,154,0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(29,201,154,0.08);
  transform: translateY(-6px);
}

/* Cards with CTA buttons */
.sct-product-card--cta {
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.sct-product-card--cta:hover {
  border-color: rgba(29,201,154,0.35);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25), 0 0 12px rgba(29,201,154,0.06);
}

.sct-product-icon {
  width: 56px;
  height: 56px;
  background: rgba(29,201,154,0.1);
  border: 1px solid rgba(29,201,154,0.3);
  border-radius: var(--sct-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sct-product-card h3 {
  font-family: var(--sct-font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--sct-white);
  margin-bottom: 12px;
}

.sct-product-card p {
  color: var(--sct-text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.sct-product-card .sct-card-link {
  font-family: var(--sct-font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--sct-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.sct-product-card .sct-card-link:hover { gap: 10px; }

/* ── 9. COMPARISON TABLE ───────────────────────────────────── */
.sct-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sct-font-body);
  margin: 32px 0;
}

.sct-comparison-table thead th {
  background: linear-gradient(180deg, #0f2a50 0%, #0a1e3d 100%);
  color: var(--sct-white);
  font-family: var(--sct-font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 20px;
  text-align: center;
  border-bottom: 2px solid var(--sct-border);
}

.sct-comparison-table thead th:first-child {
  text-align: left;
  color: var(--sct-text-muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sct-comparison-table thead th.sct-col-highlight {
  background: linear-gradient(180deg, rgba(29,201,154,0.15) 0%, rgba(29,201,154,0.05) 100%);
  border-top: 2px solid var(--sct-green);
  color: var(--sct-green);
}

.sct-comparison-table tbody tr {
  border-bottom: 1px solid var(--sct-border);
  background: var(--sct-navy);
}

.sct-comparison-table tbody tr:hover {
  background: #0a1533;
}

.sct-comparison-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--sct-text-muted);
  text-align: center;
}

.sct-comparison-table tbody td:first-child {
  text-align: left;
  color: var(--sct-white);
  font-weight: 500;
}

.sct-comparison-table td.sct-col-highlight {
  background: rgba(29,201,154,0.04);
}

.sct-check    { color: var(--sct-green);  font-size: 18px; font-weight: 700; }
.sct-cross    { color: #E24B4A;            font-size: 16px; }
.sct-partial  { color: #EF9F27;            font-size: 14px; }

/* ── 11. CERTIFICATION BADGES ──────────────────────────────── */
.sct-cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.sct-cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--sct-navy-mid);
  border: 1px solid var(--sct-border);
  border-radius: var(--sct-radius-lg);
  padding: 20px 16px;
  transition: border-color 0.2s, transform 0.2s;
  box-sizing: border-box;
  overflow: hidden;
}

.sct-cert-badge:hover {
  border-color: rgba(29,201,154,0.5);
}

.sct-cert-badge .cert-icon {
  font-size: 28px;
  line-height: 1;
}

.sct-cert-badge .cert-name {
  font-family: var(--sct-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--sct-white);
  text-align: center;
  letter-spacing: 0.5px;
}

.sct-cert-badge .cert-sub {
  font-size: 11px;
  color: var(--sct-text-dim);
  text-align: center;
}

/* ── 12. CTA SECTION ───────────────────────────────────────── */
#sct-cta {
  background: linear-gradient(135deg, var(--sct-navy-mid) 0%, #0A1A3E 100%) !important;
  border-top: 1px solid var(--sct-border);
  position: relative;
  overflow: hidden;
}

#sct-cta::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -50%;
  width: 600px;
  height: 200%;
  background: radial-gradient(ellipse, rgba(29,201,154,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Footer patent/trademark note */
.sct-footer-legal {
  font-size: 12px;
  color: var(--sct-text-dim);
  margin-top: 8px;
  line-height: 1.6;
}

/* ── 14. SECTION BACKGROUNDS ───────────────────────────────── */
.sct-bg-navy   { background: var(--sct-navy)      !important; }
.sct-bg-mid    { background: var(--sct-navy-mid)   !important; }
.sct-bg-light  { background: var(--sct-navy-light) !important; }
.sct-bg-gradient { background: var(--sct-gradient-dark) !important; }

/* Section dividers (angled) */
.sct-angle-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
  margin-bottom: -1px;
}
.sct-angle-top {
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  margin-top: -1px;
}

/* ── 15. PAGE HERO VARIATIONS ──────────────────────────────── */
.sct-page-hero {
  background: linear-gradient(135deg, var(--sct-navy) 0%, var(--sct-navy-mid) 100%) !important;
  padding: 100px 0 80px !important;
  border-bottom: 1px solid var(--sct-border);
  position: relative;
  overflow: hidden;
}

.sct-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,201,154,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,201,154,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.sct-page-hero h1 {
  font-family: var(--sct-font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--sct-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.sct-page-hero .hero-sub {
  font-size: 18px;
  color: var(--sct-text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* Breadcrumb */
.sct-breadcrumb {
  font-size: 13px;
  color: var(--sct-text-dim);
  margin-bottom: 20px;
  font-family: var(--sct-font-head);
  letter-spacing: 0.5px;
}
.sct-breadcrumb a { color: var(--sct-green); text-decoration: none; }
.sct-breadcrumb a:hover { text-decoration: underline; }
.sct-breadcrumb span { margin: 0 8px; }

/* ── 16. CONTACT FORM ──────────────────────────────────────── */
.sct-form-wrap input[type="text"],
.sct-form-wrap input[type="email"],
.sct-form-wrap select,
.sct-form-wrap textarea,
.sct-form-wrap input:focus,
.sct-form-wrap textarea:focus {
  border-color: var(--sct-green) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(29,201,154,0.15) !important;
}


.sct-form-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8B8CC' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px !important;
}

.sct-form-wrap select:focus {
  border-color: var(--sct-green) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(29,201,154,0.15) !important;
}

.sct-form-wrap select option {
  background: var(--sct-navy-mid);
  color: var(--sct-white);
}

/* Custom select dropdown */
.sct-custom-select {
  position: relative;
  width: 100%;
}
.sct-custom-select__trigger {
  background: var(--sct-navy-mid);
  border: 1px solid var(--sct-border);
  border-radius: var(--sct-radius);
  color: var(--sct-white);
  font-family: var(--sct-font-body);
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: border-color 0.2s;
}
.sct-custom-select__trigger:hover {
  border-color: rgba(77,216,224,0.4);
}
.sct-custom-select.open .sct-custom-select__trigger {
  border-color: var(--sct-green);
  box-shadow: 0 0 0 3px rgba(29,201,154,0.15);
}
.sct-custom-select.open .sct-custom-select__trigger svg {
  transform: rotate(180deg);
}
.sct-custom-select__trigger svg {
  transition: transform 0.2s;
}
.sct-custom-select__options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--sct-navy-mid);
  border: 1px solid var(--sct-border);
  border-radius: var(--sct-radius);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.sct-custom-select.open .sct-custom-select__options {
  display: block;
}
.sct-custom-select__options li {
  padding: 10px 16px;
  color: var(--sct-white);
  font-family: var(--sct-font-body);
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
}
.sct-custom-select__options li:hover {
  background: rgba(29,201,154,0.12);
}
.sct-custom-select__options li.selected {
  color: var(--sct-green);
}

/* ── 17. SPEC TABLES ───────────────────────────────────────── */
.sct-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sct-font-mono);
  font-size: 13px;
}
.sct-spec-table th {
  background: var(--sct-navy-mid);
  color: var(--sct-cyan);
  padding: 10px 16px;
  text-align: left;
  font-family: var(--sct-font-head);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sct-border);
}
.sct-spec-table td {
  padding: 10px 16px;
  color: var(--sct-text-muted);
  border-bottom: 1px solid rgba(77,216,224,0.07);
}
.sct-spec-table tr:hover td { background: rgba(255,255,255,0.02); }
.sct-spec-table td:first-child { color: var(--sct-white); font-family: var(--sct-font-body); font-weight: 500; }

/* ── 18. SCROLL ANIMATIONS ─────────────────────────────────── */
.sct-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sct-fade-up.sct-visible {
  opacity: 1;
  transform: translateY(0);
}

.sct-fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.sct-fade-in.sct-visible { opacity: 1; }

.sct-slide-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sct-slide-left.sct-visible { opacity: 1; transform: translateX(0); }

/* Stagger delay utilities */
.sct-delay-1 { transition-delay: 0.1s !important; }
.sct-delay-2 { transition-delay: 0.2s !important; }
.sct-delay-3 { transition-delay: 0.3s !important; }
.sct-delay-4 { transition-delay: 0.4s !important; }

/* ── 19. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 980px) {
  .sct-page-hero h1 { font-size: 36px; }
  .sct-stat-number { font-size: 38px; }
  .sct-stat-card { border-right: none; border-bottom: 1px solid var(--sct-border); }
  .sct-comparison-table { display: block; overflow-x: auto; }
  .sct-cert-grid { gap: 12px; }
}

@media (max-width: 767px) {
  .sct-btn-group { flex-direction: column; align-items: flex-start; }
  .sct-btn-group[style*="justify-content:center"],
  .sct-btn-group[style*="justify-content: center"] { align-items: center !important; }
  .sct-trust-badges { gap: 8px; }
  .sct-trust-badges span { font-size: 11px; padding: 4px 10px; }
  .sct-product-card { margin-bottom: 20px; }
  #sct-demo-form [style*="grid-template-columns: 1fr 1fr"],
  #sct-demo-form [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── 20. PRINT / A11Y ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *:not(.sct-testi-row), *:not(.sct-testi-row)::before, *:not(.sct-testi-row)::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--sct-green);
  outline-offset: 3px;
}

/* Skip link */
.sct-skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 99999;
  background: var(--sct-green);
  color: var(--sct-navy);
  padding: 10px 20px;
  border-radius: 0 0 var(--sct-radius) var(--sct-radius);
  font-weight: 700;
  transition: top 0.2s;
}
.sct-skip-link:focus { top: 0; }

/* Full width page override */
.page .entry-content,
.page #main-content .container,
.page #main-content,
.page-template-default #content,
.page-template-default .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page .entry-content {
  padding: 0 !important;
  margin: 0 !important;
}

.page .entry-content > p {
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove p tags containing only comments between sections */
.entry-content > p {
  display: none !important;
}

.entry-content > section {
  padding-top: 100px !important;
}

a[href="/solutions/evp/"],
a[href="/solutions/collision-avoidance/"] {
  display: none !important;
}

/* ── 21. INLINE GRID RESPONSIVE OVERRIDES ──────────────────────
   Uses [style*="..."] attribute selectors + !important to
   override grid-template-columns set as inline styles on divs.
   ─────────────────────────────────────────────────────────────── */

/* ── Tablet (≤ 980px) ────────────────────────────────────────── */
@media (max-width: 980px) {

  /* 4-col → 2-col */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* 3-col → 2-col */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Reduce horizontal section padding */
  [style*="padding:80px 40px"],
  [style*="padding:100px 40px"],
  [style*="padding:60px 40px"] {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* ── Mobile (≤ 767px) ────────────────────────────────────────── */
@media (max-width: 767px) {

  /* All multi-column inline grids → single column */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:1fr auto"],
  [style*="grid-template-columns: 1fr auto"] {
    grid-template-columns: 1fr !important;
  }

  /* Section padding: compact for small screens */
  [style*="padding:80px 40px"] {
    padding: 48px 20px !important;
  }
  [style*="padding:100px 40px"] {
    padding: 60px 20px !important;
  }
  [style*="padding:60px 40px"] {
    padding: 40px 20px !important;
  }

  /* Reduce large inline gaps */
  [style*="gap:60px"] {
    gap: 28px !important;
  }
  [style*="gap:40px"] {
    gap: 24px !important;
  }

  /* Inline max-width containers: prevent horizontal overflow */
  [style*="max-width:1200px"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  /* Hero headings */
  .sct-page-hero h1,
  #sct-hero h1,
  #sct-hero h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  /* Stat counters */
  .sct-stat-number {
    font-size: 32px !important;
  }

  /* Tables: horizontal scroll on mobile */
  .sct-comparison-table,
  .sct-spec-table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

/* ── Small mobile (≤ 480px) ─────────────────────────────────── */
@media (max-width: 480px) {

  [style*="padding:80px 40px"],
  [style*="padding:100px 40px"],
  [style*="padding:60px 40px"] {
    padding: 36px 16px !important;
  }

  [style*="max-width:1200px"] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .sct-page-hero h1,
  #sct-hero h1,
  #sct-hero h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  .sct-stat-number {
    font-size: 28px !important;
  }
}

/* ── 22. CTA BUTTON CENTERING (MOBILE) ─────────────────────────
   Force center alignment for the 3-button CTA groups on mobile.
   Uses #sct-cta ID for highest specificity over column-flex rules.
   ─────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  #sct-cta .sct-btn-group {
    align-items: center !important;
    width: 100% !important;
  }
}

/* ── 23. INLINE TYPOGRAPHY RESPONSIVE OVERRIDES ────────────────
   Scales inline font-size values on headings and paragraphs
   using [style*="font-size:Xpx"] attribute selectors.
   ─────────────────────────────────────────────────────────────── */

/* ── Tablet (≤ 980px) ────────────────────────────────────────── */
@media (max-width: 980px) {

  [style*="font-size:58px"], [style*="font-size: 58px"] { font-size: 38px !important; line-height: 1.15 !important; }
  [style*="font-size:48px"], [style*="font-size: 48px"] { font-size: 32px !important; line-height: 1.15 !important; }
  [style*="font-size:40px"], [style*="font-size: 40px"] { font-size: 28px !important; line-height: 1.2  !important; }
  [style*="font-size:38px"], [style*="font-size: 38px"] { font-size: 28px !important; line-height: 1.2  !important; }
  [style*="font-size:34px"], [style*="font-size: 34px"] { font-size: 24px !important; line-height: 1.2  !important; }
  [style*="font-size:32px"], [style*="font-size: 32px"] { font-size: 24px !important; line-height: 1.2  !important; }
  [style*="font-size:30px"], [style*="font-size: 30px"] { font-size: 22px !important; line-height: 1.2  !important; }

  /* Class-based headings */
  .sct-page-hero h1 { font-size: 34px !important; }
  h2 { font-size: 26px !important; }
  h3 { font-size: 20px !important; }
}

/* ── Mobile (≤ 767px) ────────────────────────────────────────── */
@media (max-width: 767px) {

  /* Large display headings */
  [style*="font-size:58px"], [style*="font-size: 58px"] { font-size: 26px !important; line-height: 1.15 !important; }
  [style*="font-size:48px"], [style*="font-size: 48px"] { font-size: 24px !important; line-height: 1.15 !important; }
  [style*="font-size:40px"], [style*="font-size: 40px"] { font-size: 22px !important; line-height: 1.2  !important; }
  [style*="font-size:38px"], [style*="font-size: 38px"] { font-size: 22px !important; line-height: 1.2  !important; }

  /* Section headings */
  [style*="font-size:34px"], [style*="font-size: 34px"] { font-size: 22px !important; line-height: 1.2  !important; }
  [style*="font-size:32px"], [style*="font-size: 32px"] { font-size: 22px !important; line-height: 1.2  !important; }
  [style*="font-size:30px"], [style*="font-size: 30px"] { font-size: 22px !important; line-height: 1.2  !important; }
  [style*="font-size:26px"], [style*="font-size: 26px"] { font-size: 20px !important; line-height: 1.3  !important; }
  [style*="font-size:22px"], [style*="font-size: 22px"] { font-size: 17px !important; line-height: 1.3  !important; }
  [style*="font-size:20px"], [style*="font-size: 20px"] { font-size: 16px !important; line-height: 1.4  !important; }

  /* Paragraph / body text */
  [style*="font-size:18px"], [style*="font-size: 18px"] { font-size: 16px !important; line-height: 1.65 !important; }
  [style*="font-size:17px"], [style*="font-size: 17px"] { font-size: 15px !important; }
  p { font-size: 15px; line-height: 1.65; }

  /* Class-based headings */
  .sct-page-hero h1              { font-size: 26px !important; line-height: 1.15 !important; }
  h1 { font-size: 26px !important; line-height: 1.15 !important; }
  h2 { font-size: 24px !important; line-height: 1.2  !important; }
  h3 { font-size: 18px !important; line-height: 1.3  !important; }
  h4 { font-size: 16px !important; }
  h5, h6 { font-size: 14px !important; }
}

/* ── Small mobile (≤ 480px) ─────────────────────────────────── */
@media (max-width: 480px) {

  [style*="font-size:58px"], [style*="font-size: 58px"] { font-size: 22px !important; }
  [style*="font-size:48px"], [style*="font-size: 48px"] { font-size: 22px !important; }
  [style*="font-size:40px"], [style*="font-size: 40px"] { font-size: 20px !important; }
  [style*="font-size:38px"], [style*="font-size: 38px"] { font-size: 20px !important; }
  [style*="font-size:34px"], [style*="font-size: 34px"] { font-size: 20px !important; }
  [style*="font-size:32px"], [style*="font-size: 32px"] { font-size: 20px !important; }
  [style*="font-size:30px"], [style*="font-size: 30px"] { font-size: 20px !important; }

  .sct-page-hero h1              { font-size: 22px !important; }
  h1 { font-size: 22px !important; }
  h2 { font-size: 22px !important; }
  h3 { font-size: 17px !important; }
}

/* ── NAV CTA BUTTON — FORCE WHITE TEXT ─────────────────────────
   CSS !important beats inline styles that lack !important.
   Applies regardless of LiteSpeed page cache state.
   ─────────────────────────────────────────────────────────────── */
a.sct-desktop-cta,
a.sct-desktop-cta:visited {
  color: var(--sct-navy) !important;
}
a.sct-desktop-cta:hover {
  color: #FFFFFF !important;
}

/* ── 24. CONTAINER WIDTH ────────────────────────────────────────
   Remove fixed px max-width constraints so containers fill the
   full width of their section (bounded only by section padding).
   ─────────────────────────────────────────────────────────────── */
[style*="max-width:1200px"],
[style*="max-width:800px"] {
  max-width: none !important;
  width: 80% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ── 25. FOOTER ─────────────────────────────────────────────── */
.sct-footer {
  background: #040C1E;
  border-top: 1px solid rgba(77,216,224,0.2);
  padding: 60px 40px 0;
}
.sct-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.sct-footer-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(77,216,224,0.2);
}
.sct-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sct-footer-links a {
  color: #6A7F99;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.sct-footer-links a:hover { color: #1DC99A; }
.sct-footer-bottom {
  background: #020810;
  border-top: 1px solid rgba(77,216,224,0.2);
  padding: 20px 40px;
}
.sct-footer-bottom-link {
  color: #6A7F99;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.sct-footer-bottom-link:hover { color: #1DC99A; }

@media (max-width: 980px) {
  .sct-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .sct-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 24. MOBILE PASS — CLASS-BASED LAYOUT + CONTAINERS ─────────
   Addresses layouts not covered by the inline-style overrides:
   class-based grids, section/container padding, hero padding,
   spec-table overflow, stat card stacking, topbar sizing.
   ─────────────────────────────────────────────────────────────── */

@media (max-width: 980px) {
  /* Class-based grids: collapse to 2 cols */
  .sct-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .sct-grid-3 { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }

  /* Container full width — section handles padding */
  .sct-container,
  .sct-container--narrow { width: auto !important; padding: 0; }

  /* Reduce section padding */
  .sct-section { padding: 56px 24px !important; }
  .sct-section--hero { padding: 90px 24px 56px !important; }
}

@media (max-width: 767px) {
  /* Class-based grids: single column */
  .sct-grid-2,
  .sct-grid-3,
  .sct-grid-4,
  .sct-grid-stats { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* Container full width */
  .sct-container,
  .sct-container--narrow { padding: 0; }

  /* Section padding */
  .sct-section { padding: 44px 20px !important; }
  .sct-section--hero { padding: 80px 20px 40px !important; }

  /* Heros with inline nudge padding */
  section[style*="padding:120px 40px"] { padding: 80px 20px 40px !important; }

  /* Stat cards: stack + full-width */
  .sct-stat-card { width: 100% !important; padding: 20px !important; }
  .sct-stat-box { padding: 18px !important; }

  /* Buttons: full-width for cleaner tap targets */
  .sct-btn-primary,
  .sct-btn-ghost { width: 100%; justify-content: center; text-align: center; }
  .sct-btn-group .sct-btn-primary,
  .sct-btn-group .sct-btn-ghost { max-width: 320px; }

  /* Breadcrumbs: tighter */
  .sct-breadcrumb { font-size: 11px !important; }

  /* Comparison + spec table tighter cells */
  .sct-comparison-table th,
  .sct-comparison-table td,
  .sct-spec-table td { padding: 10px 12px !important; font-size: 12px !important; }

  /* Product cards: tighter padding */
  .sct-product-card { padding: 22px !important; }

  /* Checkmark grid items */
  .sct-check-item { font-size: 13px; }

  /* FAQ items */
  .sct-faq-q { font-size: 14px !important; }
  .sct-faq-a { font-size: 13px !important; }

  /* Solutions tab bar scrollable on mobile */
  .sct-solutions-tabs {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none;
  }
  .sct-solutions-tabs::-webkit-scrollbar { display: none; }

  /* Footer heading slightly smaller */
  .sct-footer-heading { font-size: 13px !important; }
}

@media (max-width: 480px) {
  .sct-section { padding: 36px 16px !important; }
  .sct-section--hero { padding: 64px 16px 32px !important; }
  .sct-container,
  .sct-container--narrow { padding-left: 16px; padding-right: 16px; }
  .sct-product-card { padding: 18px !important; }
}

/* ── 25. TOPBAR MOBILE BEHAVIOR ─────────────────────────────────
   The topbar dropdown is hover-triggered on desktop. On touch,
   :hover can be sticky — we let the first tap reveal the menu
   and the second tap follow the link (iOS/Android default).
   Also shrink topbar height on small screens.
   ─────────────────────────────────────────────────────────────── */

@media (max-width: 980px) {
  .sct-topbar { height: 30px; font-size: 11px; padding: 0 20px; }
  .sct-header { top: 30px !important; padding: 18px 24px !important; }
  .sct-header.sct-header--hidden { transform: translateY(calc(-100% - 30px)) !important; }
}

@media (max-width: 480px) {
  .sct-topbar { padding: 0 14px; font-size: 11px; }
  .sct-topbar-contact span:first-child { letter-spacing: 0.2px; }
  .sct-topbar-dropdown { min-width: 260px; right: -10px; }
  .sct-header { padding: 14px 18px !important; }
}