/*
Theme Name: DSS Security v2
Theme URI: https://detectorsecurity.com.au
Author: DSS
Description: Detector Security Services – v2 Premium Redesign
Version: 2.1
*/

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Brand palette */
  --primary-dark:  #0F172A;   /* deep slate navy – dark sections, footers */
  --primary-blue:  #0284C7;   /* tech blue – primary CTAs & hover accents */
  --blue-dark:     #0369A1;   /* blue hover state */
  --security-green:#10B981;   /* active/monitoring signals only */
  --green-2:       #059669;
  --cyan:          #06D6A0;
  --alert-amber:   #F59E0B;   /* trust badges, urgency */

  /* Surfaces */
  --dark:          #0F172A;
  --dark-2:        #1E293B;
  --dark-3:        #1A3050;
  --card-bg:       #1E293B;
  --surface-light: #F8FAFC;
  --card-bg-light: #FFFFFF;
  --border-subtle: #E2E8F0;

  /* Text */
  --white:         #F8FAFC;
  --off-white:     #E2E8F0;
  --grey:          #64748B;
  --grey-light:    #94A3B8;
  --body-dark:     #334155;   /* body text on light sections */

  /* Misc */
  --border:        rgba(255,255,255,0.08);
  --glow-blue:     rgba(2,132,199,0.25);
  --glow-green:    rgba(16,185,129,0.25);
  --radius:        16px;
  --transition:    0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: var(--white);
  background: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}
h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
h3, h4 {
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-weight: 600;
  font-size: 0.9rem; cursor: pointer; border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.1); opacity: 0; transition: opacity 0.2s; }
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }

/* Primary: Blue — main CTAs */
.btn-primary {
  background: var(--primary-blue); color: #fff;
  box-shadow: 0 4px 20px var(--glow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 30px rgba(2,132,199,0.45);
}

/* Green — monitoring / live status CTAs only */
.btn-green {
  background: var(--security-green); color: #fff;
  box-shadow: 0 4px 20px var(--glow-green);
}
.btn-green:hover { box-shadow: 0 8px 30px rgba(16,185,129,0.5); }

.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--primary-blue); color: var(--primary-blue); }
.btn-dark { background: var(--dark-3); color: var(--white); border: 1.5px solid var(--border); }
.btn-dark:hover { border-color: var(--primary-blue); }
.btn-secondary { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { border-color: var(--primary-blue); }

/* ── NAVBAR ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.scrolled {
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: 1280px; margin: 0 auto; padding: 0 32px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: rgba(255,255,255,0.78); font-size: 0.875rem; font-weight: 500;
  padding: 8px 14px; display: block; transition: color var(--transition);
  white-space: nowrap; position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: 3px; left: 14px; right: 14px;
  height: 2px; background: var(--primary-blue);
  transform: scaleX(0); transform-origin: center; transition: transform 0.25s ease;
}
.nav-links > li > a:not(.nav-cta):hover { color: #fff; }
.nav-links > li > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 8px; background: transparent;
  min-width: 300px; z-index: 100;
}
.dropdown-menu-inner {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08); border-top: 2px solid var(--primary-blue);
  border-radius: 0 0 14px 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  overflow: hidden;
}
.nav-links > li:hover .dropdown-menu { display: block; }
.dropdown-menu-inner a {
  display: block; padding: 11px 20px; color: var(--grey-light);
  font-size: 0.85rem; transition: background var(--transition), color var(--transition), padding-left var(--transition);
  border-bottom: 1px solid var(--border);
}
.dropdown-menu-inner a:hover { background: var(--dark-3); color: var(--primary-blue); padding-left: 26px; }
.nav-cta {
  background: var(--primary-blue) !important; color: #fff !important;
  padding: 10px 20px !important; border-radius: 10px !important; font-weight: 600 !important;
  box-shadow: 0 4px 16px var(--glow-blue);
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(2,132,199,0.5) !important;
}
.nav-cta::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: #fff; display: block; transition: all 0.3s; }
.mobile-nav { display: none; background: var(--dark-2); border-top: 1px solid var(--border); padding: 12px 0; }
.mobile-nav a { display: block; padding: 11px 24px; color: var(--grey-light); font-size: 0.9rem; border-bottom: 1px solid var(--border); transition: color var(--transition), background var(--transition); }
.mobile-nav a:hover { color: var(--primary-blue); background: rgba(2,132,199,0.06); }
.mobile-nav.open { display: block; }

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

/* subtle grid overlay for tech feel */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  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: 48px 48px;
  pointer-events: none;
}

