/* ══════════════════════════════════════════════════════════
   CyberShield — Layout CSS  (header + footer + global)
   Loaded via wp_enqueue_style, NOT inside a block template.
   This avoids wpautop corruption of inline <style> tags.
══════════════════════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --cs-bg:      #0a0e1a;
  --cs-surface: #0d1525;
  --cs-cyan:    #00d4ff;
  --cs-purple:  #7b2fff;
  --cs-nav-h:   72px;
  --cs-text:    #e2e8f0;
  --cs-muted:   #64748b;
  --cs-border:  rgba(255,255,255,.07);
}

/* ── GLOBAL ── */
html, body {
  background: var(--cs-bg) !important;
  color: var(--cs-text) !important;
  margin: 0 !important;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding-top: var(--cs-nav-h) !important;
}
/* Compensate for WP admin bar (32px desktop, 46px mobile) */
.admin-bar body { padding-top: calc(var(--cs-nav-h) + 32px) !important; }
@media screen and (max-width: 782px) {
  .admin-bar body { padding-top: calc(var(--cs-nav-h) + 46px) !important; }
}
::selection { background: rgba(0,212,255,.22); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #060912; }
::-webkit-scrollbar-thumb { background: #1e3a5f; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cs-cyan); }

/* ── ELEMENTOR CONTENT RESET ── */
.elementor-page .wp-block-post-content,
.elementor-page main.wp-block-group,
.elementor-template-canvas main {
  margin-top: 0 !important;
  padding: 0 !important;
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.cs-header *, .cs-header *::before, .cs-header *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.cs-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99990;
  height: var(--cs-nav-h);
  background: rgba(10,14,26,.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .35s, box-shadow .35s, transform .3s;
  font-family: 'Inter', sans-serif;
}
.admin-bar .cs-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .cs-header { top: 46px; }
}
.cs-header.scrolled {
  background: rgba(8,12,22,.97);
  box-shadow: 0 4px 40px rgba(0,0,0,.55);
}
/* Scroll-progress bar */
.cs-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: var(--cs-scroll-pct, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--cs-cyan), var(--cs-purple));
  transition: width .05s linear;
}

/* ── INNER ── */
.cs-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  gap: 20px;
}

/* ── LOGO ── */
.cs-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
  outline: none;
}
.cs-logo-icon { width: 36px; height: 36px; flex-shrink: 0; position: relative; }
.cs-logo-icon svg { width: 100%; height: 100%; }
.cs-logo-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,.25);
  animation: csPulseRing 3s ease-in-out infinite;
}
@keyframes csPulseRing {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: .1; transform: scale(1.18); }
}
.cs-logo-text { display: flex; flex-direction: column; line-height: 1; }
.cs-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.015em;
}
.cs-logo-name span { color: var(--cs-cyan); }
.cs-logo-tagline {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #475569;
  margin-top: 3px;
}

/* ── DESKTOP NAV ── */
.cs-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs-nav-item { position: relative; list-style: none; }
.cs-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  border-radius: 7px;
  font-size: .875rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: color .2s, background .2s;
  white-space: nowrap;
  position: relative;
}
.cs-nav-link:hover,
.cs-nav-link.active { color: #fff; }
.cs-nav-link:hover  { background: rgba(255,255,255,.05); }
.cs-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--cs-cyan);
  border-radius: 1px;
}
.cs-nav-chevron {
  width: 13px; height: 13px;
  transition: transform .22s;
  flex-shrink: 0;
  color: #64748b;
}
.cs-nav-item:hover .cs-nav-chevron { transform: rotate(180deg); }
.cs-nav-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0,212,255,.12);
  border: 1px solid rgba(0,212,255,.2);
  color: var(--cs-cyan);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 2px;
}