.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.hero-bg.loaded { transform: scale(1) translateY(0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.96) 0%, rgba(15,23,42,0.78) 55%, rgba(2,132,199,0.05) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 820px; padding: 136px 28px 88px;
  margin-left: max(28px, calc((100vw - 1200px) / 2));
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
  color: #4ADE80; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem); font-weight: 800;
  line-height: 1.1; color: #fff; margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.hero h1 .highlight { color: var(--security-green); }
.hero-tagline {
  font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; line-height: 1.7;
}
.hero-body {
  font-size: 0.96rem; color: rgba(255,255,255,0.48); margin-bottom: 36px;
  max-width: 560px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px; flex-wrap: wrap;
}
.hero-stat { flex: 1; min-width: 110px; padding-right: 28px; }
.hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); margin-right: 28px; }
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.9rem; font-weight: 800; color: var(--primary-blue);
  line-height: 1; margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-dark   { background: var(--dark); }
.section-dark-2 { background: var(--dark-2); }
.section-light  { background: var(--surface-light); color: var(--primary-dark); }
.section-white  { background: #fff; color: var(--primary-dark); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--grey-light); margin-bottom: 52px;
  max-width: 600px; line-height: 1.7;
}
.section-light .section-subtitle, .section-white .section-subtitle { color: var(--grey); }
.text-center { text-align: center; }
.text-center .section-subtitle,
.section-subtitle.text-center { margin-left: auto; margin-right: auto; }

/* Light/white section base text */
.section-light p, .section-white p { color: var(--body-dark); }

/* ── SPLIT SECTIONS ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image-wrap { position: relative; overflow: hidden; min-height: 400px; }
.split-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.split-image-wrap:hover img { transform: scale(1.04); }
.split-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 56px; background: var(--dark-2);
}
.section-light .split-content, .section-white .split-content { background: #fff; color: var(--primary-dark); }
.split-content .section-title { margin-bottom: 18px; }
.split-content p { font-size: 0.95rem; line-height: 1.8; color: var(--grey-light); margin-bottom: 10px; }
.section-light .split-content p { color: var(--body-dark); }
.split-list { list-style: none; margin: 18px 0 30px; }
.split-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; font-size: 0.9rem; color: var(--grey-light);
  border-bottom: 1px solid var(--border);
}
.split-list li::before { content: '✓'; color: var(--security-green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.section-light .split-list li { color: var(--body-dark); border-bottom-color: var(--border-subtle); }

/* ── CARDS ── */
.cards-grid   { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); gap: 24px; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--cyan));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(2,132,199,0.2);
  border-color: rgba(2,132,199,0.3);
}
.card:hover::before { transform: scaleX(1); }

/* Cards on light / white sections */
.section-light .card, .section-white .card {
  background: var(--card-bg-light);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 16px rgba(15,23,42,0.06);
}
.section-light .card:hover, .section-white .card:hover {
  box-shadow: 0 20px 40px rgba(2,132,199,0.1), 0 0 0 1px rgba(2,132,199,0.2);
  border-color: var(--primary-blue);
}
.card-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.card-img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 20px; }
.card h3 { font-size: 1.05rem; margin-bottom: 10px; color: #fff; }
.section-light .card h3, .section-white .card h3 { color: var(--primary-dark); }
.card p { font-size: 0.87rem; color: var(--grey-light); line-height: 1.72; }
.section-light .card p, .section-white .card p { color: var(--body-dark); }
.card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  color: var(--primary-blue); font-size: 0.87rem; font-weight: 600;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 0 24px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem; font-weight: 800; color: var(--primary-blue);
  line-height: 1; margin-bottom: 8px; display: block;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.75rem; color: var(--grey-light); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.why-item {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 26px 24px 20px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative; overflow: hidden;
}
.why-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--primary-blue);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0); transform-origin: top; transition: transform 0.3s ease;
}
.why-item:hover { transform: translateY(-4px); border-color: rgba(2,132,199,0.3); }
.why-item:hover::before { transform: scaleY(1); }
.why-item strong { display: block; font-size: 0.92rem; color: #fff; margin-bottom: 6px; font-weight: 600; }
.why-item p { font-size: 0.84rem; color: var(--grey-light); line-height: 1.65; margin-top: 4px; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; position: relative;
}
.testimonial::before {
  content: '"'; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 5rem;
  color: var(--primary-blue); opacity: 0.18; position: absolute; top: 8px; left: 24px; line-height: 1;
}
.testimonial p { font-size: 0.93rem; color: var(--grey-light); line-height: 1.78; font-style: italic; padding-top: 28px; }
.testimonial-name { font-size: 0.82rem; font-weight: 600; color: var(--primary-blue); margin-top: 18px; font-style: normal; }
.testimonial-stars { color: var(--alert-amber); font-size: 0.9rem; margin-bottom: 4px; }

/* ── TRUST BADGES ── */
.trust-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin-top: 40px; }
.trust-badge {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 18px; text-align: center; font-size: 0.83rem; font-weight: 600;
  color: var(--grey-light); transition: border-color var(--transition), color var(--transition);
}
.trust-badge:hover { border-color: var(--primary-blue); color: var(--primary-blue); }