/* ── MEGA DROPDOWN ── */
.cs-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 720px;
  background: #0d1525;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 28px 80px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.04);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  pointer-events: none;
}
.cs-nav-item:hover .cs-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cs-dropdown-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-dropdown-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.05);
}
.cs-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.cs-dd-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .18s;
  border: 1px solid transparent;
}
.cs-dd-item:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.06);
}
.cs-dd-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background .18s;
}
.cs-dd-item:hover .cs-dd-icon { background: rgba(0,212,255,.1); }
.cs-dd-text h4 {
  font-size: .825rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 3px;
  line-height: 1.3;
}
.cs-dd-text p { font-size: .72rem; color: #475569; line-height: 1.5; }
.cs-dropdown-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs-dd-all {
  font-size: .78rem;
  font-weight: 600;
  color: var(--cs-cyan);
  text-decoration: none;
  transition: opacity .2s;
}
.cs-dd-all:hover { opacity: .75; }
.cs-dd-badge {
  font-size: .68rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── HEADER ACTIONS ── */
.cs-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cs-hdr-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.cs-hdr-phone:hover { color: var(--cs-cyan); }
.cs-hdr-phone svg { width: 14px; height: 14px; flex-shrink: 0; }
@media (max-width: 1200px) { .cs-hdr-phone { display: none; } }
.cs-hdr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .825rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.cs-hdr-btn-outline {
  color: #94a3b8;
  background: transparent;
  border: 1px solid rgba(255,255,255,.1);
}
.cs-hdr-btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
}
.cs-hdr-btn-primary {
  background: linear-gradient(135deg, var(--cs-cyan), #0099cc);
  color: #060912;
  box-shadow: 0 4px 18px rgba(0,212,255,.28);
}
.cs-hdr-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,212,255,.42);
  color: #060912;
}

/* ── HAMBURGER ── */
.cs-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
  padding: 0;
}
.cs-hamburger:hover { background: rgba(255,255,255,.1); }
.cs-hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: #94a3b8;
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s, background .2s;
  transform-origin: center;
}
.cs-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--cs-cyan); }
.cs-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.cs-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--cs-cyan); }

/* ── MOBILE MENU ── */
.cs-mobile-menu {
  position: fixed;
  left: 0; right: 0;
  background: rgba(8,12,22,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 20px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 99989;
  max-height: calc(100vh - var(--cs-nav-h));
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  display: none;
  transition: opacity .25s, transform .25s;
}
/* Account for admin bar in mobile menu top position */
.cs-mobile-menu { top: var(--cs-nav-h); }
.admin-bar .cs-mobile-menu { top: calc(var(--cs-nav-h) + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .cs-mobile-menu { top: calc(var(--cs-nav-h) + 46px); }
}
.cs-mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.cs-mm-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: .925rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.cs-mm-link:hover { background: rgba(255,255,255,.05); color: #fff; }
.cs-mm-link span { font-size: 1.1rem; width: 22px; text-align: center; }
.cs-mm-section-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #334155;
  padding: 14px 16px 6px;
}
.cs-mm-divider { height: 1px; background: rgba(255,255,255,.05); margin: 8px 0; }
.cs-mm-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cs-cyan), #0099cc);
  color: #060912 !important;
  text-decoration: none;
  margin-top: 8px;
  transition: opacity .2s;
}
.cs-mm-cta:hover { opacity: .9; }

/* ── THREAT TICKER ── */
.cs-threat-ticker {
  position: fixed;
  left: 0; right: 0;
  z-index: 99985;
  height: 26px;
  background: rgba(6,9,18,.92);
  border-bottom: 1px solid rgba(0,212,255,.08);
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: 'Inter', monospace;
}
.cs-threat-ticker { top: var(--cs-nav-h); }
.admin-bar .cs-threat-ticker { top: calc(var(--cs-nav-h) + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .cs-threat-ticker { top: calc(var(--cs-nav-h) + 46px); }
}
.cs-ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--cs-cyan);
  background: rgba(0,212,255,.06);
  border-right: 1px solid rgba(0,212,255,.1);
  height: 100%;
  text-transform: uppercase;
  white-space: nowrap;
}
.cs-ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: csBlink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes csBlink { 0%,100%{opacity:1} 50%{opacity:.2} }
.cs-ticker-track { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.cs-ticker-inner {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: csTicker 32s linear infinite;
  will-change: transform;
}
.cs-ticker-inner:hover { animation-play-state: paused; }
@keyframes csTicker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.cs-ticker-item {
  font-size: .64rem;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.cs-ticker-item::before { content: '▸'; color: rgba(0,212,255,.35); font-size: .5rem; }

/* ── RESPONSIVE HEADER ── */
@media (max-width: 1024px) {
  .cs-nav { display: none; }
  .cs-hdr-btn-outline { display: none; }
  .cs-hamburger { display: flex; }
  .cs-header-inner { padding: 0 20px; }
}
@media (max-width: 640px) {
  .cs-hdr-btn-primary { padding: 7px 12px; font-size: .78rem; }
  .cs-logo-tagline { display: none; }
}
@media (max-width: 480px) {
  .cs-header-inner { padding: 0 16px; height: 60px; }
  .cs-logo-name { font-size: .9rem; }
  .cs-hdr-btn-primary { display: none; }
  .cs-threat-ticker { font-size: .6rem; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.cs-footer-wrap {
  background: #060912;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}
.cs-footer-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,212,255,.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,212,255,.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cs-footer-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.2), rgba(123,47,255,.2), transparent);
  pointer-events: none;
}

/* Newsletter strip */
.cs-ft-nl-strip {
  background: linear-gradient(135deg, rgba(0,212,255,.05), rgba(123,47,255,.05));
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative; z-index: 1;
}
.cs-ft-nl-strip-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 34px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cs-ft-nl-strip-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.cs-ft-nl-strip-text p { font-size: .82rem; color: #475569; }
.cs-ft-nl-form { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-ft-nl-input {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  padding: 11px 16px;
  color: #e2e8f0;
  font-size: .85rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s, background .2s;
  min-width: 240px;
}
.cs-ft-nl-input:focus {
  border-color: rgba(0,212,255,.4);
  background: rgba(0,212,255,.03);
}
.cs-ft-nl-input::placeholder { color: #334155; }
.cs-ft-nl-btn {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #060912;
  border: none;
  border-radius: 9px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.cs-ft-nl-btn:hover { opacity: .9; transform: translateY(-1px); }
.cs-ft-nl-privacy {
  font-size: .68rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}
.cs-ft-nl-privacy svg { width: 10px; height: 10px; color: #475569; }

/* Footer grid */
.cs-footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 32px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  position: relative; z-index: 1;
}
.cs-ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}
.cs-ft-logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.cs-ft-logo-icon svg { width: 100%; height: 100%; }
.cs-ft-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.cs-ft-logo-name span { color: #00d4ff; }
.cs-ft-tagline {
  font-size: .845rem;
  color: rgba(255,255,255,.52);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 20px;
}
.cs-ft-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.cs-ft-addr-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
}
.cs-ft-addr-row svg { flex-shrink: 0; color: rgba(0,212,255,.6); }
.cs-ft-addr-row a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.cs-ft-addr-row a:hover { color: #00d4ff; }
.cs-ft-certs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.cs-ft-cert {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: .66rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.cs-ft-cert:hover { border-color: rgba(0,212,255,.25); color: rgba(255,255,255,.75); }
.cs-ft-cert-dot { width: 5px; height: 5px; border-radius: 50%; background: #00d4ff; flex-shrink: 0; }
.cs-ft-social { display: flex; gap: 8px; margin-bottom: 20px; }
.cs-ft-social a {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
  color: #64748b;
}
.cs-ft-social a:hover {
  background: rgba(0,212,255,.08);
  border-color: rgba(0,212,255,.25);
  color: #00d4ff;
  transform: translateY(-2px);
}
.cs-ft-social a svg { width: 15px; height: 15px; }
.cs-ft-trust { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cs-ft-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
  padding: 4px 8px;
}
.cs-ft-trust-item svg { width: 11px; height: 11px; color: #00d4ff; }
.cs-ft-col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 7px;
}
.cs-ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.cs-ft-col ul li a {
  font-size: .845rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .18s, padding-left .18s;
}
.cs-ft-col ul li a:hover { color: rgba(255,255,255,.9); padding-left: 5px; }
.cs-ft-col ul li a.highlight { color: #00d4ff; }
.cs-ft-col ul li a.highlight:hover { color: #fff; }
.cs-footer-divider {
  max-width: 1320px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative; z-index: 1;
}
.cs-footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  position: relative; z-index: 1;
}
.cs-ft-copy { font-size: .76rem; color: rgba(255,255,255,.35); line-height: 1.6; }
.cs-ft-copy a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.cs-ft-copy a:hover { color: rgba(255,255,255,.7); }
.cs-ft-security-bar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cs-ft-ssl {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 5px;
  padding: 5px 10px;
  white-space: nowrap;
}
.cs-ft-ssl svg { width: 11px; height: 11px; color: #00d4ff; }
.cs-ft-links { display: flex; align-items: center; gap: 18px; }
.cs-ft-links a { font-size: .76rem; color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.cs-ft-links a:hover { color: rgba(255,255,255,.7); }

/* ── FOOTER RESPONSIVE ── */
@media (max-width: 1100px) {
  .cs-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cs-ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .cs-footer-top { grid-template-columns: 1fr 1fr; padding: 48px 20px 36px; }
  .cs-ft-brand { grid-column: 1 / -1; text-align: center; }
  .cs-ft-tagline { max-width: 100%; }
  .cs-ft-address { align-items: center; }
  .cs-ft-certs { justify-content: center; }
  .cs-ft-social { justify-content: center; }
  .cs-ft-trust { justify-content: center; }
  .cs-ft-logo { justify-content: center; }
  .cs-footer-bottom { padding: 18px 20px; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .cs-ft-security-bar { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .cs-ft-links { justify-content: center; }
  .cs-ft-nl-strip-inner { flex-direction: column; align-items: center; text-align: center; }
  .cs-ft-nl-form { justify-content: center; }
  .cs-ft-nl-input { min-width: 0; flex: 1; }
  .cs-ft-nl-privacy { justify-content: center; }
  .cs-ft-copy { font-size: .72rem; text-align: center; }
}
@media (max-width: 480px) {
  .cs-footer-top { grid-template-columns: 1fr; padding: 40px 16px 28px; gap: 32px; }
  .cs-ft-col { text-align: center; }
  .cs-ft-col h4 { justify-content: center; }
  .cs-ft-col ul li a { justify-content: center; padding-left: 0; }
  .cs-ft-col ul li a:hover { padding-left: 0; }
  .cs-ft-tagline { max-width: 100%; }
  .cs-ft-certs { gap: 5px; justify-content: center; }
  .cs-ft-cert { font-size: .62rem; padding: 4px 8px; }
  .cs-ft-social a { width: 34px; height: 34px; }
  .cs-footer-bottom { padding: 16px; }
  .cs-ft-ssl { font-size: .64rem; }
  .cs-ft-copy a { display: inline-block; margin: 2px 0; }
}

/* ══════════════════════════════════════════════════════════
   GLOBAL MOBILE CENTERING — All Pages
   Comprehensive centering for all content on mobile devices
══════════════════════════════════════════════════════════ */

/* ── 768px: tablet/phablet centering ── */
@media (max-width: 768px) {
  /* Ensure newsletter strip always stacks and centers */
  .cs-ft-nl-strip-inner { flex-direction: column; align-items: center; text-align: center; }
  .cs-ft-nl-form { justify-content: center; flex-wrap: wrap; }
  .cs-ft-nl-privacy { justify-content: center; }
  /* Footer address rows */
  .cs-ft-addr-row { justify-content: center; }
}

/* ── 640px: mobile centering ── */
@media (max-width: 640px) {
  /* Mobile menu CTA */
  .cs-mm-link { justify-content: flex-start; }
  .cs-mm-cta { justify-content: center; }

  /* Threat ticker — hide on very small to prevent overflow */
  .cs-ticker-item { font-size: .6rem; gap: 4px; }
}

/* ── 480px: small mobile full centering ── */
@media (max-width: 480px) {
  /* Header adjustments */
  .cs-header-inner { padding: 0 14px; }
  .cs-logo-name { font-size: .88rem; }

  /* Footer address rows */
  .cs-ft-addr-row { justify-content: center; text-align: center; }
  .cs-ft-addr-row a { text-align: center; }
  .cs-ft-trust-item { justify-content: center; }

  /* Mobile menu links centered */
  .cs-mm-section-label { text-align: center; }

  /* Footer newsletter input full width */
  .cs-ft-nl-input { width: 100%; min-width: 0; }
  .cs-ft-nl-btn { width: 100%; justify-content: center; }
  .cs-ft-nl-form { flex-direction: column; width: 100%; max-width: 320px; }
  .cs-ft-nl-strip-text { text-align: center; }
  .cs-ft-nl-strip-text h3,.cs-ft-nl-strip-text p { text-align: center; }
}