/* ── SERVICES INTRO ── */
.services-intro { padding: 56px 28px; background: var(--dark-3); border-bottom: 1px solid var(--border); }
.services-intro-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.services-intro-inner h2 { font-size: 1.6rem; margin-bottom: 16px; }
.services-intro-inner p { font-size: 0.95rem; color: var(--grey-light); line-height: 1.8; margin-bottom: 12px; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative; min-height: 380px; display: flex; align-items: center;
  overflow: hidden; background: var(--primary-dark); margin-top: 76px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.5) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 72px 28px; width: 100%; }
.page-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: #fff;
  margin-bottom: 14px; letter-spacing: -0.03em;
}
.page-hero-content p { color: rgba(255,255,255,0.58); font-size: 1.05rem; line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-2) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 28px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(2,132,199,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 14px; color: #fff; letter-spacing: -0.02em; }
.cta-banner p { font-size: 1rem; margin-bottom: 36px; color: var(--grey-light); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.contact-info { background: var(--dark-2); padding: 64px 56px; border-right: 1px solid var(--border); }
.contact-info h2 { font-size: 1.8rem; margin-bottom: 36px; color: #fff; letter-spacing: -0.02em; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-item-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary-blue); margin-bottom: 4px; font-family: 'Plus Jakarta Sans', sans-serif; }
.contact-item p, .contact-item a { font-size: 0.93rem; color: var(--grey-light); }
.contact-item a:hover { color: var(--primary-blue); }
.business-hours { margin-top: 36px; }
.business-hours h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary-blue); margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--grey-light); }
.contact-form-box { background: var(--dark-3); padding: 64px 56px; }
.contact-form-box h2 { font-size: 1.8rem; margin-bottom: 32px; color: #fff; letter-spacing: -0.02em; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--grey-light); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px; background: var(--dark-2); border: 1px solid var(--border);
  border-radius: 10px; color: #fff; font-size: 0.9rem; font-family: 'Inter', sans-serif;
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(2,132,199,0.12); }
.form-group textarea { height: 130px; resize: vertical; }

/* ── ABOUT ── */
.team-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; margin-bottom: 24px; position: relative; overflow: hidden;
  transition: border-color var(--transition);
}
.team-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--primary-blue), var(--cyan)); }
.team-card:hover { border-color: rgba(2,132,199,0.3); }
.team-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 14px; }
.team-card p { font-size: 0.9rem; color: var(--grey-light); line-height: 1.75; margin-bottom: 10px; }

/* ── BLOG/FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; background: var(--card-bg); }
.faq-question { padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.95rem; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; }
.faq-question:hover { color: var(--primary-blue); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; color: var(--grey-light); font-size: 0.9rem; line-height: 1.78; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-chevron { transition: transform 0.3s; font-size: 1rem; color: var(--primary-blue); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* FAQ + blog on light bg */
.section-light .faq-item { background: var(--card-bg-light); border-color: var(--border-subtle); }
.section-light .faq-question { color: var(--primary-dark); }
.section-light .faq-answer { color: var(--body-dark); }

.blog-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.28s ease, box-shadow 0.28s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.blog-card-body p { font-size: 0.85rem; color: var(--grey-light); line-height: 1.6; }
.section-light .blog-card { background: var(--card-bg-light); border-color: var(--border-subtle); }
.section-light .blog-card-body h3 { color: var(--primary-dark); }
.section-light .blog-card-body p { color: var(--body-dark); }

/* Blog/FAQ page tabs */
.blog-faq-tabs { display: flex; gap: 8px; margin-bottom: 36px; }
.bftab {
  padding: 11px 32px; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  color: var(--grey); border: 1.5px solid var(--border-subtle); border-radius: 10px;
  transition: all 0.2s; background: var(--card-bg-light); font-family: 'Plus Jakarta Sans', sans-serif;
}
.bftab.active { color: #fff; background: var(--primary-blue); border-color: var(--primary-blue); }

/* Blog grid cards */
.bf-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bf-blog-card {
  background: var(--card-bg-light); border: 1px solid var(--border-subtle); border-radius: 14px;
  padding: 28px; display: flex; gap: 20px; align-items: flex-start;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.bf-blog-card:hover { box-shadow: 0 12px 36px rgba(2,132,199,0.1); border-color: var(--primary-blue); }
.bf-blog-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.bf-blog-body { flex: 1; }
.bf-blog-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--primary-blue); background: rgba(2,132,199,0.08);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.bf-blog-body h3 { font-size: 1rem; color: var(--primary-dark); margin-bottom: 8px; font-weight: 700; line-height: 1.4; }
.bf-blog-body p { font-size: 0.875rem; color: var(--body-dark); line-height: 1.65; margin-bottom: 14px; }
.bf-blog-read { font-size: 0.85rem; font-weight: 600; color: var(--primary-blue); }
@media (max-width: 640px) { .bf-blog-grid { grid-template-columns: 1fr; } }

/* legacy blog-tabs */
.blog-tabs { display: flex; gap: 8px; margin-bottom: 40px; }
.blog-tab {
  padding: 10px 28px; cursor: pointer; font-weight: 600; font-size: 0.9rem;
  color: var(--grey); border: 1.5px solid var(--border-subtle); border-radius: 8px;
  transition: all 0.2s; background: var(--card-bg-light);
}
.blog-tab.active { color: #fff; background: var(--primary-blue); border-color: var(--primary-blue); }

/* ── PREMIUM TABLE ── */
.premium-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; border: 1px solid var(--border-subtle); border-radius: 14px; overflow: hidden; }
.premium-table th { background: var(--primary-blue); color: #fff; padding: 14px 20px; text-align: left; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.premium-table td { padding: 13px 20px; border-bottom: 1px solid var(--border-subtle); color: var(--body-dark); vertical-align: top; }
.premium-table tr:nth-child(even) td { background: #F8FAFC; }
.premium-table tr:last-child td { border-bottom: none; }
.premium-table td:first-child { font-weight: 600; color: var(--primary-dark); }

/* 5-card centering: top row 3, bottom row 2 centered */
.cards-grid-top3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.cards-grid-bot2 { display: flex; justify-content: center; gap: 24px; }
.cards-grid-bot2 .card { width: calc(33.333% - 12px); max-width: 380px; flex: 0 1 calc(33.333% - 12px); }
@media (max-width: 1024px) {
  .cards-grid-top3 { grid-template-columns: repeat(2,1fr); }
  .cards-grid-bot2 { flex-direction: column; align-items: stretch; }
  .cards-grid-bot2 .card { width: 100%; max-width: 100%; }
}
@media (max-width: 640px) { .cards-grid-top3 { grid-template-columns: 1fr; } }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; text-align: center; transition: transform 0.28s ease;
}
.pricing-card.featured { border-color: var(--primary-blue); box-shadow: 0 0 0 1px var(--primary-blue), 0 20px 50px rgba(2,132,199,0.12); }
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: #fff; }
.pricing-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--primary-blue); margin: 20px 0; letter-spacing: -0.02em; }
.pricing-price span { font-size: 1rem; color: var(--grey-light); }
.pricing-features { list-style: none; text-align: left; margin: 24px 0 32px; }
.pricing-features li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--grey-light); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--security-green); font-weight: 700; }

/* ── FOOTER ── */
.site-footer { background: #060d18; border-top: 1px solid var(--border); padding: 80px 28px 32px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 48px; max-width: 1200px; margin: 0 auto 60px; }
.footer-col h3 {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary-blue); margin-bottom: 20px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
}
.footer-col p { font-size: 0.87rem; color: var(--grey); line-height: 1.75; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: var(--grey); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--primary-blue); }
.footer-col a { color: var(--grey); transition: color var(--transition); }
.footer-col a:hover { color: var(--primary-blue); }
.footer-col .btn-primary { color: #fff; }
.footer-col .btn-primary:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; text-align: center; font-size: 0.82rem; color: var(--grey); max-width: 1200px; margin: 0 auto; }

/* ── LIVE DOT (green — monitoring signals only) ── */
@keyframes pulse-ring {
  0%   { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.live-dot {
  display: inline-block; width: 9px; height: 9px; background: var(--security-green);
  border-radius: 50%; animation: pulse-ring 1.8s ease-in-out infinite;
  vertical-align: middle; margin-right: 6px; flex-shrink: 0;
}
.live-dot-wrap { display: inline-flex; align-items: center; gap: 4px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge   { animation: fadeUp 0.55s ease both; animation-delay: 0.1s; }
.hero h1      { animation: fadeUp 0.65s ease both; animation-delay: 0.28s; }
.hero-tagline { animation: fadeUp 0.65s ease both; animation-delay: 0.42s; }
.hero-body    { animation: fadeUp 0.65s ease both; animation-delay: 0.55s; }
.hero-actions { animation: fadeUp 0.65s ease both; animation-delay: 0.68s; }
.hero-stats   { animation: fadeUp 0.65s ease both; animation-delay: 0.82s; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

.word { display: inline-block; overflow: hidden; }
.word-inner { display: inline-block; transform: translateY(110%); transition: transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.word-inner.visible { transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; }
  .split-image-wrap { min-height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .cards-grid-3 { grid-template-columns: repeat(2,1fr); }
  .hero-content { margin-left: 0; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 64px 0; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 108px 24px 64px; }
  .hero-stat:not(:last-child) { border-right: none; margin-right: 0; padding-right: 0; }
  .cards-grid-2, .cards-grid-3 { grid-template-columns: 1fr; }
  .split-content { padding: 40px 28px; }
  .contact-info, .contact-form-box { padding: 48px 28px; }
  .two-col-responsive { grid-template-columns: 1fr !important; }
  .page-hero-content h1 { font-size: 1.8rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 24px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .split-content { padding: 32px 24px; }
  .page-hero-content { padding: 56px 24px; }
}

/* ═══════════════════════════════════════════════════
   DSS v2.2 — Rich layout components & color variety
   ═══════════════════════════════════════════════════ */

/* ── EXTRA COLOR TOKENS ── */
:root {
  --purple:      #7C3AED;
  --purple-dark: #6D28D9;
  --amber:       #F59E0B;
  --amber-dark:  #D97706;
  --emerald:     #10B981;
  --teal:        #0D9488;
}

/* ── CENTERED ODD-COUNT CARD GRID ── */
.cards-grid-centered {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
}
.cards-grid-centered > .card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 250px; max-width: 380px;
}
@media (max-width: 1024px) {
  .cards-grid-centered > .card { flex: 0 1 calc(50% - 12px); max-width: none; }
}
@media (max-width: 600px) {
  .cards-grid-centered > .card { flex: 0 1 100%; }
}

/* ── SECTION COLOUR VARIANTS ── */
.section-amber  { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); color: #fff; }
.section-amber  .section-title, .section-amber  .section-subtitle { color: #fff; }
.section-green  { background: linear-gradient(135deg, #10B981 0%, #059669 100%); color: #fff; }
.section-green  .section-title, .section-green  .section-subtitle { color: #fff; }
.section-purple { background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%); color: #fff; }
.section-purple .section-title, .section-purple .section-subtitle { color: #fff; }
.section-teal   { background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%); color: #fff; }
.section-teal   .section-title, .section-teal   .section-subtitle { color: #fff; }
.section-slate  { background: #1E293B; }
.section-navy   { background: #0F172A; }

/* ── COLOURED CARD VARIANTS ── */
.card-blue   { background: linear-gradient(135deg,#0284C7,#0369A1) !important; border:none !important; color:#fff !important; }
.card-green  { background: linear-gradient(135deg,#10B981,#059669) !important; border:none !important; color:#fff !important; }
.card-amber  { background: linear-gradient(135deg,#F59E0B,#D97706) !important; border:none !important; color:#fff !important; }
.card-purple { background: linear-gradient(135deg,#7C3AED,#6D28D9) !important; border:none !important; color:#fff !important; }
.card-teal   { background: linear-gradient(135deg,#0D9488,#0F766E) !important; border:none !important; color:#fff !important; }
.card-blue h3,.card-green h3,.card-amber h3,.card-purple h3,.card-teal h3 { color: #fff !important; }
.card-blue p,.card-green p,.card-amber p,.card-purple p,.card-teal p { color: rgba(255,255,255,0.85) !important; }
.card-blue .card-link,.card-green .card-link,.card-purple .card-link,.card-teal .card-link { color: rgba(255,255,255,0.9) !important; }

/* ── ICON PILL BACKGROUNDS ── */
.icon-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; font-size: 1.4rem;
  margin-bottom: 18px; flex-shrink: 0;
}
.icon-pill-blue   { background: rgba(2,132,199,0.12); }
.icon-pill-green  { background: rgba(16,185,129,0.12); }
.icon-pill-amber  { background: rgba(245,158,11,0.12); }
.icon-pill-purple { background: rgba(124,58,237,0.12); }
.icon-pill-teal   { background: rgba(13,148,136,0.12); }

/* coloured icon pills on dark sections */
.section-dark   .icon-pill-blue  , .section-dark-2 .icon-pill-blue   { background: rgba(2,132,199,0.18); }
.section-dark   .icon-pill-green , .section-dark-2 .icon-pill-green  { background: rgba(16,185,129,0.18); }
.section-dark   .icon-pill-amber , .section-dark-2 .icon-pill-amber  { background: rgba(245,158,11,0.18); }
.section-dark   .icon-pill-purple, .section-dark-2 .icon-pill-purple { background: rgba(124,58,237,0.18); }
.section-dark   .icon-pill-teal  , .section-dark-2 .icon-pill-teal   { background: rgba(13,148,136,0.18); }

/* ── PROCESS STEPS (horizontal) ── */
.step-flow {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0; position: relative; padding-top: 12px;
}
.step-flow::before {
  content: ''; position: absolute; top: 48px; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--security-green) 100%);
  z-index: 0;
}
.step-item { text-align: center; padding: 0 16px 32px; position: relative; z-index: 1; }
.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; margin: 0 auto 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.06);
}
.step-number.blue   { background: var(--primary-blue);  color: #fff; }
.step-number.green  { background: var(--security-green); color: #fff; }
.step-number.amber  { background: var(--amber);          color: #fff; }
.step-number.purple { background: var(--purple);         color: #fff; }
.step-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.step-item p  { font-size: 0.83rem; color: var(--grey-light); line-height: 1.6; }
.section-light .step-item p, .section-white .step-item p { color: var(--body-dark); }
.section-light .step-item h4, .section-white .step-item h4 { color: var(--primary-dark); }
@media (max-width: 768px) {
  .step-flow::before { display: none; }
  .step-flow { gap: 16px; }
}

/* ── STAT HIGHLIGHT ROW ── */
.stat-highlight-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px; border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.stat-highlight-item { padding: 28px 20px; text-align: center; background: var(--card-bg); }
.section-light  .stat-highlight-item { background: #fff; }
.section-white  .stat-highlight-item { background: #f8fafc; }
.stat-h-num  { font-size: 2rem; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; margin-bottom: 6px; display: block; letter-spacing: -0.02em; }
.stat-h-label{ font-size: 0.75rem; color: var(--grey-light); text-transform: uppercase; letter-spacing: 0.1em; }
.section-light  .stat-h-label, .section-white .stat-h-label { color: var(--grey); }
.num-blue   { color: var(--primary-blue); }
.num-green  { color: var(--security-green); }
.num-amber  { color: var(--amber); }
.num-purple { color: var(--purple); }

/* ── CALLOUT / QUOTE BLOCKS ── */
.callout {
  border-left: 4px solid var(--primary-blue);
  background: rgba(2,132,199,0.06); padding: 18px 22px;
  border-radius: 0 12px 12px 0; margin: 24px 0;
}
.callout p { font-size: 1rem; font-weight: 600; color: var(--primary-dark); line-height: 1.6; }
.callout.amber  { border-left-color: var(--amber);          background: rgba(245,158,11,0.06); }
.callout.green  { border-left-color: var(--security-green); background: rgba(16,185,129,0.06); }
.callout.purple { border-left-color: var(--purple);         background: rgba(124,58,237,0.06); }
.section-dark .callout p, .section-dark-2 .callout p, .section-slate .callout p { color: #fff; }

/* ── PILL / TAG COMPONENTS ── */
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.pill { padding: 7px 18px; border-radius: 999px; font-size: 0.84rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; display: inline-block; }
.pill-blue   { background: rgba(2,132,199,0.10);   color: var(--primary-blue);   border: 1px solid rgba(2,132,199,0.2); }
.pill-green  { background: rgba(16,185,129,0.10);  color: #059669;               border: 1px solid rgba(16,185,129,0.2); }
.pill-amber  { background: rgba(245,158,11,0.10);  color: #B45309;               border: 1px solid rgba(245,158,11,0.2); }
.pill-purple { background: rgba(124,58,237,0.10);  color: var(--purple);         border: 1px solid rgba(124,58,237,0.2); }
.pill-grey   { background: #F1F5F9; color: #475569; border: 1px solid #E2E8F0; }
.pill-dark   { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.12); }

/* ── FEATURE CHECK LIST ── */
.feature-list { list-style: none; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem; line-height: 1.6;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .fcheck {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; margin-top: 1px; color: #fff;
}
.fcheck-blue   { background: var(--primary-blue); }
.fcheck-green  { background: var(--security-green); }
.fcheck-amber  { background: var(--amber); }
.fcheck-purple { background: var(--purple); }
.feature-list .fcheck + span strong { color: var(--primary-dark); }
.feature-list .fcheck + span { color: var(--body-dark); }

/* dark section feature list */
.section-dark .feature-list li,
.section-dark-2 .feature-list li,
.section-slate .feature-list li { border-bottom-color: var(--border); }
.section-dark .feature-list .fcheck + span strong,
.section-dark-2 .feature-list .fcheck + span strong { color: #fff; }
.section-dark .feature-list .fcheck + span,
.section-dark-2 .feature-list .fcheck + span { color: var(--grey-light); }

/* ── TWO-COL FACT GRID ── */
.two-col-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.two-col-facts li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 16px 11px 0; border-bottom: 1px solid var(--border-subtle); font-size: 0.9rem; color: var(--body-dark); }
.two-col-facts li:last-child, .two-col-facts li:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.two-col-facts .fcheck { flex-shrink: 0; margin-top: 2px; }
.section-dark .two-col-facts li, .section-dark-2 .two-col-facts li { border-bottom-color: var(--border); color: var(--grey-light); }
@media (max-width: 640px) { .two-col-facts { grid-template-columns: 1fr; } }

/* ── CASE STUDY / CLIENT EXAMPLE CARDS ── */
.case-card {
  background: var(--card-bg-light); border: 1px solid var(--border-subtle);
  border-radius: 14px; padding: 24px 28px; position: relative; overflow: hidden;
}
.case-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
}
.case-card.cc-blue::before   { background: var(--primary-blue); }
.case-card.cc-green::before  { background: var(--security-green); }
.case-card.cc-amber::before  { background: var(--amber); }
.case-card.cc-purple::before { background: var(--purple); }
.case-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.case-card p  { font-size: 0.88rem; color: var(--body-dark); line-height: 1.65; }
.case-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.case-tag.ct-blue   { color: var(--primary-blue);   background: rgba(2,132,199,0.1); }
.case-tag.ct-green  { color: #059669;                background: rgba(16,185,129,0.1); }
.case-tag.ct-amber  { color: #B45309;                background: rgba(245,158,11,0.1); }
.case-tag.ct-purple { color: var(--purple);          background: rgba(124,58,237,0.1); }

/* ── ACCENT DIVIDER ── */
.accent-divider {
  height: 4px; width: 60px; border-radius: 2px; margin: 0 0 24px;
  background: linear-gradient(90deg, var(--primary-blue), var(--security-green));
}
.accent-divider.center { margin: 0 auto 24px; }
.accent-divider.amber  { background: linear-gradient(90deg, var(--amber), var(--amber-dark)); }
.accent-divider.purple { background: linear-gradient(90deg, var(--purple), var(--cyan)); }

/* ── PAGE-HERO ENHANCEMENTS ── */
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.page-hero-badge.badge-green { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.35); color: #4ADE80; }
.page-hero-badge.badge-amber { background: rgba(245,158,11,0.15); border-color: rgba(245,158,11,0.35); color: #FCD34D; }

/* Taller page heroes */
.page-hero-tall { min-height: 480px; }
.page-hero-stats {
  display: flex; gap: 32px; margin-top: 28px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap;
}
.page-hero-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--primary-blue); line-height: 1; }
.page-hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ── ICON GRID (compact, icon-forward) ── */
.icon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.icon-grid-item { display: flex; gap: 16px; align-items: flex-start; }
.icon-grid-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.icon-grid-icon.ig-blue   { background: rgba(2,132,199,0.12);  }
.icon-grid-icon.ig-green  { background: rgba(16,185,129,0.12); }
.icon-grid-icon.ig-amber  { background: rgba(245,158,11,0.12); }
.icon-grid-icon.ig-purple { background: rgba(124,58,237,0.12); }
.icon-grid-icon.ig-teal   { background: rgba(13,148,136,0.12); }
.icon-grid-body h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--primary-dark); }
.icon-grid-body p  { font-size: 0.82rem; color: var(--body-dark); line-height: 1.55; }
.section-dark   .icon-grid-body h4,
.section-dark-2 .icon-grid-body h4 { color: #fff; }
.section-dark   .icon-grid-body p,
.section-dark-2 .icon-grid-body p  { color: var(--grey-light); }

/* ── BRAND LOGOS ROW ── */
.brand-row { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-chip {
  padding: 8px 20px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: #F1F5F9; color: #334155; border: 1px solid #E2E8F0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.brand-chip:hover { background: rgba(2,132,199,0.08); color: var(--primary-blue); border-color: rgba(2,132,199,0.25); }
.section-dark .brand-chip, .section-dark-2 .brand-chip { background: rgba(255,255,255,0.06); color: var(--grey-light); border-color: rgba(255,255,255,0.1); }

/* ── RESPONSIVE HELPERS ── */
@media (max-width: 768px) {
  .icon-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-stats { gap: 20px; }
  .stat-highlight-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .icon-grid { grid-template-columns: 1fr; }
  .two-col-facts { grid-template-columns: 1fr; }
}

/* ─── TRUST BADGES ROW (moved from inline style to class) ─── */
.trust-badges-row {
  display: flex; flex-wrap: nowrap; gap: 10px; justify-content: center; margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   DSS v2.3 — COMPREHENSIVE RESPONSIVE LAYER
   1024px (tablet) · 768px (mobile-wide) · 480px (phone) · 390px (mini)
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1024px TABLET ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { margin-left: 0; }

  /* Stats: 5-col → 3-col */
  .stats-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(5) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(5):last-child { border-right: none; }

  /* Cards */
  .cards-grid-2 { grid-template-columns: 1fr; }

  /* Nav */
  .nav-inner { height: 68px; }
}

/* ─── 768px MOBILE / TABLET ──────────────────────────────── */
@media (max-width: 768px) {
  /* ─ GLOBAL ─ */
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }

  /* ─ NAV ─ */
  .nav-inner { height: 62px; padding: 0 18px; }
  .nav-logo img { height: 38px; }
  .mobile-nav.open { max-height: 80vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  /* Hamburger animation when open */
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─ HERO ─ */
  .hero { min-height: 100svh; }
  .hero-content { padding: 96px 20px 60px; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .hero-tagline { font-size: 0.95rem; }
  .hero-body { font-size: 0.9rem; max-width: 100%; }
  .hero-actions { flex-wrap: wrap; gap: 10px; }

  /* ─ PAGE HERO ─ */
  .page-hero { min-height: 240px; }
  .page-hero-content { padding: 52px 20px 36px; }
  .page-hero-content h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .page-hero-stats { gap: 14px; flex-wrap: wrap; margin-top: 18px; padding-top: 18px; }
  .page-hero-stat-num { font-size: 1.3rem; }

  /* ─ STATS BAR: 5-col → 2-col grid ─ */
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-item { padding: 20px 12px; border-right: none !important; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border) !important; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .stat-num { font-size: 2.2rem; }

  /* ─ CARDS ─ */
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-2, .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-centered > .card { flex: 0 1 calc(50% - 12px); }

  /* ─ SPLIT SECTIONS ─ */
  .split-section { grid-template-columns: 1fr; }
  .split-image-wrap { min-height: 240px; }
  .split-content { padding: 36px 24px; }

  /* ─ INLINE 2-COL GRIDS (sub-pages) — attribute selectors ─ */
  .container > div[style*="grid-template-columns:1fr 1fr"],
  .container > div[style*="grid-template-columns:1.1fr 0.9fr"],
  .container > div[style*="grid-template-columns:1.1fr"],
  .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* ─ INLINE 3-COL CABLE CARDS (communications page) ─ */
  .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ─ SHARED SUB-PAGE COMPONENTS ─ */
  /* 4-col process steps → 2-col */
  .svc-process-row { grid-template-columns: repeat(2, 1fr) !important; }
  .svc-process-step { border-right: none !important; border-bottom: 1px solid #E2E8F0; }
  .svc-process-step:nth-child(odd) { border-right: 1px solid #E2E8F0 !important; }
  .svc-process-step:nth-child(n+3) { border-top: 1px solid #E2E8F0; }
  .svc-process-step:last-child { border-bottom: none; }
  /* Feature grid → single col */
  .tcf-grid { grid-template-columns: 1fr !important; }

  /* ─ CONTACT ─ */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-info, .contact-form-box { padding: 40px 24px; }

  /* ─ CTA BANNER ─ */
  .cta-banner { padding: 56px 20px; }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* ─ TRUST BADGES: 2-per-row ─ */
  .trust-badges-row { flex-wrap: wrap !important; gap: 8px !important; }
  .trust-badges-row > div { flex: 0 0 calc(50% - 4px) !important; white-space: normal !important; min-width: 0 !important; }

  /* ─ BLOG/FAQ ─ */
  .bf-blog-card { flex-direction: column; }
  .blog-faq-tabs { flex-wrap: wrap; gap: 6px; }
  .bftab { padding: 9px 18px; font-size: 0.85rem; }

  /* ─ STEP FLOW ─ */
  .step-flow { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .step-flow::before { display: none; }

  /* ─ ICON GRID ─ */
  .icon-grid { grid-template-columns: 1fr 1fr; }

  /* ─ FOOTER ─ */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer { padding: 56px 20px 28px; }
}

/* ─── 480px SMALL PHONE ───────────────────────────────────── */
@media (max-width: 480px) {
  /* ─ GLOBAL ─ */
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }

  /* ─ HERO ─ */
  .hero-content { padding: 88px 16px 52px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; }

  /* ─ PAGE HERO ─ */
  .page-hero-content { padding: 44px 16px 32px; }
  .page-hero-content h1 { font-size: 1.5rem; }
  .page-hero-stats { flex-wrap: wrap; gap: 12px; }

  /* ─ STATS BAR ─ */
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .stat-num { font-size: 2rem; }

  /* ─ CARDS ─ */
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-centered > .card { flex: 0 0 100%; }

  /* ─ STEP FLOW: single col ─ */
  .step-flow { grid-template-columns: 1fr; }

  /* ─ ICON GRID: single col ─ */
  .icon-grid { grid-template-columns: 1fr; }

  /* ─ TRUST BADGES: full-width ─ */
  .trust-badges-row > div { flex: 0 0 100% !important; }

  /* ─ PROCESS ROW: single col ─ */
  .svc-process-row { grid-template-columns: 1fr !important; }
  .svc-process-step { border-right: none !important; }
  .svc-process-step:nth-child(odd) { border-right: none !important; }
  .svc-process-step:nth-child(n+3) { border-top: 1px solid #E2E8F0; }

  /* ─ 3-COL CABLE CARDS: single col ─ */
  .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* ─ FOOTER: single col ─ */
  .footer-grid { grid-template-columns: 1fr; }

  /* ─ CTA ─ */
  .cta-banner { padding: 44px 16px; }

  /* ─ NAV ─ */
  .nav-inner { height: 58px; }
  .nav-logo img { height: 34px; }
}

/* ─── 390px MINI PHONE ────────────────────────────────────── */
@media (max-width: 390px) {
  .hero h1 { font-size: 1.65rem; }
  .stats-grid { grid-template-columns: 1fr !important; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 14px; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.revealed { transition: none !important; opacity: 1 !important; transform: none !important; }
  .word-inner { transition: none !important; transform: none !important; }
  .hero-bg { transition: none !important; transform: scale(1) !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
